linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] some changes based on faux bus
@ 2025-05-08  9:11 Zongmin Zhou
  2025-05-08  9:11 ` [PATCH 1/2] driver core:add device's platform_data set for faux device Zongmin Zhou
  2025-05-08  9:11 ` [PATCH 2/2] usbip: convert to use faux_device Zongmin Zhou
  0 siblings, 2 replies; 33+ messages in thread
From: Zongmin Zhou @ 2025-05-08  9:11 UTC (permalink / raw)
  To: gregkh, rafael, dakr, markgross, arnd, eric.piel,
	valentina.manea.m, shuah, i
  Cc: linux-usb, linux-kernel, Zongmin Zhou

From: Zongmin Zhou <zhouzongmin@kylinos.cn>

This patch series include 2 changes:
1. modify faux to support setting some specific data to 
device's platform_data for drivers who convert to use faux bus.
2. convert to use faux_device for vhci-hcd.

Zongmin Zhou (2):
  driver core:add device's platform_data set for faux device
  usbip: convert to use faux_device

 drivers/base/faux.c                  |  9 ++-
 drivers/char/tlclk.c                 |  2 +-
 drivers/misc/lis3lv02d/lis3lv02d.c   |  2 +-
 drivers/usb/usbip/vhci.h             |  4 +-
 drivers/usb/usbip/vhci_hcd.c         | 82 +++++++++++-----------------
 drivers/usb/usbip/vhci_sysfs.c       | 68 +++++++++++------------
 include/linux/device/faux.h          |  3 +-
 tools/usb/usbip/libsrc/vhci_driver.h |  2 +-
 8 files changed, 80 insertions(+), 92 deletions(-)

-- 
2.25.1


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

* [PATCH 1/2] driver core:add device's platform_data set for faux device
  2025-05-08  9:11 [PATCH 0/2] some changes based on faux bus Zongmin Zhou
@ 2025-05-08  9:11 ` Zongmin Zhou
  2025-05-08  9:45   ` Greg KH
  2025-05-08  9:11 ` [PATCH 2/2] usbip: convert to use faux_device Zongmin Zhou
  1 sibling, 1 reply; 33+ messages in thread
From: Zongmin Zhou @ 2025-05-08  9:11 UTC (permalink / raw)
  To: gregkh, rafael, dakr, markgross, arnd, eric.piel,
	valentina.manea.m, shuah, i
  Cc: linux-usb, linux-kernel, Zongmin Zhou

From: Zongmin Zhou <zhouzongmin@kylinos.cn>

Most drivers based on platform bus may have specific data
for the device.And will get this specific data to use
after device added.
So keep the setting for device's platform_data is necessary
for converting platform device to faux device.

Signed-off-by: Zongmin Zhou <zhouzongmin@kylinos.cn>
---
 drivers/base/faux.c                | 9 +++++++--
 drivers/char/tlclk.c               | 2 +-
 drivers/misc/lis3lv02d/lis3lv02d.c | 2 +-
 include/linux/device/faux.h        | 3 ++-
 4 files changed, 11 insertions(+), 5 deletions(-)

diff --git a/drivers/base/faux.c b/drivers/base/faux.c
index 407c1d1aad50..42ec843235cb 100644
--- a/drivers/base/faux.c
+++ b/drivers/base/faux.c
@@ -94,6 +94,8 @@ static void faux_device_release(struct device *dev)
  *		into, can be NULL.
  * @groups:	The set of sysfs attributes that will be created for this
  *		device when it is registered with the driver core.
+ * @plat_data:	The specific data that want to associated with this new device,
+ * 		can be NULL.Just call 'dev_get_platdata()' to get the data.
  *
  * Create a new faux device and register it in the driver core properly.
  * If present, callbacks in @faux_ops will be called with the device that
@@ -113,7 +115,8 @@ static void faux_device_release(struct device *dev)
 struct faux_device *faux_device_create_with_groups(const char *name,
 						   struct device *parent,
 						   const struct faux_device_ops *faux_ops,
-						   const struct attribute_group **groups)
+						   const struct attribute_group **groups,
+						   void *plat_data)
 {
 	struct faux_object *faux_obj;
 	struct faux_device *faux_dev;
@@ -141,6 +144,8 @@ struct faux_device *faux_device_create_with_groups(const char *name,
 	dev->groups = groups;
 	dev_set_name(dev, "%s", name);
 
+	dev->platform_data = plat_data;
+
 	ret = device_add(dev);
 	if (ret) {
 		pr_err("%s: device_add for faux device '%s' failed with %d\n",
@@ -191,7 +196,7 @@ struct faux_device *faux_device_create(const char *name,
 				       struct device *parent,
 				       const struct faux_device_ops *faux_ops)
 {
-	return faux_device_create_with_groups(name, parent, faux_ops, NULL);
+	return faux_device_create_with_groups(name, parent, faux_ops, NULL, NULL);
 }
 EXPORT_SYMBOL_GPL(faux_device_create);
 
diff --git a/drivers/char/tlclk.c b/drivers/char/tlclk.c
index b381ea7e85d2..9334880dec67 100644
--- a/drivers/char/tlclk.c
+++ b/drivers/char/tlclk.c
@@ -813,7 +813,7 @@ static int __init tlclk_init(void)
 		goto out3;
 	}
 
-	tlclk_device = faux_device_create_with_groups("telco_clock", NULL, NULL, tlclk_groups);
+	tlclk_device = faux_device_create_with_groups("telco_clock", NULL, NULL, tlclk_groups, NULL);
 	if (!tlclk_device) {
 		ret = -ENODEV;
 		goto out4;
diff --git a/drivers/misc/lis3lv02d/lis3lv02d.c b/drivers/misc/lis3lv02d/lis3lv02d.c
index 6957091ab6de..e63cb353f425 100644
--- a/drivers/misc/lis3lv02d/lis3lv02d.c
+++ b/drivers/misc/lis3lv02d/lis3lv02d.c
@@ -864,7 +864,7 @@ ATTRIBUTE_GROUPS(lis3lv02d);
 
 static int lis3lv02d_add_fs(struct lis3lv02d *lis3)
 {
-	lis3->fdev = faux_device_create_with_groups(DRIVER_NAME, NULL, NULL, lis3lv02d_groups);
+	lis3->fdev = faux_device_create_with_groups(DRIVER_NAME, NULL, NULL, lis3lv02d_groups, NULL);
 	if (!lis3->fdev)
 		return -ENODEV;
 
diff --git a/include/linux/device/faux.h b/include/linux/device/faux.h
index 9f43c0e46aa4..36532288a09a 100644
--- a/include/linux/device/faux.h
+++ b/include/linux/device/faux.h
@@ -53,7 +53,8 @@ struct faux_device *faux_device_create(const char *name,
 struct faux_device *faux_device_create_with_groups(const char *name,
 						   struct device *parent,
 						   const struct faux_device_ops *faux_ops,
-						   const struct attribute_group **groups);
+						   const struct attribute_group **groups,
+						   void *plat_data);
 void faux_device_destroy(struct faux_device *faux_dev);
 
 static inline void *faux_device_get_drvdata(const struct faux_device *faux_dev)
-- 
2.25.1


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

* [PATCH 2/2] usbip: convert to use faux_device
  2025-05-08  9:11 [PATCH 0/2] some changes based on faux bus Zongmin Zhou
  2025-05-08  9:11 ` [PATCH 1/2] driver core:add device's platform_data set for faux device Zongmin Zhou
@ 2025-05-08  9:11 ` Zongmin Zhou
  2025-05-09 10:42   ` kernel test robot
  2025-06-04  6:54   ` [PATCH v2] " Zongmin Zhou
  1 sibling, 2 replies; 33+ messages in thread
From: Zongmin Zhou @ 2025-05-08  9:11 UTC (permalink / raw)
  To: gregkh, rafael, dakr, markgross, arnd, eric.piel,
	valentina.manea.m, shuah, i
  Cc: linux-usb, linux-kernel, Zongmin Zhou

From: Zongmin Zhou <zhouzongmin@kylinos.cn>

The vhci driver does not need to create a platform device,
it only did so because it was simple to do that in order to
get a place in sysfs to hang some device-specific attributes.
Now the faux device interface is more appropriate,change it
over to use the faux bus instead.

Signed-off-by: Zongmin Zhou <zhouzongmin@kylinos.cn>
---
 drivers/usb/usbip/vhci.h             |  4 +-
 drivers/usb/usbip/vhci_hcd.c         | 82 +++++++++++-----------------
 drivers/usb/usbip/vhci_sysfs.c       | 68 +++++++++++------------
 tools/usb/usbip/libsrc/vhci_driver.h |  2 +-
 4 files changed, 69 insertions(+), 87 deletions(-)

diff --git a/drivers/usb/usbip/vhci.h b/drivers/usb/usbip/vhci.h
index 5659dce1526e..a73070a3f450 100644
--- a/drivers/usb/usbip/vhci.h
+++ b/drivers/usb/usbip/vhci.h
@@ -93,7 +93,7 @@ enum hub_speed {
 struct vhci {
 	spinlock_t lock;
 
-	struct platform_device *pdev;
+	struct faux_device *fdev;
 
 	struct vhci_hcd *vhci_hcd_hs;
 	struct vhci_hcd *vhci_hcd_ss;
@@ -141,7 +141,7 @@ static inline __u32 port_to_rhport(__u32 port)
 	return port % VHCI_HC_PORTS;
 }
 
-static inline int port_to_pdev_nr(__u32 port)
+static inline int port_to_fdev_nr(__u32 port)
 {
 	return port / VHCI_PORTS;
 }
diff --git a/drivers/usb/usbip/vhci_hcd.c b/drivers/usb/usbip/vhci_hcd.c
index e70fba9f55d6..e0e9d7f2b3c8 100644
--- a/drivers/usb/usbip/vhci_hcd.c
+++ b/drivers/usb/usbip/vhci_hcd.c
@@ -9,7 +9,7 @@
 #include <linux/kernel.h>
 #include <linux/kthread.h>
 #include <linux/module.h>
-#include <linux/platform_device.h>
+#include <linux/device/faux.h>
 #include <linux/slab.h>
 #include <linux/string_choices.h>
 
@@ -1143,7 +1143,7 @@ static int hcd_name_to_id(const char *name)
 
 static int vhci_setup(struct usb_hcd *hcd)
 {
-	struct vhci *vhci = *((void **)dev_get_platdata(hcd->self.controller));
+	struct vhci *vhci = dev_get_platdata(hcd->self.controller);
 
 	if (usb_hcd_is_primary_hcd(hcd)) {
 		vhci->vhci_hcd_hs = hcd_to_vhci_hcd(hcd);
@@ -1257,7 +1257,7 @@ static int vhci_get_frame_number(struct usb_hcd *hcd)
 /* FIXME: suspend/resume */
 static int vhci_bus_suspend(struct usb_hcd *hcd)
 {
-	struct vhci *vhci = *((void **)dev_get_platdata(hcd->self.controller));
+	struct vhci *vhci = dev_get_platdata(hcd->self.controller);
 	unsigned long flags;
 
 	dev_dbg(&hcd->self.root_hub->dev, "%s\n", __func__);
@@ -1271,7 +1271,7 @@ static int vhci_bus_suspend(struct usb_hcd *hcd)
 
 static int vhci_bus_resume(struct usb_hcd *hcd)
 {
-	struct vhci *vhci = *((void **)dev_get_platdata(hcd->self.controller));
+	struct vhci *vhci = dev_get_platdata(hcd->self.controller);
 	int rc = 0;
 	unsigned long flags;
 
@@ -1336,20 +1336,19 @@ static const struct hc_driver vhci_hc_driver = {
 	.free_streams	= vhci_free_streams,
 };
 
-static int vhci_hcd_probe(struct platform_device *pdev)
+static int vhci_hcd_probe(struct faux_device *fdev)
 {
-	struct vhci             *vhci = *((void **)dev_get_platdata(&pdev->dev));
+	struct vhci             *vhci = dev_get_platdata(&fdev->dev);
 	struct usb_hcd		*hcd_hs;
 	struct usb_hcd		*hcd_ss;
 	int			ret;
 
-	usbip_dbg_vhci_hc("name %s id %d\n", pdev->name, pdev->id);
 
 	/*
 	 * Allocate and initialize hcd.
 	 * Our private data is also allocated automatically.
 	 */
-	hcd_hs = usb_create_hcd(&vhci_hc_driver, &pdev->dev, dev_name(&pdev->dev));
+	hcd_hs = usb_create_hcd(&vhci_hc_driver, &fdev->dev, dev_name(&fdev->dev));
 	if (!hcd_hs) {
 		pr_err("create primary hcd failed\n");
 		return -ENOMEM;
@@ -1366,8 +1365,8 @@ static int vhci_hcd_probe(struct platform_device *pdev)
 		goto put_usb2_hcd;
 	}
 
-	hcd_ss = usb_create_shared_hcd(&vhci_hc_driver, &pdev->dev,
-				       dev_name(&pdev->dev), hcd_hs);
+	hcd_ss = usb_create_shared_hcd(&vhci_hc_driver, &fdev->dev,
+				       dev_name(&fdev->dev), hcd_hs);
 	if (!hcd_ss) {
 		ret = -ENOMEM;
 		pr_err("create shared hcd failed\n");
@@ -1394,9 +1393,9 @@ static int vhci_hcd_probe(struct platform_device *pdev)
 	return ret;
 }
 
-static void vhci_hcd_remove(struct platform_device *pdev)
+static void vhci_hcd_remove(struct faux_device *fdev)
 {
-	struct vhci *vhci = *((void **)dev_get_platdata(&pdev->dev));
+	struct vhci *vhci = dev_get_platdata(&fdev->dev);
 
 	/*
 	 * Disconnects the root hub,
@@ -1416,7 +1415,7 @@ static void vhci_hcd_remove(struct platform_device *pdev)
 #ifdef CONFIG_PM
 
 /* what should happen for USB/IP under suspend/resume? */
-static int vhci_hcd_suspend(struct platform_device *pdev, pm_message_t state)
+static int vhci_hcd_suspend(struct faux_device *fdev, pm_message_t state)
 {
 	struct usb_hcd *hcd;
 	struct vhci *vhci;
@@ -1425,13 +1424,13 @@ static int vhci_hcd_suspend(struct platform_device *pdev, pm_message_t state)
 	int ret = 0;
 	unsigned long flags;
 
-	dev_dbg(&pdev->dev, "%s\n", __func__);
+	dev_dbg(&fdev->dev, "%s\n", __func__);
 
-	hcd = platform_get_drvdata(pdev);
+	hcd = faux_device_get_drvdata(fdev);
 	if (!hcd)
 		return 0;
 
-	vhci = *((void **)dev_get_platdata(hcd->self.controller));
+	vhci = dev_get_platdata(hcd->self.controller);
 
 	spin_lock_irqsave(&vhci->lock, flags);
 
@@ -1448,25 +1447,25 @@ static int vhci_hcd_suspend(struct platform_device *pdev, pm_message_t state)
 	spin_unlock_irqrestore(&vhci->lock, flags);
 
 	if (connected > 0) {
-		dev_info(&pdev->dev,
+		dev_info(&fdev->dev,
 			 "We have %d active connection%s. Do not suspend.\n",
 			 connected, str_plural(connected));
 		ret =  -EBUSY;
 	} else {
-		dev_info(&pdev->dev, "suspend vhci_hcd");
+		dev_info(&fdev->dev, "suspend vhci_hcd");
 		clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
 	}
 
 	return ret;
 }
 
-static int vhci_hcd_resume(struct platform_device *pdev)
+static int vhci_hcd_resume(struct faux_device *fdev)
 {
 	struct usb_hcd *hcd;
 
-	dev_dbg(&pdev->dev, "%s\n", __func__);
+	dev_dbg(&fdev->dev, "%s\n", __func__);
 
-	hcd = platform_get_drvdata(pdev);
+	hcd = faux_device_get_drvdata(fdev);
 	if (!hcd)
 		return 0;
 	set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
@@ -1482,25 +1481,19 @@ static int vhci_hcd_resume(struct platform_device *pdev)
 
 #endif
 
-static struct platform_driver vhci_driver = {
+static struct faux_device_ops vhci_driver = {
 	.probe	= vhci_hcd_probe,
 	.remove = vhci_hcd_remove,
-	.suspend = vhci_hcd_suspend,
-	.resume	= vhci_hcd_resume,
-	.driver	= {
-		.name = driver_name,
-	},
 };
 
-static void del_platform_devices(void)
+static void del_faux_devices(void)
 {
 	int i;
 
 	for (i = 0; i < vhci_num_controllers; i++) {
-		platform_device_unregister(vhcis[i].pdev);
-		vhcis[i].pdev = NULL;
+		faux_device_destroy(vhcis[i].fdev);
+		vhcis[i].fdev = NULL;
 	}
-	sysfs_remove_link(&platform_bus.kobj, driver_name);
 }
 
 static int __init vhci_hcd_init(void)
@@ -1517,24 +1510,16 @@ static int __init vhci_hcd_init(void)
 	if (vhcis == NULL)
 		return -ENOMEM;
 
-	ret = platform_driver_register(&vhci_driver);
-	if (ret)
-		goto err_driver_register;
-
 	for (i = 0; i < vhci_num_controllers; i++) {
 		void *vhci = &vhcis[i];
-		struct platform_device_info pdevinfo = {
-			.name = driver_name,
-			.id = i,
-			.data = &vhci,
-			.size_data = sizeof(void *),
-		};
-
-		vhcis[i].pdev = platform_device_register_full(&pdevinfo);
-		ret = PTR_ERR_OR_ZERO(vhcis[i].pdev);
-		if (ret < 0) {
+		char vhci_name[16];
+
+		snprintf(vhci_name, 16, "%s.%d", driver_name, i);
+
+		vhcis[i].fdev = faux_device_create_with_groups(vhci_name, NULL, &vhci_driver, NULL, vhci);
+		if (!vhcis[i].fdev) {
 			while (i--)
-				platform_device_unregister(vhcis[i].pdev);
+				faux_device_destroy(vhcis[i].fdev);
 			goto err_add_hcd;
 		}
 	}
@@ -1542,16 +1527,13 @@ static int __init vhci_hcd_init(void)
 	return 0;
 
 err_add_hcd:
-	platform_driver_unregister(&vhci_driver);
-err_driver_register:
 	kfree(vhcis);
 	return ret;
 }
 
 static void __exit vhci_hcd_exit(void)
 {
-	del_platform_devices();
-	platform_driver_unregister(&vhci_driver);
+	del_faux_devices();
 	kfree(vhcis);
 }
 
diff --git a/drivers/usb/usbip/vhci_sysfs.c b/drivers/usb/usbip/vhci_sysfs.c
index d5865460e82d..d1e6b239399f 100644
--- a/drivers/usb/usbip/vhci_sysfs.c
+++ b/drivers/usb/usbip/vhci_sysfs.c
@@ -7,7 +7,7 @@
 #include <linux/kthread.h>
 #include <linux/file.h>
 #include <linux/net.h>
-#include <linux/platform_device.h>
+#include <linux/device/faux.h>
 #include <linux/slab.h>
 
 /* Hardening for Spectre-v1 */
@@ -28,7 +28,7 @@
  *
  * Output includes socket fd instead of socket pointer address to avoid
  * leaking kernel memory address in:
- *	/sys/devices/platform/vhci_hcd.0/status and in debug output.
+ *	/sys/devices/faux/vhci_hcd.0/status and in debug output.
  * The socket pointer address is not used at the moment and it was made
  * visible as a convenient way to find IP address from socket pointer
  * address by looking up /proc/net/{tcp,tcp6}. As this opens a security
@@ -60,9 +60,9 @@ static void port_show_vhci(char **out, int hub, int port, struct vhci_device *vd
 }
 
 /* Sysfs entry to show port status */
-static ssize_t status_show_vhci(int pdev_nr, char *out)
+static ssize_t status_show_vhci(int fdev_nr, char *out)
 {
-	struct platform_device *pdev = vhcis[pdev_nr].pdev;
+	struct faux_device *fdev = vhcis[fdev_nr].fdev;
 	struct vhci *vhci;
 	struct usb_hcd *hcd;
 	struct vhci_hcd *vhci_hcd;
@@ -70,12 +70,12 @@ static ssize_t status_show_vhci(int pdev_nr, char *out)
 	int i;
 	unsigned long flags;
 
-	if (!pdev || !out) {
+	if (!fdev || !out) {
 		usbip_dbg_vhci_sysfs("show status error\n");
 		return 0;
 	}
 
-	hcd = platform_get_drvdata(pdev);
+	hcd = faux_device_get_drvdata(fdev);
 	vhci_hcd = hcd_to_vhci_hcd(hcd);
 	vhci = vhci_hcd->vhci;
 
@@ -86,7 +86,7 @@ static ssize_t status_show_vhci(int pdev_nr, char *out)
 
 		spin_lock(&vdev->ud.lock);
 		port_show_vhci(&out, HUB_SPEED_HIGH,
-			       pdev_nr * VHCI_PORTS + i, vdev);
+			       fdev_nr * VHCI_PORTS + i, vdev);
 		spin_unlock(&vdev->ud.lock);
 	}
 
@@ -95,7 +95,7 @@ static ssize_t status_show_vhci(int pdev_nr, char *out)
 
 		spin_lock(&vdev->ud.lock);
 		port_show_vhci(&out, HUB_SPEED_SUPER,
-			       pdev_nr * VHCI_PORTS + VHCI_HC_PORTS + i, vdev);
+			       fdev_nr * VHCI_PORTS + VHCI_HC_PORTS + i, vdev);
 		spin_unlock(&vdev->ud.lock);
 	}
 
@@ -104,14 +104,14 @@ static ssize_t status_show_vhci(int pdev_nr, char *out)
 	return out - s;
 }
 
-static ssize_t status_show_not_ready(int pdev_nr, char *out)
+static ssize_t status_show_not_ready(int fdev_nr, char *out)
 {
 	char *s = out;
 	int i = 0;
 
 	for (i = 0; i < VHCI_HC_PORTS; i++) {
 		out += sprintf(out, "hs  %04u %03u ",
-				    (pdev_nr * VHCI_PORTS) + i,
+				    (fdev_nr * VHCI_PORTS) + i,
 				    VDEV_ST_NOTASSIGNED);
 		out += sprintf(out, "000 00000000 0000000000000000 0-0");
 		out += sprintf(out, "\n");
@@ -119,7 +119,7 @@ static ssize_t status_show_not_ready(int pdev_nr, char *out)
 
 	for (i = 0; i < VHCI_HC_PORTS; i++) {
 		out += sprintf(out, "ss  %04u %03u ",
-				    (pdev_nr * VHCI_PORTS) + VHCI_HC_PORTS + i,
+				    (fdev_nr * VHCI_PORTS) + VHCI_HC_PORTS + i,
 				    VDEV_ST_NOTASSIGNED);
 		out += sprintf(out, "000 00000000 0000000000000000 0-0");
 		out += sprintf(out, "\n");
@@ -148,16 +148,16 @@ static ssize_t status_show(struct device *dev,
 			   struct device_attribute *attr, char *out)
 {
 	char *s = out;
-	int pdev_nr;
+	int fdev_nr;
 
 	out += sprintf(out,
 		       "hub port sta spd dev      sockfd local_busid\n");
 
-	pdev_nr = status_name_to_id(attr->attr.name);
-	if (pdev_nr < 0)
-		out += status_show_not_ready(pdev_nr, out);
+	fdev_nr = status_name_to_id(attr->attr.name);
+	if (fdev_nr < 0)
+		out += status_show_not_ready(fdev_nr, out);
 	else
-		out += status_show_vhci(pdev_nr, out);
+		out += status_show_vhci(fdev_nr, out);
 
 	return out - s;
 }
@@ -213,13 +213,13 @@ static int vhci_port_disconnect(struct vhci_hcd *vhci_hcd, __u32 rhport)
 	return 0;
 }
 
-static int valid_port(__u32 *pdev_nr, __u32 *rhport)
+static int valid_port(__u32 *fdev_nr, __u32 *rhport)
 {
-	if (*pdev_nr >= vhci_num_controllers) {
-		pr_err("pdev %u\n", *pdev_nr);
+	if (*fdev_nr >= vhci_num_controllers) {
+		pr_err("fdev %u\n", *fdev_nr);
 		return 0;
 	}
-	*pdev_nr = array_index_nospec(*pdev_nr, vhci_num_controllers);
+	*fdev_nr = array_index_nospec(*fdev_nr, vhci_num_controllers);
 
 	if (*rhport >= VHCI_HC_PORTS) {
 		pr_err("rhport %u\n", *rhport);
@@ -233,7 +233,7 @@ static int valid_port(__u32 *pdev_nr, __u32 *rhport)
 static ssize_t detach_store(struct device *dev, struct device_attribute *attr,
 			    const char *buf, size_t count)
 {
-	__u32 port = 0, pdev_nr = 0, rhport = 0;
+	__u32 port = 0, fdev_nr = 0, rhport = 0;
 	struct usb_hcd *hcd;
 	struct vhci_hcd *vhci_hcd;
 	int ret;
@@ -241,13 +241,13 @@ static ssize_t detach_store(struct device *dev, struct device_attribute *attr,
 	if (kstrtoint(buf, 10, &port) < 0)
 		return -EINVAL;
 
-	pdev_nr = port_to_pdev_nr(port);
+	fdev_nr = port_to_fdev_nr(port);
 	rhport = port_to_rhport(port);
 
-	if (!valid_port(&pdev_nr, &rhport))
+	if (!valid_port(&fdev_nr, &rhport))
 		return -EINVAL;
 
-	hcd = platform_get_drvdata(vhcis[pdev_nr].pdev);
+	hcd = faux_device_get_drvdata(vhcis[fdev_nr].fdev);
 	if (hcd == NULL) {
 		dev_err(dev, "port is not ready %u\n", port);
 		return -EAGAIN;
@@ -270,10 +270,10 @@ static ssize_t detach_store(struct device *dev, struct device_attribute *attr,
 }
 static DEVICE_ATTR_WO(detach);
 
-static int valid_args(__u32 *pdev_nr, __u32 *rhport,
+static int valid_args(__u32 *fdev_nr, __u32 *rhport,
 		      enum usb_device_speed speed)
 {
-	if (!valid_port(pdev_nr, rhport)) {
+	if (!valid_port(fdev_nr, rhport)) {
 		return 0;
 	}
 
@@ -311,7 +311,7 @@ static ssize_t attach_store(struct device *dev, struct device_attribute *attr,
 {
 	struct socket *socket;
 	int sockfd = 0;
-	__u32 port = 0, pdev_nr = 0, rhport = 0, devid = 0, speed = 0;
+	__u32 port = 0, fdev_nr = 0, rhport = 0, devid = 0, speed = 0;
 	struct usb_hcd *hcd;
 	struct vhci_hcd *vhci_hcd;
 	struct vhci_device *vdev;
@@ -329,19 +329,19 @@ static ssize_t attach_store(struct device *dev, struct device_attribute *attr,
 	 */
 	if (sscanf(buf, "%u %u %u %u", &port, &sockfd, &devid, &speed) != 4)
 		return -EINVAL;
-	pdev_nr = port_to_pdev_nr(port);
+	fdev_nr = port_to_fdev_nr(port);
 	rhport = port_to_rhport(port);
 
-	usbip_dbg_vhci_sysfs("port(%u) pdev(%d) rhport(%u)\n",
-			     port, pdev_nr, rhport);
+	usbip_dbg_vhci_sysfs("port(%u) fdev(%d) rhport(%u)\n",
+			     port, fdev_nr, rhport);
 	usbip_dbg_vhci_sysfs("sockfd(%u) devid(%u) speed(%u)\n",
 			     sockfd, devid, speed);
 
 	/* check received parameters */
-	if (!valid_args(&pdev_nr, &rhport, speed))
+	if (!valid_args(&fdev_nr, &rhport, speed))
 		return -EINVAL;
 
-	hcd = platform_get_drvdata(vhcis[pdev_nr].pdev);
+	hcd = faux_device_get_drvdata(vhcis[fdev_nr].fdev);
 	if (hcd == NULL) {
 		dev_err(dev, "port %d is not ready\n", port);
 		return -EAGAIN;
@@ -413,8 +413,8 @@ static ssize_t attach_store(struct device *dev, struct device_attribute *attr,
 		goto unlock_mutex;
 	}
 
-	dev_info(dev, "pdev(%u) rhport(%u) sockfd(%d)\n",
-		 pdev_nr, rhport, sockfd);
+	dev_info(dev, "fdev(%u) rhport(%u) sockfd(%d)\n",
+		 fdev_nr, rhport, sockfd);
 	dev_info(dev, "devid(%u) speed(%u) speed_str(%s)\n",
 		 devid, speed, usb_speed_string(speed));
 
diff --git a/tools/usb/usbip/libsrc/vhci_driver.h b/tools/usb/usbip/libsrc/vhci_driver.h
index 6c9aca216705..20918e74de59 100644
--- a/tools/usb/usbip/libsrc/vhci_driver.h
+++ b/tools/usb/usbip/libsrc/vhci_driver.h
@@ -11,7 +11,7 @@
 
 #include "usbip_common.h"
 
-#define USBIP_VHCI_BUS_TYPE "platform"
+#define USBIP_VHCI_BUS_TYPE "faux"
 #define USBIP_VHCI_DEVICE_NAME "vhci_hcd.0"
 
 enum hub_speed {
-- 
2.25.1


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

* Re: [PATCH 1/2] driver core:add device's platform_data set for faux device
  2025-05-08  9:11 ` [PATCH 1/2] driver core:add device's platform_data set for faux device Zongmin Zhou
@ 2025-05-08  9:45   ` Greg KH
  2025-05-09  2:41     ` Zongmin Zhou
  0 siblings, 1 reply; 33+ messages in thread
From: Greg KH @ 2025-05-08  9:45 UTC (permalink / raw)
  To: Zongmin Zhou
  Cc: rafael, dakr, markgross, arnd, eric.piel, valentina.manea.m,
	shuah, i, linux-usb, linux-kernel, Zongmin Zhou

On Thu, May 08, 2025 at 05:11:47PM +0800, Zongmin Zhou wrote:
> From: Zongmin Zhou <zhouzongmin@kylinos.cn>
> 
> Most drivers based on platform bus may have specific data
> for the device.And will get this specific data to use
> after device added.
> So keep the setting for device's platform_data is necessary
> for converting platform device to faux device.

I do not understand, why not just use the platform_data field directly
in the faux device structure?  Why change all callers to now have to
keep track of an additional pointer in these create functions?  That
just adds complexity for everyone when almost no one will need it.

thanks,

greg k-h

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

* Re: [PATCH 1/2] driver core:add device's platform_data set for faux device
  2025-05-08  9:45   ` Greg KH
@ 2025-05-09  2:41     ` Zongmin Zhou
  2025-05-21 10:51       ` Greg KH
  0 siblings, 1 reply; 33+ messages in thread
From: Zongmin Zhou @ 2025-05-09  2:41 UTC (permalink / raw)
  To: Greg KH
  Cc: rafael, dakr, markgross, arnd, eric.piel, valentina.manea.m,
	shuah, i, linux-usb, linux-kernel, Zongmin Zhou


On 2025/5/8 17:45, Greg KH wrote:
> On Thu, May 08, 2025 at 05:11:47PM +0800, Zongmin Zhou wrote:
>> From: Zongmin Zhou <zhouzongmin@kylinos.cn>
>>
>> Most drivers based on platform bus may have specific data
>> for the device.And will get this specific data to use
>> after device added.
>> So keep the setting for device's platform_data is necessary
>> for converting platform device to faux device.
> I do not understand, why not just use the platform_data field directly
> in the faux device structure?  Why change all callers to now have to
> keep track of an additional pointer in these create functions?  That
> just adds complexity for everyone when almost no one will need it.
In fact, I have tried other approaches.
However, I found that it must be set after creating faux_dev and before 
calling the device_add() function.

Because the execution of the driver init and the device probe function 
is asynchronous,
and the actual test shows that the probe function is executed
before faux_device_create_with_groups () returns faux_device for the caller.
But the probe and related functions may need to get plat_data.If 
plat_data is set after
faux_device_create_with_groups() is completed and fdev is returned, the 
probe function will get NULL.

Take vhci-hcd as an example:
vhci_hcd_init() calls faux_device_create_with_groups(),
Once device_add() is called, vhci_hcd_probe() will be executed immediately.
Therefore, the probe function will attempt to obtain plat_data
before vhci_hcd_init() receives the return value of faux_device.
It's too late to set plat_data after get the return value of faux_device.

If there is anything not clearly or other good ways to handle this, 
please let me know.

Thanks very much.

>
> thanks,
>
> greg k-h


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

* Re: [PATCH 2/2] usbip: convert to use faux_device
  2025-05-08  9:11 ` [PATCH 2/2] usbip: convert to use faux_device Zongmin Zhou
@ 2025-05-09 10:42   ` kernel test robot
  2025-06-04  6:54   ` [PATCH v2] " Zongmin Zhou
  1 sibling, 0 replies; 33+ messages in thread
From: kernel test robot @ 2025-05-09 10:42 UTC (permalink / raw)
  To: Zongmin Zhou, gregkh, rafael, dakr, markgross, arnd, eric.piel,
	valentina.manea.m, shuah, i
  Cc: llvm, oe-kbuild-all, linux-usb, linux-kernel, Zongmin Zhou

Hi Zongmin,

kernel test robot noticed the following build warnings:

[auto build test WARNING on usb/usb-testing]
[also build test WARNING on usb/usb-next usb/usb-linus driver-core/driver-core-testing driver-core/driver-core-next driver-core/driver-core-linus char-misc/char-misc-testing char-misc/char-misc-next char-misc/char-misc-linus linus/master v6.15-rc5 next-20250508]
[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#_base_tree_information]

url:    https://github.com/intel-lab-lkp/linux/commits/Zongmin-Zhou/driver-core-add-device-s-platform_data-set-for-faux-device/20250508-171441
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git usb-testing
patch link:    https://lore.kernel.org/r/2a327b520760271471717fff9b222cdc34967489.1746662386.git.zhouzongmin%40kylinos.cn
patch subject: [PATCH 2/2] usbip: convert to use faux_device
config: x86_64-randconfig-002-20250509 (https://download.01.org/0day-ci/archive/20250509/202505091836.sxOEZiIt-lkp@intel.com/config)
compiler: clang version 20.1.2 (https://github.com/llvm/llvm-project 58df0ef89dd64126512e4ee27b4ac3fd8ddf6247)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250509/202505091836.sxOEZiIt-lkp@intel.com/reproduce)

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202505091836.sxOEZiIt-lkp@intel.com/

All warnings (new ones prefixed by >>):

>> drivers/usb/usbip/vhci_hcd.c:1531:9: warning: variable 'ret' is uninitialized when used here [-Wuninitialized]
    1531 |         return ret;
         |                ^~~
   drivers/usb/usbip/vhci_hcd.c:1501:12: note: initialize the variable 'ret' to silence this warning
    1501 |         int i, ret;
         |                   ^
         |                    = 0
   drivers/usb/usbip/vhci_hcd.c:1418:12: warning: unused function 'vhci_hcd_suspend' [-Wunused-function]
    1418 | static int vhci_hcd_suspend(struct faux_device *fdev, pm_message_t state)
         |            ^~~~~~~~~~~~~~~~
   drivers/usb/usbip/vhci_hcd.c:1462:12: warning: unused function 'vhci_hcd_resume' [-Wunused-function]
    1462 | static int vhci_hcd_resume(struct faux_device *fdev)
         |            ^~~~~~~~~~~~~~~
   3 warnings generated.


vim +/ret +1531 drivers/usb/usbip/vhci_hcd.c

04679b3489e048 drivers/staging/usbip/vhci_hcd.c Takahiro Hirofuchi 2008-07-09  1498  
0392bbb6f6af31 drivers/staging/usbip/vhci_hcd.c matt mooney        2011-05-19  1499  static int __init vhci_hcd_init(void)
04679b3489e048 drivers/staging/usbip/vhci_hcd.c Takahiro Hirofuchi 2008-07-09  1500  {
0775a9cbc694e8 drivers/usb/usbip/vhci_hcd.c     Nobuo Iwata        2016-06-13  1501  	int i, ret;
04679b3489e048 drivers/staging/usbip/vhci_hcd.c Takahiro Hirofuchi 2008-07-09  1502  
04679b3489e048 drivers/staging/usbip/vhci_hcd.c Takahiro Hirofuchi 2008-07-09  1503  	if (usb_disabled())
04679b3489e048 drivers/staging/usbip/vhci_hcd.c Takahiro Hirofuchi 2008-07-09  1504  		return -ENODEV;
04679b3489e048 drivers/staging/usbip/vhci_hcd.c Takahiro Hirofuchi 2008-07-09  1505  
0775a9cbc694e8 drivers/usb/usbip/vhci_hcd.c     Nobuo Iwata        2016-06-13  1506  	if (vhci_num_controllers < 1)
0775a9cbc694e8 drivers/usb/usbip/vhci_hcd.c     Nobuo Iwata        2016-06-13  1507  		vhci_num_controllers = 1;
0775a9cbc694e8 drivers/usb/usbip/vhci_hcd.c     Nobuo Iwata        2016-06-13  1508  
89a73d281fa4f5 drivers/usb/usbip/vhci_hcd.c     Yuyang Du          2017-06-08  1509  	vhcis = kcalloc(vhci_num_controllers, sizeof(struct vhci), GFP_KERNEL);
89a73d281fa4f5 drivers/usb/usbip/vhci_hcd.c     Yuyang Du          2017-06-08  1510  	if (vhcis == NULL)
0775a9cbc694e8 drivers/usb/usbip/vhci_hcd.c     Nobuo Iwata        2016-06-13  1511  		return -ENOMEM;
0775a9cbc694e8 drivers/usb/usbip/vhci_hcd.c     Nobuo Iwata        2016-06-13  1512  
0775a9cbc694e8 drivers/usb/usbip/vhci_hcd.c     Nobuo Iwata        2016-06-13  1513  	for (i = 0; i < vhci_num_controllers; i++) {
17d6b82d2d6d46 drivers/usb/usbip/vhci_hcd.c     Hongren Zheng      2023-10-14  1514  		void *vhci = &vhcis[i];
1bcae4465d2818 drivers/usb/usbip/vhci_hcd.c     Zongmin Zhou       2025-05-08  1515  		char vhci_name[16];
1bcae4465d2818 drivers/usb/usbip/vhci_hcd.c     Zongmin Zhou       2025-05-08  1516  
1bcae4465d2818 drivers/usb/usbip/vhci_hcd.c     Zongmin Zhou       2025-05-08  1517  		snprintf(vhci_name, 16, "%s.%d", driver_name, i);
b8aaf639b403f0 drivers/usb/usbip/vhci_hcd.c     Andy Shevchenko    2023-10-06  1518  
1bcae4465d2818 drivers/usb/usbip/vhci_hcd.c     Zongmin Zhou       2025-05-08  1519  		vhcis[i].fdev = faux_device_create_with_groups(vhci_name, NULL, &vhci_driver, NULL, vhci);
1bcae4465d2818 drivers/usb/usbip/vhci_hcd.c     Zongmin Zhou       2025-05-08  1520  		if (!vhcis[i].fdev) {
b8aaf639b403f0 drivers/usb/usbip/vhci_hcd.c     Andy Shevchenko    2023-10-06  1521  			while (i--)
1bcae4465d2818 drivers/usb/usbip/vhci_hcd.c     Zongmin Zhou       2025-05-08  1522  				faux_device_destroy(vhcis[i].fdev);
dff3565b8e1c0b drivers/usb/usbip/vhci_hcd.c     Yuyang Du          2017-06-08  1523  			goto err_add_hcd;
dff3565b8e1c0b drivers/usb/usbip/vhci_hcd.c     Yuyang Du          2017-06-08  1524  		}
0775a9cbc694e8 drivers/usb/usbip/vhci_hcd.c     Nobuo Iwata        2016-06-13  1525  	}
04679b3489e048 drivers/staging/usbip/vhci_hcd.c Takahiro Hirofuchi 2008-07-09  1526  
b8aaf639b403f0 drivers/usb/usbip/vhci_hcd.c     Andy Shevchenko    2023-10-06  1527  	return 0;
04679b3489e048 drivers/staging/usbip/vhci_hcd.c Takahiro Hirofuchi 2008-07-09  1528  
dff3565b8e1c0b drivers/usb/usbip/vhci_hcd.c     Yuyang Du          2017-06-08  1529  err_add_hcd:
89a73d281fa4f5 drivers/usb/usbip/vhci_hcd.c     Yuyang Du          2017-06-08  1530  	kfree(vhcis);
04679b3489e048 drivers/staging/usbip/vhci_hcd.c Takahiro Hirofuchi 2008-07-09 @1531  	return ret;
04679b3489e048 drivers/staging/usbip/vhci_hcd.c Takahiro Hirofuchi 2008-07-09  1532  }
04679b3489e048 drivers/staging/usbip/vhci_hcd.c Takahiro Hirofuchi 2008-07-09  1533  

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

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

* Re: [PATCH 1/2] driver core:add device's platform_data set for faux device
  2025-05-09  2:41     ` Zongmin Zhou
@ 2025-05-21 10:51       ` Greg KH
  2025-05-28  9:21         ` Zongmin Zhou
  0 siblings, 1 reply; 33+ messages in thread
From: Greg KH @ 2025-05-21 10:51 UTC (permalink / raw)
  To: Zongmin Zhou
  Cc: rafael, dakr, markgross, arnd, eric.piel, valentina.manea.m,
	shuah, i, linux-usb, linux-kernel, Zongmin Zhou

On Fri, May 09, 2025 at 10:41:11AM +0800, Zongmin Zhou wrote:
> 
> On 2025/5/8 17:45, Greg KH wrote:
> > On Thu, May 08, 2025 at 05:11:47PM +0800, Zongmin Zhou wrote:
> > > From: Zongmin Zhou <zhouzongmin@kylinos.cn>
> > > 
> > > Most drivers based on platform bus may have specific data
> > > for the device.And will get this specific data to use
> > > after device added.
> > > So keep the setting for device's platform_data is necessary
> > > for converting platform device to faux device.
> > I do not understand, why not just use the platform_data field directly
> > in the faux device structure?  Why change all callers to now have to
> > keep track of an additional pointer in these create functions?  That
> > just adds complexity for everyone when almost no one will need it.
> In fact, I have tried other approaches.
> However, I found that it must be set after creating faux_dev and before
> calling the device_add() function.
> 
> Because the execution of the driver init and the device probe function is
> asynchronous,
> and the actual test shows that the probe function is executed
> before faux_device_create_with_groups () returns faux_device for the caller.
> But the probe and related functions may need to get plat_data.If plat_data
> is set after
> faux_device_create_with_groups() is completed and fdev is returned, the
> probe function will get NULL.
> 
> Take vhci-hcd as an example:
> vhci_hcd_init() calls faux_device_create_with_groups(),
> Once device_add() is called, vhci_hcd_probe() will be executed immediately.
> Therefore, the probe function will attempt to obtain plat_data
> before vhci_hcd_init() receives the return value of faux_device.
> It's too late to set plat_data after get the return value of faux_device.
> 
> If there is anything not clearly or other good ways to handle this, please
> let me know.

I think you need to unwind the "probe" logic here as it's not needed at
all.  After you create the faux device, then continue on with the logic
that is currently in the probe callback.  No need to split this out at
all, it's the same device being used/handled here, just unwind the logic
a bit and you should be ok.

hope this helps,

greg k-h

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

* Re: [PATCH 1/2] driver core:add device's platform_data set for faux device
  2025-05-21 10:51       ` Greg KH
@ 2025-05-28  9:21         ` Zongmin Zhou
  0 siblings, 0 replies; 33+ messages in thread
From: Zongmin Zhou @ 2025-05-28  9:21 UTC (permalink / raw)
  To: Greg KH
  Cc: rafael, dakr, markgross, arnd, eric.piel, valentina.manea.m,
	shuah, i, linux-usb, linux-kernel, Zongmin Zhou


On 2025/5/21 18:51, Greg KH wrote:
> On Fri, May 09, 2025 at 10:41:11AM +0800, Zongmin Zhou wrote:
>> On 2025/5/8 17:45, Greg KH wrote:
>>> On Thu, May 08, 2025 at 05:11:47PM +0800, Zongmin Zhou wrote:
>>>> From: Zongmin Zhou <zhouzongmin@kylinos.cn>
>>>>
>>>> Most drivers based on platform bus may have specific data
>>>> for the device.And will get this specific data to use
>>>> after device added.
>>>> So keep the setting for device's platform_data is necessary
>>>> for converting platform device to faux device.
>>> I do not understand, why not just use the platform_data field directly
>>> in the faux device structure?  Why change all callers to now have to
>>> keep track of an additional pointer in these create functions?  That
>>> just adds complexity for everyone when almost no one will need it.
>> In fact, I have tried other approaches.
>> However, I found that it must be set after creating faux_dev and before
>> calling the device_add() function.
>>
>> Because the execution of the driver init and the device probe function is
>> asynchronous,
>> and the actual test shows that the probe function is executed
>> before faux_device_create_with_groups () returns faux_device for the caller.
>> But the probe and related functions may need to get plat_data.If plat_data
>> is set after
>> faux_device_create_with_groups() is completed and fdev is returned, the
>> probe function will get NULL.
>>
>> Take vhci-hcd as an example:
>> vhci_hcd_init() calls faux_device_create_with_groups(),
>> Once device_add() is called, vhci_hcd_probe() will be executed immediately.
>> Therefore, the probe function will attempt to obtain plat_data
>> before vhci_hcd_init() receives the return value of faux_device.
>> It's too late to set plat_data after get the return value of faux_device.
>>
>> If there is anything not clearly or other good ways to handle this, please
>> let me know.
> I think you need to unwind the "probe" logic here as it's not needed at
> all.  After you create the faux device, then continue on with the logic
> that is currently in the probe callback.  No need to split this out at
> all, it's the same device being used/handled here, just unwind the logic
> a bit and you should be ok.
I'm very sorry for the late reply.

Yes,actually vhci_hcd_init() can call probe directly without
by the faux_probe call it automatically.
I can make this change for vhci-hcd driver.

Thanks for your suggestion.
>
> hope this helps,
>
> greg k-h


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

* [PATCH v2] usbip: convert to use faux_device
  2025-05-08  9:11 ` [PATCH 2/2] usbip: convert to use faux_device Zongmin Zhou
  2025-05-09 10:42   ` kernel test robot
@ 2025-06-04  6:54   ` Zongmin Zhou
  2025-06-10 15:15     ` Shuah Khan
  2025-06-19 11:01     ` Greg KH
  1 sibling, 2 replies; 33+ messages in thread
From: Zongmin Zhou @ 2025-06-04  6:54 UTC (permalink / raw)
  To: gregkh, shuah; +Cc: valentina.manea.m, i, linux-kernel, linux-usb, zhouzongmin

From: Zongmin Zhou <zhouzongmin@kylinos.cn>

The vhci driver does not need to create a platform device,
it only did so because it was simple to do that in order to
get a place in sysfs to hang some device-specific attributes.
Now the faux device interface is more appropriate,change it
over to use the faux bus instead.

Signed-off-by: Zongmin Zhou <zhouzongmin@kylinos.cn>
---
Changes in v2:
- don't change faux create api,just call probe on vhci_hcd_init.

 drivers/usb/usbip/vhci.h             |  4 +-
 drivers/usb/usbip/vhci_hcd.c         | 86 +++++++++++-----------------
 drivers/usb/usbip/vhci_sysfs.c       | 68 +++++++++++-----------
 tools/usb/usbip/libsrc/vhci_driver.h |  2 +-
 4 files changed, 72 insertions(+), 88 deletions(-)

diff --git a/drivers/usb/usbip/vhci.h b/drivers/usb/usbip/vhci.h
index 5659dce1526e..a73070a3f450 100644
--- a/drivers/usb/usbip/vhci.h
+++ b/drivers/usb/usbip/vhci.h
@@ -93,7 +93,7 @@ enum hub_speed {
 struct vhci {
 	spinlock_t lock;
 
-	struct platform_device *pdev;
+	struct faux_device *fdev;
 
 	struct vhci_hcd *vhci_hcd_hs;
 	struct vhci_hcd *vhci_hcd_ss;
@@ -141,7 +141,7 @@ static inline __u32 port_to_rhport(__u32 port)
 	return port % VHCI_HC_PORTS;
 }
 
-static inline int port_to_pdev_nr(__u32 port)
+static inline int port_to_fdev_nr(__u32 port)
 {
 	return port / VHCI_PORTS;
 }
diff --git a/drivers/usb/usbip/vhci_hcd.c b/drivers/usb/usbip/vhci_hcd.c
index e70fba9f55d6..4e6d7d23e915 100644
--- a/drivers/usb/usbip/vhci_hcd.c
+++ b/drivers/usb/usbip/vhci_hcd.c
@@ -9,7 +9,7 @@
 #include <linux/kernel.h>
 #include <linux/kthread.h>
 #include <linux/module.h>
-#include <linux/platform_device.h>
+#include <linux/device/faux.h>
 #include <linux/slab.h>
 #include <linux/string_choices.h>
 
@@ -1143,7 +1143,7 @@ static int hcd_name_to_id(const char *name)
 
 static int vhci_setup(struct usb_hcd *hcd)
 {
-	struct vhci *vhci = *((void **)dev_get_platdata(hcd->self.controller));
+	struct vhci *vhci = dev_get_platdata(hcd->self.controller);
 
 	if (usb_hcd_is_primary_hcd(hcd)) {
 		vhci->vhci_hcd_hs = hcd_to_vhci_hcd(hcd);
@@ -1257,7 +1257,7 @@ static int vhci_get_frame_number(struct usb_hcd *hcd)
 /* FIXME: suspend/resume */
 static int vhci_bus_suspend(struct usb_hcd *hcd)
 {
-	struct vhci *vhci = *((void **)dev_get_platdata(hcd->self.controller));
+	struct vhci *vhci = dev_get_platdata(hcd->self.controller);
 	unsigned long flags;
 
 	dev_dbg(&hcd->self.root_hub->dev, "%s\n", __func__);
@@ -1271,7 +1271,7 @@ static int vhci_bus_suspend(struct usb_hcd *hcd)
 
 static int vhci_bus_resume(struct usb_hcd *hcd)
 {
-	struct vhci *vhci = *((void **)dev_get_platdata(hcd->self.controller));
+	struct vhci *vhci = dev_get_platdata(hcd->self.controller);
 	int rc = 0;
 	unsigned long flags;
 
@@ -1336,20 +1336,19 @@ static const struct hc_driver vhci_hc_driver = {
 	.free_streams	= vhci_free_streams,
 };
 
-static int vhci_hcd_probe(struct platform_device *pdev)
+static int vhci_hcd_probe(struct faux_device *fdev)
 {
-	struct vhci             *vhci = *((void **)dev_get_platdata(&pdev->dev));
+	struct vhci             *vhci = dev_get_platdata(&fdev->dev);
 	struct usb_hcd		*hcd_hs;
 	struct usb_hcd		*hcd_ss;
 	int			ret;
 
-	usbip_dbg_vhci_hc("name %s id %d\n", pdev->name, pdev->id);
 
 	/*
 	 * Allocate and initialize hcd.
 	 * Our private data is also allocated automatically.
 	 */
-	hcd_hs = usb_create_hcd(&vhci_hc_driver, &pdev->dev, dev_name(&pdev->dev));
+	hcd_hs = usb_create_hcd(&vhci_hc_driver, &fdev->dev, dev_name(&fdev->dev));
 	if (!hcd_hs) {
 		pr_err("create primary hcd failed\n");
 		return -ENOMEM;
@@ -1366,8 +1365,8 @@ static int vhci_hcd_probe(struct platform_device *pdev)
 		goto put_usb2_hcd;
 	}
 
-	hcd_ss = usb_create_shared_hcd(&vhci_hc_driver, &pdev->dev,
-				       dev_name(&pdev->dev), hcd_hs);
+	hcd_ss = usb_create_shared_hcd(&vhci_hc_driver, &fdev->dev,
+				       dev_name(&fdev->dev), hcd_hs);
 	if (!hcd_ss) {
 		ret = -ENOMEM;
 		pr_err("create shared hcd failed\n");
@@ -1394,9 +1393,9 @@ static int vhci_hcd_probe(struct platform_device *pdev)
 	return ret;
 }
 
-static void vhci_hcd_remove(struct platform_device *pdev)
+static void vhci_hcd_remove(struct faux_device *fdev)
 {
-	struct vhci *vhci = *((void **)dev_get_platdata(&pdev->dev));
+	struct vhci *vhci = dev_get_platdata(&fdev->dev);
 
 	/*
 	 * Disconnects the root hub,
@@ -1416,7 +1415,7 @@ static void vhci_hcd_remove(struct platform_device *pdev)
 #ifdef CONFIG_PM
 
 /* what should happen for USB/IP under suspend/resume? */
-static int vhci_hcd_suspend(struct platform_device *pdev, pm_message_t state)
+static int vhci_hcd_suspend(struct faux_device *fdev, pm_message_t state)
 {
 	struct usb_hcd *hcd;
 	struct vhci *vhci;
@@ -1425,13 +1424,13 @@ static int vhci_hcd_suspend(struct platform_device *pdev, pm_message_t state)
 	int ret = 0;
 	unsigned long flags;
 
-	dev_dbg(&pdev->dev, "%s\n", __func__);
+	dev_dbg(&fdev->dev, "%s\n", __func__);
 
-	hcd = platform_get_drvdata(pdev);
+	hcd = faux_device_get_drvdata(fdev);
 	if (!hcd)
 		return 0;
 
-	vhci = *((void **)dev_get_platdata(hcd->self.controller));
+	vhci = dev_get_platdata(hcd->self.controller);
 
 	spin_lock_irqsave(&vhci->lock, flags);
 
@@ -1448,25 +1447,25 @@ static int vhci_hcd_suspend(struct platform_device *pdev, pm_message_t state)
 	spin_unlock_irqrestore(&vhci->lock, flags);
 
 	if (connected > 0) {
-		dev_info(&pdev->dev,
+		dev_info(&fdev->dev,
 			 "We have %d active connection%s. Do not suspend.\n",
 			 connected, str_plural(connected));
 		ret =  -EBUSY;
 	} else {
-		dev_info(&pdev->dev, "suspend vhci_hcd");
+		dev_info(&fdev->dev, "suspend vhci_hcd");
 		clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
 	}
 
 	return ret;
 }
 
-static int vhci_hcd_resume(struct platform_device *pdev)
+static int vhci_hcd_resume(struct faux_device *fdev)
 {
 	struct usb_hcd *hcd;
 
-	dev_dbg(&pdev->dev, "%s\n", __func__);
+	dev_dbg(&fdev->dev, "%s\n", __func__);
 
-	hcd = platform_get_drvdata(pdev);
+	hcd = faux_device_get_drvdata(fdev);
 	if (!hcd)
 		return 0;
 	set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
@@ -1482,25 +1481,18 @@ static int vhci_hcd_resume(struct platform_device *pdev)
 
 #endif
 
-static struct platform_driver vhci_driver = {
-	.probe	= vhci_hcd_probe,
+static struct faux_device_ops vhci_driver = {
 	.remove = vhci_hcd_remove,
-	.suspend = vhci_hcd_suspend,
-	.resume	= vhci_hcd_resume,
-	.driver	= {
-		.name = driver_name,
-	},
 };
 
-static void del_platform_devices(void)
+static void del_faux_devices(void)
 {
 	int i;
 
 	for (i = 0; i < vhci_num_controllers; i++) {
-		platform_device_unregister(vhcis[i].pdev);
-		vhcis[i].pdev = NULL;
+		faux_device_destroy(vhcis[i].fdev);
+		vhcis[i].fdev = NULL;
 	}
-	sysfs_remove_link(&platform_bus.kobj, driver_name);
 }
 
 static int __init vhci_hcd_init(void)
@@ -1517,41 +1509,33 @@ static int __init vhci_hcd_init(void)
 	if (vhcis == NULL)
 		return -ENOMEM;
 
-	ret = platform_driver_register(&vhci_driver);
-	if (ret)
-		goto err_driver_register;
-
 	for (i = 0; i < vhci_num_controllers; i++) {
 		void *vhci = &vhcis[i];
-		struct platform_device_info pdevinfo = {
-			.name = driver_name,
-			.id = i,
-			.data = &vhci,
-			.size_data = sizeof(void *),
-		};
-
-		vhcis[i].pdev = platform_device_register_full(&pdevinfo);
-		ret = PTR_ERR_OR_ZERO(vhcis[i].pdev);
-		if (ret < 0) {
+		char vhci_name[16];
+
+		snprintf(vhci_name, 16, "%s.%d", driver_name, i);
+
+		vhcis[i].fdev = faux_device_create_with_groups(vhci_name, NULL, &vhci_driver, NULL);
+		if (!vhcis[i].fdev) {
 			while (i--)
-				platform_device_unregister(vhcis[i].pdev);
+				faux_device_destroy(vhcis[i].fdev);
+			ret = -ENODEV;
 			goto err_add_hcd;
 		}
+		vhcis[i].fdev->dev.platform_data = vhci;
+		vhci_hcd_probe(vhcis[i].fdev);
 	}
 
 	return 0;
 
 err_add_hcd:
-	platform_driver_unregister(&vhci_driver);
-err_driver_register:
 	kfree(vhcis);
 	return ret;
 }
 
 static void __exit vhci_hcd_exit(void)
 {
-	del_platform_devices();
-	platform_driver_unregister(&vhci_driver);
+	del_faux_devices();
 	kfree(vhcis);
 }
 
diff --git a/drivers/usb/usbip/vhci_sysfs.c b/drivers/usb/usbip/vhci_sysfs.c
index d5865460e82d..d1e6b239399f 100644
--- a/drivers/usb/usbip/vhci_sysfs.c
+++ b/drivers/usb/usbip/vhci_sysfs.c
@@ -7,7 +7,7 @@
 #include <linux/kthread.h>
 #include <linux/file.h>
 #include <linux/net.h>
-#include <linux/platform_device.h>
+#include <linux/device/faux.h>
 #include <linux/slab.h>
 
 /* Hardening for Spectre-v1 */
@@ -28,7 +28,7 @@
  *
  * Output includes socket fd instead of socket pointer address to avoid
  * leaking kernel memory address in:
- *	/sys/devices/platform/vhci_hcd.0/status and in debug output.
+ *	/sys/devices/faux/vhci_hcd.0/status and in debug output.
  * The socket pointer address is not used at the moment and it was made
  * visible as a convenient way to find IP address from socket pointer
  * address by looking up /proc/net/{tcp,tcp6}. As this opens a security
@@ -60,9 +60,9 @@ static void port_show_vhci(char **out, int hub, int port, struct vhci_device *vd
 }
 
 /* Sysfs entry to show port status */
-static ssize_t status_show_vhci(int pdev_nr, char *out)
+static ssize_t status_show_vhci(int fdev_nr, char *out)
 {
-	struct platform_device *pdev = vhcis[pdev_nr].pdev;
+	struct faux_device *fdev = vhcis[fdev_nr].fdev;
 	struct vhci *vhci;
 	struct usb_hcd *hcd;
 	struct vhci_hcd *vhci_hcd;
@@ -70,12 +70,12 @@ static ssize_t status_show_vhci(int pdev_nr, char *out)
 	int i;
 	unsigned long flags;
 
-	if (!pdev || !out) {
+	if (!fdev || !out) {
 		usbip_dbg_vhci_sysfs("show status error\n");
 		return 0;
 	}
 
-	hcd = platform_get_drvdata(pdev);
+	hcd = faux_device_get_drvdata(fdev);
 	vhci_hcd = hcd_to_vhci_hcd(hcd);
 	vhci = vhci_hcd->vhci;
 
@@ -86,7 +86,7 @@ static ssize_t status_show_vhci(int pdev_nr, char *out)
 
 		spin_lock(&vdev->ud.lock);
 		port_show_vhci(&out, HUB_SPEED_HIGH,
-			       pdev_nr * VHCI_PORTS + i, vdev);
+			       fdev_nr * VHCI_PORTS + i, vdev);
 		spin_unlock(&vdev->ud.lock);
 	}
 
@@ -95,7 +95,7 @@ static ssize_t status_show_vhci(int pdev_nr, char *out)
 
 		spin_lock(&vdev->ud.lock);
 		port_show_vhci(&out, HUB_SPEED_SUPER,
-			       pdev_nr * VHCI_PORTS + VHCI_HC_PORTS + i, vdev);
+			       fdev_nr * VHCI_PORTS + VHCI_HC_PORTS + i, vdev);
 		spin_unlock(&vdev->ud.lock);
 	}
 
@@ -104,14 +104,14 @@ static ssize_t status_show_vhci(int pdev_nr, char *out)
 	return out - s;
 }
 
-static ssize_t status_show_not_ready(int pdev_nr, char *out)
+static ssize_t status_show_not_ready(int fdev_nr, char *out)
 {
 	char *s = out;
 	int i = 0;
 
 	for (i = 0; i < VHCI_HC_PORTS; i++) {
 		out += sprintf(out, "hs  %04u %03u ",
-				    (pdev_nr * VHCI_PORTS) + i,
+				    (fdev_nr * VHCI_PORTS) + i,
 				    VDEV_ST_NOTASSIGNED);
 		out += sprintf(out, "000 00000000 0000000000000000 0-0");
 		out += sprintf(out, "\n");
@@ -119,7 +119,7 @@ static ssize_t status_show_not_ready(int pdev_nr, char *out)
 
 	for (i = 0; i < VHCI_HC_PORTS; i++) {
 		out += sprintf(out, "ss  %04u %03u ",
-				    (pdev_nr * VHCI_PORTS) + VHCI_HC_PORTS + i,
+				    (fdev_nr * VHCI_PORTS) + VHCI_HC_PORTS + i,
 				    VDEV_ST_NOTASSIGNED);
 		out += sprintf(out, "000 00000000 0000000000000000 0-0");
 		out += sprintf(out, "\n");
@@ -148,16 +148,16 @@ static ssize_t status_show(struct device *dev,
 			   struct device_attribute *attr, char *out)
 {
 	char *s = out;
-	int pdev_nr;
+	int fdev_nr;
 
 	out += sprintf(out,
 		       "hub port sta spd dev      sockfd local_busid\n");
 
-	pdev_nr = status_name_to_id(attr->attr.name);
-	if (pdev_nr < 0)
-		out += status_show_not_ready(pdev_nr, out);
+	fdev_nr = status_name_to_id(attr->attr.name);
+	if (fdev_nr < 0)
+		out += status_show_not_ready(fdev_nr, out);
 	else
-		out += status_show_vhci(pdev_nr, out);
+		out += status_show_vhci(fdev_nr, out);
 
 	return out - s;
 }
@@ -213,13 +213,13 @@ static int vhci_port_disconnect(struct vhci_hcd *vhci_hcd, __u32 rhport)
 	return 0;
 }
 
-static int valid_port(__u32 *pdev_nr, __u32 *rhport)
+static int valid_port(__u32 *fdev_nr, __u32 *rhport)
 {
-	if (*pdev_nr >= vhci_num_controllers) {
-		pr_err("pdev %u\n", *pdev_nr);
+	if (*fdev_nr >= vhci_num_controllers) {
+		pr_err("fdev %u\n", *fdev_nr);
 		return 0;
 	}
-	*pdev_nr = array_index_nospec(*pdev_nr, vhci_num_controllers);
+	*fdev_nr = array_index_nospec(*fdev_nr, vhci_num_controllers);
 
 	if (*rhport >= VHCI_HC_PORTS) {
 		pr_err("rhport %u\n", *rhport);
@@ -233,7 +233,7 @@ static int valid_port(__u32 *pdev_nr, __u32 *rhport)
 static ssize_t detach_store(struct device *dev, struct device_attribute *attr,
 			    const char *buf, size_t count)
 {
-	__u32 port = 0, pdev_nr = 0, rhport = 0;
+	__u32 port = 0, fdev_nr = 0, rhport = 0;
 	struct usb_hcd *hcd;
 	struct vhci_hcd *vhci_hcd;
 	int ret;
@@ -241,13 +241,13 @@ static ssize_t detach_store(struct device *dev, struct device_attribute *attr,
 	if (kstrtoint(buf, 10, &port) < 0)
 		return -EINVAL;
 
-	pdev_nr = port_to_pdev_nr(port);
+	fdev_nr = port_to_fdev_nr(port);
 	rhport = port_to_rhport(port);
 
-	if (!valid_port(&pdev_nr, &rhport))
+	if (!valid_port(&fdev_nr, &rhport))
 		return -EINVAL;
 
-	hcd = platform_get_drvdata(vhcis[pdev_nr].pdev);
+	hcd = faux_device_get_drvdata(vhcis[fdev_nr].fdev);
 	if (hcd == NULL) {
 		dev_err(dev, "port is not ready %u\n", port);
 		return -EAGAIN;
@@ -270,10 +270,10 @@ static ssize_t detach_store(struct device *dev, struct device_attribute *attr,
 }
 static DEVICE_ATTR_WO(detach);
 
-static int valid_args(__u32 *pdev_nr, __u32 *rhport,
+static int valid_args(__u32 *fdev_nr, __u32 *rhport,
 		      enum usb_device_speed speed)
 {
-	if (!valid_port(pdev_nr, rhport)) {
+	if (!valid_port(fdev_nr, rhport)) {
 		return 0;
 	}
 
@@ -311,7 +311,7 @@ static ssize_t attach_store(struct device *dev, struct device_attribute *attr,
 {
 	struct socket *socket;
 	int sockfd = 0;
-	__u32 port = 0, pdev_nr = 0, rhport = 0, devid = 0, speed = 0;
+	__u32 port = 0, fdev_nr = 0, rhport = 0, devid = 0, speed = 0;
 	struct usb_hcd *hcd;
 	struct vhci_hcd *vhci_hcd;
 	struct vhci_device *vdev;
@@ -329,19 +329,19 @@ static ssize_t attach_store(struct device *dev, struct device_attribute *attr,
 	 */
 	if (sscanf(buf, "%u %u %u %u", &port, &sockfd, &devid, &speed) != 4)
 		return -EINVAL;
-	pdev_nr = port_to_pdev_nr(port);
+	fdev_nr = port_to_fdev_nr(port);
 	rhport = port_to_rhport(port);
 
-	usbip_dbg_vhci_sysfs("port(%u) pdev(%d) rhport(%u)\n",
-			     port, pdev_nr, rhport);
+	usbip_dbg_vhci_sysfs("port(%u) fdev(%d) rhport(%u)\n",
+			     port, fdev_nr, rhport);
 	usbip_dbg_vhci_sysfs("sockfd(%u) devid(%u) speed(%u)\n",
 			     sockfd, devid, speed);
 
 	/* check received parameters */
-	if (!valid_args(&pdev_nr, &rhport, speed))
+	if (!valid_args(&fdev_nr, &rhport, speed))
 		return -EINVAL;
 
-	hcd = platform_get_drvdata(vhcis[pdev_nr].pdev);
+	hcd = faux_device_get_drvdata(vhcis[fdev_nr].fdev);
 	if (hcd == NULL) {
 		dev_err(dev, "port %d is not ready\n", port);
 		return -EAGAIN;
@@ -413,8 +413,8 @@ static ssize_t attach_store(struct device *dev, struct device_attribute *attr,
 		goto unlock_mutex;
 	}
 
-	dev_info(dev, "pdev(%u) rhport(%u) sockfd(%d)\n",
-		 pdev_nr, rhport, sockfd);
+	dev_info(dev, "fdev(%u) rhport(%u) sockfd(%d)\n",
+		 fdev_nr, rhport, sockfd);
 	dev_info(dev, "devid(%u) speed(%u) speed_str(%s)\n",
 		 devid, speed, usb_speed_string(speed));
 
diff --git a/tools/usb/usbip/libsrc/vhci_driver.h b/tools/usb/usbip/libsrc/vhci_driver.h
index 6c9aca216705..20918e74de59 100644
--- a/tools/usb/usbip/libsrc/vhci_driver.h
+++ b/tools/usb/usbip/libsrc/vhci_driver.h
@@ -11,7 +11,7 @@
 
 #include "usbip_common.h"
 
-#define USBIP_VHCI_BUS_TYPE "platform"
+#define USBIP_VHCI_BUS_TYPE "faux"
 #define USBIP_VHCI_DEVICE_NAME "vhci_hcd.0"
 
 enum hub_speed {
-- 
2.25.1


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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-06-04  6:54   ` [PATCH v2] " Zongmin Zhou
@ 2025-06-10 15:15     ` Shuah Khan
  2025-06-19 11:02       ` Greg KH
  2025-06-19 11:01     ` Greg KH
  1 sibling, 1 reply; 33+ messages in thread
From: Shuah Khan @ 2025-06-10 15:15 UTC (permalink / raw)
  To: Zongmin Zhou, gregkh, shuah
  Cc: valentina.manea.m, i, linux-kernel, linux-usb, zhouzongmin,
	Shuah Khan

On 6/4/25 00:54, Zongmin Zhou wrote:
> From: Zongmin Zhou <zhouzongmin@kylinos.cn>
> 
> The vhci driver does not need to create a platform device,
> it only did so because it was simple to do that in order to
> get a place in sysfs to hang some device-specific attributes.
> Now the faux device interface is more appropriate,change it
> over to use the faux bus instead.
> 
> Signed-off-by: Zongmin Zhou <zhouzongmin@kylinos.cn>
> ---
> Changes in v2:
> - don't change faux create api,just call probe on vhci_hcd_init.

I will defer the review to Greg on this.

I am fine with the change if Greg is happy with it. :)

Acked-by: Shuah Khan <skhan@linuxfoundation.org>

thanks,
-- Shuah

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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-06-04  6:54   ` [PATCH v2] " Zongmin Zhou
  2025-06-10 15:15     ` Shuah Khan
@ 2025-06-19 11:01     ` Greg KH
  2025-06-20  2:16       ` Zongmin Zhou
  1 sibling, 1 reply; 33+ messages in thread
From: Greg KH @ 2025-06-19 11:01 UTC (permalink / raw)
  To: Zongmin Zhou
  Cc: shuah, valentina.manea.m, i, linux-kernel, linux-usb, zhouzongmin

On Wed, Jun 04, 2025 at 02:54:10PM +0800, Zongmin Zhou wrote:
> From: Zongmin Zhou <zhouzongmin@kylinos.cn>
> 
> The vhci driver does not need to create a platform device,
> it only did so because it was simple to do that in order to
> get a place in sysfs to hang some device-specific attributes.
> Now the faux device interface is more appropriate,change it
> over to use the faux bus instead.
> 
> Signed-off-by: Zongmin Zhou <zhouzongmin@kylinos.cn>
> ---
> Changes in v2:
> - don't change faux create api,just call probe on vhci_hcd_init.
> 
>  drivers/usb/usbip/vhci.h             |  4 +-
>  drivers/usb/usbip/vhci_hcd.c         | 86 +++++++++++-----------------
>  drivers/usb/usbip/vhci_sysfs.c       | 68 +++++++++++-----------
>  tools/usb/usbip/libsrc/vhci_driver.h |  2 +-
>  4 files changed, 72 insertions(+), 88 deletions(-)

I get the following build errors from this patch:

drivers/usb/usbip/vhci_hcd.c:1462:12: error: ‘vhci_hcd_resume’ defined but not used [-Werror=unused-function]
 1462 | static int vhci_hcd_resume(struct faux_device *fdev)
      |            ^~~~~~~~~~~~~~~
drivers/usb/usbip/vhci_hcd.c:1418:12: error: ‘vhci_hcd_suspend’ defined but not used [-Werror=unused-function]
 1418 | static int vhci_hcd_suspend(struct faux_device *fdev, pm_message_t state)
      |            ^~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors

Are you sure you tested this?

thanks,

greg k-h

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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-06-10 15:15     ` Shuah Khan
@ 2025-06-19 11:02       ` Greg KH
  0 siblings, 0 replies; 33+ messages in thread
From: Greg KH @ 2025-06-19 11:02 UTC (permalink / raw)
  To: Shuah Khan
  Cc: Zongmin Zhou, shuah, valentina.manea.m, i, linux-kernel,
	linux-usb, zhouzongmin

On Tue, Jun 10, 2025 at 09:15:51AM -0600, Shuah Khan wrote:
> On 6/4/25 00:54, Zongmin Zhou wrote:
> > From: Zongmin Zhou <zhouzongmin@kylinos.cn>
> > 
> > The vhci driver does not need to create a platform device,
> > it only did so because it was simple to do that in order to
> > get a place in sysfs to hang some device-specific attributes.
> > Now the faux device interface is more appropriate,change it
> > over to use the faux bus instead.
> > 
> > Signed-off-by: Zongmin Zhou <zhouzongmin@kylinos.cn>
> > ---
> > Changes in v2:
> > - don't change faux create api,just call probe on vhci_hcd_init.
> 
> I will defer the review to Greg on this.
> 
> I am fine with the change if Greg is happy with it. :)

Well the build errors aren't that good, but overall, yes, it's a nice
change :)

thanks,

greg k-h

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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-06-19 11:01     ` Greg KH
@ 2025-06-20  2:16       ` Zongmin Zhou
  2025-06-20  4:29         ` Greg KH
  0 siblings, 1 reply; 33+ messages in thread
From: Zongmin Zhou @ 2025-06-20  2:16 UTC (permalink / raw)
  To: Greg KH; +Cc: shuah, valentina.manea.m, i, linux-kernel, linux-usb, zhouzongmin


On 2025/6/19 19:01, Greg KH wrote:
> On Wed, Jun 04, 2025 at 02:54:10PM +0800, Zongmin Zhou wrote:
>> From: Zongmin Zhou <zhouzongmin@kylinos.cn>
>>
>> The vhci driver does not need to create a platform device,
>> it only did so because it was simple to do that in order to
>> get a place in sysfs to hang some device-specific attributes.
>> Now the faux device interface is more appropriate,change it
>> over to use the faux bus instead.
>>
>> Signed-off-by: Zongmin Zhou <zhouzongmin@kylinos.cn>
>> ---
>> Changes in v2:
>> - don't change faux create api,just call probe on vhci_hcd_init.
>>
>>   drivers/usb/usbip/vhci.h             |  4 +-
>>   drivers/usb/usbip/vhci_hcd.c         | 86 +++++++++++-----------------
>>   drivers/usb/usbip/vhci_sysfs.c       | 68 +++++++++++-----------
>>   tools/usb/usbip/libsrc/vhci_driver.h |  2 +-
>>   4 files changed, 72 insertions(+), 88 deletions(-)
> I get the following build errors from this patch:
>
> drivers/usb/usbip/vhci_hcd.c:1462:12: error: ‘vhci_hcd_resume’ defined but not used [-Werror=unused-function]
>   1462 | static int vhci_hcd_resume(struct faux_device *fdev)
>        |            ^~~~~~~~~~~~~~~
> drivers/usb/usbip/vhci_hcd.c:1418:12: error: ‘vhci_hcd_suspend’ defined but not used [-Werror=unused-function]
>   1418 | static int vhci_hcd_suspend(struct faux_device *fdev, pm_message_t state)
>        |            ^~~~~~~~~~~~~~~~
> cc1: all warnings being treated as errors
>
> Are you sure you tested this?
I apologize for not enabling -Werror, which resulted in missing this 
error warning.
I have tested usbip feature use the new patch,but not test system 
suspend/resume.
The faux bus type don't add pm function,and vhci-hcd driver can't 
register it.
Maybe have to add suspend/resume for it.like below:
static const struct bus_type faux_bus_type = {
     .name        = "faux",
     .match        = faux_match,
     .probe        = faux_probe,
     .remove        = faux_remove,
     .resume     = faux_resume,
     .suspend    = faux_suspend,
};

Is that right?
Your expertise would be greatly valued.
Thanks very much.
>
> thanks,
>
> greg k-h


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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-06-20  2:16       ` Zongmin Zhou
@ 2025-06-20  4:29         ` Greg KH
  2025-06-20  9:19           ` Zongmin Zhou
  0 siblings, 1 reply; 33+ messages in thread
From: Greg KH @ 2025-06-20  4:29 UTC (permalink / raw)
  To: Zongmin Zhou
  Cc: shuah, valentina.manea.m, i, linux-kernel, linux-usb, zhouzongmin

On Fri, Jun 20, 2025 at 10:16:16AM +0800, Zongmin Zhou wrote:
> 
> On 2025/6/19 19:01, Greg KH wrote:
> > On Wed, Jun 04, 2025 at 02:54:10PM +0800, Zongmin Zhou wrote:
> > > From: Zongmin Zhou <zhouzongmin@kylinos.cn>
> > > 
> > > The vhci driver does not need to create a platform device,
> > > it only did so because it was simple to do that in order to
> > > get a place in sysfs to hang some device-specific attributes.
> > > Now the faux device interface is more appropriate,change it
> > > over to use the faux bus instead.
> > > 
> > > Signed-off-by: Zongmin Zhou <zhouzongmin@kylinos.cn>
> > > ---
> > > Changes in v2:
> > > - don't change faux create api,just call probe on vhci_hcd_init.
> > > 
> > >   drivers/usb/usbip/vhci.h             |  4 +-
> > >   drivers/usb/usbip/vhci_hcd.c         | 86 +++++++++++-----------------
> > >   drivers/usb/usbip/vhci_sysfs.c       | 68 +++++++++++-----------
> > >   tools/usb/usbip/libsrc/vhci_driver.h |  2 +-
> > >   4 files changed, 72 insertions(+), 88 deletions(-)
> > I get the following build errors from this patch:
> > 
> > drivers/usb/usbip/vhci_hcd.c:1462:12: error: ‘vhci_hcd_resume’ defined but not used [-Werror=unused-function]
> >   1462 | static int vhci_hcd_resume(struct faux_device *fdev)
> >        |            ^~~~~~~~~~~~~~~
> > drivers/usb/usbip/vhci_hcd.c:1418:12: error: ‘vhci_hcd_suspend’ defined but not used [-Werror=unused-function]
> >   1418 | static int vhci_hcd_suspend(struct faux_device *fdev, pm_message_t state)
> >        |            ^~~~~~~~~~~~~~~~
> > cc1: all warnings being treated as errors
> > 
> > Are you sure you tested this?
> I apologize for not enabling -Werror, which resulted in missing this error
> warning.
> I have tested usbip feature use the new patch,but not test system
> suspend/resume.
> The faux bus type don't add pm function,and vhci-hcd driver can't register
> it.
> Maybe have to add suspend/resume for it.like below:
> static const struct bus_type faux_bus_type = {
>     .name        = "faux",
>     .match        = faux_match,
>     .probe        = faux_probe,
>     .remove        = faux_remove,
>     .resume     = faux_resume,
>     .suspend    = faux_suspend,
> };
> 
> Is that right?
> Your expertise would be greatly valued.

As this is not real hardware, why do you need the suspend/resume
callbacks at all?  What is happening here that requires them?

thanks,

greg k-h

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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-06-20  4:29         ` Greg KH
@ 2025-06-20  9:19           ` Zongmin Zhou
  2025-06-20  9:27             ` Greg KH
  0 siblings, 1 reply; 33+ messages in thread
From: Zongmin Zhou @ 2025-06-20  9:19 UTC (permalink / raw)
  To: Greg KH; +Cc: shuah, valentina.manea.m, i, linux-kernel, linux-usb, zhouzongmin


On 2025/6/20 12:29, Greg KH wrote:
> On Fri, Jun 20, 2025 at 10:16:16AM +0800, Zongmin Zhou wrote:
>> On 2025/6/19 19:01, Greg KH wrote:
>>> On Wed, Jun 04, 2025 at 02:54:10PM +0800, Zongmin Zhou wrote:
>>>> From: Zongmin Zhou <zhouzongmin@kylinos.cn>
>>>>
>>>> The vhci driver does not need to create a platform device,
>>>> it only did so because it was simple to do that in order to
>>>> get a place in sysfs to hang some device-specific attributes.
>>>> Now the faux device interface is more appropriate,change it
>>>> over to use the faux bus instead.
>>>>
>>>> Signed-off-by: Zongmin Zhou <zhouzongmin@kylinos.cn>
>>>> ---
>>>> Changes in v2:
>>>> - don't change faux create api,just call probe on vhci_hcd_init.
>>>>
>>>>    drivers/usb/usbip/vhci.h             |  4 +-
>>>>    drivers/usb/usbip/vhci_hcd.c         | 86 +++++++++++-----------------
>>>>    drivers/usb/usbip/vhci_sysfs.c       | 68 +++++++++++-----------
>>>>    tools/usb/usbip/libsrc/vhci_driver.h |  2 +-
>>>>    4 files changed, 72 insertions(+), 88 deletions(-)
>>> I get the following build errors from this patch:
>>>
>>> drivers/usb/usbip/vhci_hcd.c:1462:12: error: ‘vhci_hcd_resume’ defined but not used [-Werror=unused-function]
>>>    1462 | static int vhci_hcd_resume(struct faux_device *fdev)
>>>         |            ^~~~~~~~~~~~~~~
>>> drivers/usb/usbip/vhci_hcd.c:1418:12: error: ‘vhci_hcd_suspend’ defined but not used [-Werror=unused-function]
>>>    1418 | static int vhci_hcd_suspend(struct faux_device *fdev, pm_message_t state)
>>>         |            ^~~~~~~~~~~~~~~~
>>> cc1: all warnings being treated as errors
>>>
>>> Are you sure you tested this?
>> I apologize for not enabling -Werror, which resulted in missing this error
>> warning.
>> I have tested usbip feature use the new patch,but not test system
>> suspend/resume.
>> The faux bus type don't add pm function,and vhci-hcd driver can't register
>> it.
>> Maybe have to add suspend/resume for it.like below:
>> static const struct bus_type faux_bus_type = {
>>      .name        = "faux",
>>      .match        = faux_match,
>>      .probe        = faux_probe,
>>      .remove        = faux_remove,
>>      .resume     = faux_resume,
>>      .suspend    = faux_suspend,
>> };
>>
>> Is that right?
>> Your expertise would be greatly valued.
> As this is not real hardware, why do you need the suspend/resume
> callbacks at all?  What is happening here that requires them?
@greg,
The vhci_hcd_suspend/vhci_hcd_resume interfaces are not designed for 
this faux device, but rather to
manipulate the HCD_FLAG_HW_ACCESSIBLE bit in the hcd flags associated 
with the faux device.
For example:
During system standby: clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)
During system wakeup: set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)

Previously, these two functions were registered through platform_driver,
but faux bus does not have the relevant interface, so they were not called,
resulting in this compilation warning error.

This raises the question: Should the faux bus implement PM-related 
interface?
I'm uncertain whether these functions are essential for the vhci-hcd 
driver or if they can be safely removed.

However, during system standby/wakeup tests with remote USB devices 
bound to the vhci-hcd driver,
I observed consistent failure scenarios across both the original 
platform bus and faux bus patch implementations.

Failure Modes
a.Failed standby with auto-wakeup(Log excerpt):
[ 1449.065592][T10238] PM: suspend entry (s2idle)
[ 1449.106146][T10238] Filesystems sync: 0.040 seconds
[ 1449.216189][T10238] Freezing user space processes
[ 1449.219474][T10238] Freezing user space processes completed (elapsed 
0.002 seconds)
[ 1449.219887][T10238] OOM killer disabled.
[ 1449.220090][T10238] Freezing remaining freezable tasks
[ 1469.222372][T10238] Freezing remaining freezable tasks failed after 
20.002 seconds (0 tasks refusing to freeze, wq_busy=1):
[ 1469.225038][T10238] Showing freezable workqueues that are still busy:
[ 1469.226176][T10238] workqueue events_freezable_pwr_efficient: flags=0x86
[ 1469.227453][T10238]   pwq 20: cpus=0-3 node=0 flags=0x4 nice=0 
active=1 refcnt=2
[ 1469.227463][T10238]     in-flight: 268:disk_events_workfn
[ 1469.233559][T10238] Restarting kernel threads ... done.
[ 1469.235119][T10238] OOM killer enabled.
[ 1469.235849][T10238] Restarting tasks ... done.
[ 1469.240121][T10238] random: crng reseeded on system resumption
[ 1469.241176][T10238] PM: suspend exit

b.Failed standby with black screen freeze:
[ 1820.667073][T11454] PM: suspend entry (s2idle)

@Shuah,
I wonder if you has encountered this issue? When a USB device is 
attached to vhci-hcd,
is it not possible to put the system into standby mode?

Thanks.

> thanks,
>
> greg k-h


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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-06-20  9:19           ` Zongmin Zhou
@ 2025-06-20  9:27             ` Greg KH
  2025-06-20 17:26               ` Shuah Khan
  0 siblings, 1 reply; 33+ messages in thread
From: Greg KH @ 2025-06-20  9:27 UTC (permalink / raw)
  To: Zongmin Zhou
  Cc: shuah, valentina.manea.m, i, linux-kernel, linux-usb, zhouzongmin

On Fri, Jun 20, 2025 at 05:19:33PM +0800, Zongmin Zhou wrote:
> 
> On 2025/6/20 12:29, Greg KH wrote:
> > On Fri, Jun 20, 2025 at 10:16:16AM +0800, Zongmin Zhou wrote:
> > > On 2025/6/19 19:01, Greg KH wrote:
> > > > On Wed, Jun 04, 2025 at 02:54:10PM +0800, Zongmin Zhou wrote:
> > > > > From: Zongmin Zhou <zhouzongmin@kylinos.cn>
> > > > > 
> > > > > The vhci driver does not need to create a platform device,
> > > > > it only did so because it was simple to do that in order to
> > > > > get a place in sysfs to hang some device-specific attributes.
> > > > > Now the faux device interface is more appropriate,change it
> > > > > over to use the faux bus instead.
> > > > > 
> > > > > Signed-off-by: Zongmin Zhou <zhouzongmin@kylinos.cn>
> > > > > ---
> > > > > Changes in v2:
> > > > > - don't change faux create api,just call probe on vhci_hcd_init.
> > > > > 
> > > > >    drivers/usb/usbip/vhci.h             |  4 +-
> > > > >    drivers/usb/usbip/vhci_hcd.c         | 86 +++++++++++-----------------
> > > > >    drivers/usb/usbip/vhci_sysfs.c       | 68 +++++++++++-----------
> > > > >    tools/usb/usbip/libsrc/vhci_driver.h |  2 +-
> > > > >    4 files changed, 72 insertions(+), 88 deletions(-)
> > > > I get the following build errors from this patch:
> > > > 
> > > > drivers/usb/usbip/vhci_hcd.c:1462:12: error: ‘vhci_hcd_resume’ defined but not used [-Werror=unused-function]
> > > >    1462 | static int vhci_hcd_resume(struct faux_device *fdev)
> > > >         |            ^~~~~~~~~~~~~~~
> > > > drivers/usb/usbip/vhci_hcd.c:1418:12: error: ‘vhci_hcd_suspend’ defined but not used [-Werror=unused-function]
> > > >    1418 | static int vhci_hcd_suspend(struct faux_device *fdev, pm_message_t state)
> > > >         |            ^~~~~~~~~~~~~~~~
> > > > cc1: all warnings being treated as errors
> > > > 
> > > > Are you sure you tested this?
> > > I apologize for not enabling -Werror, which resulted in missing this error
> > > warning.
> > > I have tested usbip feature use the new patch,but not test system
> > > suspend/resume.
> > > The faux bus type don't add pm function,and vhci-hcd driver can't register
> > > it.
> > > Maybe have to add suspend/resume for it.like below:
> > > static const struct bus_type faux_bus_type = {
> > >      .name        = "faux",
> > >      .match        = faux_match,
> > >      .probe        = faux_probe,
> > >      .remove        = faux_remove,
> > >      .resume     = faux_resume,
> > >      .suspend    = faux_suspend,
> > > };
> > > 
> > > Is that right?
> > > Your expertise would be greatly valued.
> > As this is not real hardware, why do you need the suspend/resume
> > callbacks at all?  What is happening here that requires them?
> @greg,
> The vhci_hcd_suspend/vhci_hcd_resume interfaces are not designed for this
> faux device, but rather to
> manipulate the HCD_FLAG_HW_ACCESSIBLE bit in the hcd flags associated with
> the faux device.
> For example:
> During system standby: clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)
> During system wakeup: set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)
> 
> Previously, these two functions were registered through platform_driver,
> but faux bus does not have the relevant interface, so they were not called,
> resulting in this compilation warning error.
> 
> This raises the question: Should the faux bus implement PM-related
> interface?
> I'm uncertain whether these functions are essential for the vhci-hcd driver
> or if they can be safely removed.
> 
> However, during system standby/wakeup tests with remote USB devices bound to
> the vhci-hcd driver,
> I observed consistent failure scenarios across both the original platform
> bus and faux bus patch implementations.
> 
> Failure Modes
> a.Failed standby with auto-wakeup(Log excerpt):
> [ 1449.065592][T10238] PM: suspend entry (s2idle)
> [ 1449.106146][T10238] Filesystems sync: 0.040 seconds
> [ 1449.216189][T10238] Freezing user space processes
> [ 1449.219474][T10238] Freezing user space processes completed (elapsed
> 0.002 seconds)
> [ 1449.219887][T10238] OOM killer disabled.
> [ 1449.220090][T10238] Freezing remaining freezable tasks
> [ 1469.222372][T10238] Freezing remaining freezable tasks failed after
> 20.002 seconds (0 tasks refusing to freeze, wq_busy=1):
> [ 1469.225038][T10238] Showing freezable workqueues that are still busy:
> [ 1469.226176][T10238] workqueue events_freezable_pwr_efficient: flags=0x86
> [ 1469.227453][T10238]   pwq 20: cpus=0-3 node=0 flags=0x4 nice=0 active=1
> refcnt=2
> [ 1469.227463][T10238]     in-flight: 268:disk_events_workfn
> [ 1469.233559][T10238] Restarting kernel threads ... done.
> [ 1469.235119][T10238] OOM killer enabled.
> [ 1469.235849][T10238] Restarting tasks ... done.
> [ 1469.240121][T10238] random: crng reseeded on system resumption
> [ 1469.241176][T10238] PM: suspend exit
> 
> b.Failed standby with black screen freeze:
> [ 1820.667073][T11454] PM: suspend entry (s2idle)

Are you sure this is the usbip driver causing suspend to not work?  If
you unbind the usbip devices does suspend/resume work?

I would think that we would have gotten some reports by now if this
didn't work at all :)

thanks,

greg k-h

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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-06-20  9:27             ` Greg KH
@ 2025-06-20 17:26               ` Shuah Khan
  2025-06-24  3:21                 ` Zongmin Zhou
  0 siblings, 1 reply; 33+ messages in thread
From: Shuah Khan @ 2025-06-20 17:26 UTC (permalink / raw)
  To: Greg KH, Zongmin Zhou
  Cc: shuah, valentina.manea.m, i, linux-kernel, linux-usb, zhouzongmin,
	Shuah Khan

On 6/20/25 03:27, Greg KH wrote:
> On Fri, Jun 20, 2025 at 05:19:33PM +0800, Zongmin Zhou wrote:
>>
>> On 2025/6/20 12:29, Greg KH wrote:
>>> On Fri, Jun 20, 2025 at 10:16:16AM +0800, Zongmin Zhou wrote:
>>>> On 2025/6/19 19:01, Greg KH wrote:
>>>>> On Wed, Jun 04, 2025 at 02:54:10PM +0800, Zongmin Zhou wrote:
>>>>>> From: Zongmin Zhou <zhouzongmin@kylinos.cn>
>>>>>>
>>>>>> The vhci driver does not need to create a platform device,
>>>>>> it only did so because it was simple to do that in order to
>>>>>> get a place in sysfs to hang some device-specific attributes.
>>>>>> Now the faux device interface is more appropriate,change it
>>>>>> over to use the faux bus instead.
>>>>>>
>>>>>> Signed-off-by: Zongmin Zhou <zhouzongmin@kylinos.cn>
>>>>>> ---
>>>>>> Changes in v2:
>>>>>> - don't change faux create api,just call probe on vhci_hcd_init.
>>>>>>
>>>>>>     drivers/usb/usbip/vhci.h             |  4 +-
>>>>>>     drivers/usb/usbip/vhci_hcd.c         | 86 +++++++++++-----------------
>>>>>>     drivers/usb/usbip/vhci_sysfs.c       | 68 +++++++++++-----------
>>>>>>     tools/usb/usbip/libsrc/vhci_driver.h |  2 +-
>>>>>>     4 files changed, 72 insertions(+), 88 deletions(-)
>>>>> I get the following build errors from this patch:
>>>>>
>>>>> drivers/usb/usbip/vhci_hcd.c:1462:12: error: ‘vhci_hcd_resume’ defined but not used [-Werror=unused-function]
>>>>>     1462 | static int vhci_hcd_resume(struct faux_device *fdev)
>>>>>          |            ^~~~~~~~~~~~~~~
>>>>> drivers/usb/usbip/vhci_hcd.c:1418:12: error: ‘vhci_hcd_suspend’ defined but not used [-Werror=unused-function]
>>>>>     1418 | static int vhci_hcd_suspend(struct faux_device *fdev, pm_message_t state)
>>>>>          |            ^~~~~~~~~~~~~~~~
>>>>> cc1: all warnings being treated as errors
>>>>>
>>>>> Are you sure you tested this?
>>>> I apologize for not enabling -Werror, which resulted in missing this error
>>>> warning.
>>>> I have tested usbip feature use the new patch,but not test system
>>>> suspend/resume.
>>>> The faux bus type don't add pm function,and vhci-hcd driver can't register
>>>> it.
>>>> Maybe have to add suspend/resume for it.like below:
>>>> static const struct bus_type faux_bus_type = {
>>>>       .name        = "faux",
>>>>       .match        = faux_match,
>>>>       .probe        = faux_probe,
>>>>       .remove        = faux_remove,
>>>>       .resume     = faux_resume,
>>>>       .suspend    = faux_suspend,
>>>> };
>>>>
>>>> Is that right?
>>>> Your expertise would be greatly valued.
>>> As this is not real hardware, why do you need the suspend/resume
>>> callbacks at all?  What is happening here that requires them?
>> @greg,
>> The vhci_hcd_suspend/vhci_hcd_resume interfaces are not designed for this
>> faux device, but rather to
>> manipulate the HCD_FLAG_HW_ACCESSIBLE bit in the hcd flags associated with
>> the faux device.
>> For example:
>> During system standby: clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)
>> During system wakeup: set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)
>>
>> Previously, these two functions were registered through platform_driver,
>> but faux bus does not have the relevant interface, so they were not called,
>> resulting in this compilation warning error.
>>
>> This raises the question: Should the faux bus implement PM-related
>> interface?
>> I'm uncertain whether these functions are essential for the vhci-hcd driver
>> or if they can be safely removed.
>>
>> However, during system standby/wakeup tests with remote USB devices bound to
>> the vhci-hcd driver,
>> I observed consistent failure scenarios across both the original platform
>> bus and faux bus patch implementations.

suspend and resume hooks have been in the code from beginning
in the CONFIG_PM path. The original authors are skeptical about
what should happen during suspend"

/* what should happen for USB/IP under suspend/resume? */
suspend hook checks for active connections and sends EBBUSY
back to pm core.

Active connection means any of the ports are in USB_PORT_STAT_CONNECTION
state. So as long as there are active connections between vhci client
and the host, suspend won't work. So we really don't know what happens
to the active connections if there are no suspend/resume hooks.

If there are no active connections, then it will clear the HCD_FLAG_HW_ACCESSIBLE
bit and returns to pm core to continue with suspend.

resume sets the HCD_FLAG_HW_ACCESSIBLE flag to indicate hardware is accessible
and initiates port status poll.

- suspend hook prevents suspend

With faux device since there is no suspend and resume hook, I would expect
these hooks are not a factor in suspend and resume.

vhci_hcd is a special case virtual driver as it is a proxy for controlling
hardware on the host.

Zongmin,

Do suspend/resume work when vhci_hcd is not loaded?
What happens when when system suspends and resumes with faux device?
Can you send me dmesg logs and pm logs?

thanks,
-- Shuah





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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-06-20 17:26               ` Shuah Khan
@ 2025-06-24  3:21                 ` Zongmin Zhou
  2025-07-01 22:56                   ` Shuah Khan
  0 siblings, 1 reply; 33+ messages in thread
From: Zongmin Zhou @ 2025-06-24  3:21 UTC (permalink / raw)
  To: Shuah Khan, Greg KH
  Cc: shuah, valentina.manea.m, i, linux-kernel, linux-usb, zhouzongmin

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


On 2025/6/21 01:26, Shuah Khan wrote:
> On 6/20/25 03:27, Greg KH wrote:
>> On Fri, Jun 20, 2025 at 05:19:33PM +0800, Zongmin Zhou wrote:
>>>
>>> On 2025/6/20 12:29, Greg KH wrote:
>>>> On Fri, Jun 20, 2025 at 10:16:16AM +0800, Zongmin Zhou wrote:
>>>>> On 2025/6/19 19:01, Greg KH wrote:
>>>>>> On Wed, Jun 04, 2025 at 02:54:10PM +0800, Zongmin Zhou wrote:
>>>>>>> From: Zongmin Zhou <zhouzongmin@kylinos.cn>
>>>>>>>
>>>>>>> The vhci driver does not need to create a platform device,
>>>>>>> it only did so because it was simple to do that in order to
>>>>>>> get a place in sysfs to hang some device-specific attributes.
>>>>>>> Now the faux device interface is more appropriate,change it
>>>>>>> over to use the faux bus instead.
>>>>>>>
>>>>>>> Signed-off-by: Zongmin Zhou <zhouzongmin@kylinos.cn>
>>>>>>> ---
>>>>>>> Changes in v2:
>>>>>>> - don't change faux create api,just call probe on vhci_hcd_init.
>>>>>>>
>>>>>>>     drivers/usb/usbip/vhci.h             |  4 +-
>>>>>>>     drivers/usb/usbip/vhci_hcd.c         | 86 
>>>>>>> +++++++++++-----------------
>>>>>>>     drivers/usb/usbip/vhci_sysfs.c       | 68 
>>>>>>> +++++++++++-----------
>>>>>>>     tools/usb/usbip/libsrc/vhci_driver.h |  2 +-
>>>>>>>     4 files changed, 72 insertions(+), 88 deletions(-)
>>>>>> I get the following build errors from this patch:
>>>>>>
>>>>>> drivers/usb/usbip/vhci_hcd.c:1462:12: error: ‘vhci_hcd_resume’ 
>>>>>> defined but not used [-Werror=unused-function]
>>>>>>     1462 | static int vhci_hcd_resume(struct faux_device *fdev)
>>>>>>          |            ^~~~~~~~~~~~~~~
>>>>>> drivers/usb/usbip/vhci_hcd.c:1418:12: error: ‘vhci_hcd_suspend’ 
>>>>>> defined but not used [-Werror=unused-function]
>>>>>>     1418 | static int vhci_hcd_suspend(struct faux_device *fdev, 
>>>>>> pm_message_t state)
>>>>>>          |            ^~~~~~~~~~~~~~~~
>>>>>> cc1: all warnings being treated as errors
>>>>>>
>>>>>> Are you sure you tested this?
>>>>> I apologize for not enabling -Werror, which resulted in missing 
>>>>> this error
>>>>> warning.
>>>>> I have tested usbip feature use the new patch,but not test system
>>>>> suspend/resume.
>>>>> The faux bus type don't add pm function,and vhci-hcd driver can't 
>>>>> register
>>>>> it.
>>>>> Maybe have to add suspend/resume for it.like below:
>>>>> static const struct bus_type faux_bus_type = {
>>>>>       .name        = "faux",
>>>>>       .match        = faux_match,
>>>>>       .probe        = faux_probe,
>>>>>       .remove        = faux_remove,
>>>>>       .resume     = faux_resume,
>>>>>       .suspend    = faux_suspend,
>>>>> };
>>>>>
>>>>> Is that right?
>>>>> Your expertise would be greatly valued.
>>>> As this is not real hardware, why do you need the suspend/resume
>>>> callbacks at all?  What is happening here that requires them?
>>> @greg,
>>> The vhci_hcd_suspend/vhci_hcd_resume interfaces are not designed for 
>>> this
>>> faux device, but rather to
>>> manipulate the HCD_FLAG_HW_ACCESSIBLE bit in the hcd flags 
>>> associated with
>>> the faux device.
>>> For example:
>>> During system standby: clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)
>>> During system wakeup: set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)
>>>
>>> Previously, these two functions were registered through 
>>> platform_driver,
>>> but faux bus does not have the relevant interface, so they were not 
>>> called,
>>> resulting in this compilation warning error.
>>>
>>> This raises the question: Should the faux bus implement PM-related
>>> interface?
>>> I'm uncertain whether these functions are essential for the vhci-hcd 
>>> driver
>>> or if they can be safely removed.
>>>
>>> However, during system standby/wakeup tests with remote USB devices 
>>> bound to
>>> the vhci-hcd driver,
>>> I observed consistent failure scenarios across both the original 
>>> platform
>>> bus and faux bus patch implementations.
>
> suspend and resume hooks have been in the code from beginning
> in the CONFIG_PM path. The original authors are skeptical about
> what should happen during suspend"
>
> /* what should happen for USB/IP under suspend/resume? */
> suspend hook checks for active connections and sends EBBUSY
> back to pm core.
>
> Active connection means any of the ports are in USB_PORT_STAT_CONNECTION
> state. So as long as there are active connections between vhci client
> and the host, suspend won't work. So we really don't know what happens
> to the active connections if there are no suspend/resume hooks.
>
> If there are no active connections, then it will clear the 
> HCD_FLAG_HW_ACCESSIBLE
> bit and returns to pm core to continue with suspend.
>
> resume sets the HCD_FLAG_HW_ACCESSIBLE flag to indicate hardware is 
> accessible
> and initiates port status poll.
>
> - suspend hook prevents suspend
>
> With faux device since there is no suspend and resume hook, I would 
> expect
> these hooks are not a factor in suspend and resume.
>
> vhci_hcd is a special case virtual driver as it is a proxy for 
> controlling
> hardware on the host.
>
> Zongmin,
>
> Do suspend/resume work when vhci_hcd is not loaded?
> What happens when when system suspends and resumes with faux device?
> Can you send me dmesg logs and pm logs?
>
Hi Greg,shuah

Yes, system with vhci_hcd unload or just load vhci_hcd driver
without usbip devices bound to vhci_hcd,system suspend/resume worked well.
Some logs for you.
1.system with vhci_hcd driver load,but don't bound any usbip devices to 
vhci_hcd,suspend/resume worked well.
see dmesg-faux bus-load.log

2.usbip device bound to vhci_hcd,and do system suspend 
action,suspend/resume worked failed.
I observed two distinct failure scenario:
Scenario 1: System failed to enter suspend state,and will auto resume;
the log for use platform bus:
dmesg-platform bus-device bound-auto resume.log
the log for use faux bus:
dmesg-faux bus-device bound-auto resume.log

Scenario 2: System resume failed with black screen freeze,a forced 
restart of the machine is require.
the log for use platform bus:
dmesg-platform bus-device bound-black screen.log
the log for use faux bus:
dmesg-faux bus-device bound-black screen.log

Hope these message is helpful.

> thanks,
> -- Shuah
>
>
>

[-- Attachment #2: dmesg-faux bus-device bound-auto resume.log --]
[-- Type: text/x-log, Size: 180277 bytes --]

[    0.000000] Linux version 6.15.0-rc5+ (root@standardpc) (gcc (Ubuntu 9.3.0-10kylin2) 9.3.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #10 SMP PREEMPT_DYNAMIC Fri Jun 20 13:38:04 CST 2025
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-6.15.0-rc5+ root=UUID=3516f70c-4dd9-4b0f-bac4-c41778d09bbb ro quiet splash console=ttyS0 loglevel=7 initcall_debug no_console_suspend ignore_loglevel crashkernel=512M-:192M audit=0 security=kysec
[    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] 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-0x00000000bffdefff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bffdf000-0x00000000bfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable
[    0.000000] printk: debug: ignoring loglevel setting.
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] SMBIOS 2.8 present.
[    0.000000] DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.14.0-0-g155821a1990b-prebuilt.qemu.org 04/01/2014
[    0.000000] DMI: Memory slots populated: 1/1
[    0.000000] Hypervisor detected: KVM
[    0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[    0.000000] kvm-clock: using sched offset of 11928495494 cycles
[    0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    0.000005] tsc: Detected 2803.200 MHz processor
[    0.000618] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000620] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000624] last_pfn = 0x240000 max_arch_pfn = 0x400000000
[    0.000657] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs
[    0.000659] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000699] last_pfn = 0xbffdf max_arch_pfn = 0x400000000
[    0.004692] found SMP MP-table at [mem 0x000f5a40-0x000f5a4f]
[    0.004703] Using GB pages for direct mapping
[    0.005094] RAMDISK: [mem 0x2f169000-0x338abfff]
[    0.005098] ACPI: Early table checksum verification disabled
[    0.005102] ACPI: RSDP 0x00000000000F5A00 000014 (v00 BOCHS )
[    0.005106] ACPI: RSDT 0x00000000BFFE1639 000030 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.005111] ACPI: FACP 0x00000000BFFE150D 000074 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.005115] ACPI: DSDT 0x00000000BFFDFD80 00178D (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.005118] ACPI: FACS 0x00000000BFFDFD40 000040
[    0.005119] ACPI: APIC 0x00000000BFFE1581 000090 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.005121] ACPI: WAET 0x00000000BFFE1611 000028 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.005123] ACPI: Reserving FACP table memory at [mem 0xbffe150d-0xbffe1580]
[    0.005124] ACPI: Reserving DSDT table memory at [mem 0xbffdfd80-0xbffe150c]
[    0.005124] ACPI: Reserving FACS table memory at [mem 0xbffdfd40-0xbffdfd7f]
[    0.005125] ACPI: Reserving APIC table memory at [mem 0xbffe1581-0xbffe1610]
[    0.005125] ACPI: Reserving WAET table memory at [mem 0xbffe1611-0xbffe1638]
[    0.005330] No NUMA configuration found
[    0.005331] Faking a node at [mem 0x0000000000000000-0x000000023fffffff]
[    0.005336] NODE_DATA(0) allocated [mem 0x23ffd39c0-0x23fffdfff]
[    0.005507] crashkernel reserved: 0x00000000b3000000 - 0x00000000bf000000 (192 MB)
[    0.005519] Zone ranges:
[    0.005520]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.005521]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.005522]   Normal   [mem 0x0000000100000000-0x000000023fffffff]
[    0.005523]   Device   empty
[    0.005523] Movable zone start for each node
[    0.005525] Early memory node ranges
[    0.005525]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.005526]   node   0: [mem 0x0000000000100000-0x00000000bffdefff]
[    0.005527]   node   0: [mem 0x0000000100000000-0x000000023fffffff]
[    0.005528] Initmem setup node 0 [mem 0x0000000000001000-0x000000023fffffff]
[    0.005811] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.005820] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.024938] On node 0, zone Normal: 33 pages in unavailable ranges
[    0.025199] ACPI: PM-Timer IO Port: 0x608
[    0.025212] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[    0.025240] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
[    0.025242] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.025243] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
[    0.025244] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.025245] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
[    0.025245] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
[    0.025248] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.025249] TSC deadline timer available
[    0.025252] CPU topo: Max. logical packages:   4
[    0.025252] CPU topo: Max. logical dies:       4
[    0.025252] CPU topo: Max. dies per package:   1
[    0.025255] CPU topo: Max. threads per core:   1
[    0.025255] CPU topo: Num. cores per package:     1
[    0.025256] CPU topo: Num. threads per package:   1
[    0.025256] CPU topo: Allowing 4 present CPUs plus 0 hotplug CPUs
[    0.025272] kvm-guest: APIC: eoi() replaced with kvm_guest_apic_eoi_write()
[    0.025284] kvm-guest: KVM setup pv remote TLB flush
[    0.025287] kvm-guest: setup PV sched yield
[    0.025293] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.025294] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[    0.025294] PM: hibernation: Registered nosave memory: [mem 0xbffdf000-0xffffffff]
[    0.025296] [mem 0xc0000000-0xfeffbfff] available for PCI devices
[    0.025296] Booting paravirtualized kernel on KVM
[    0.025298] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.025302] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.025637] percpu: Embedded 61 pages/cpu s212992 r8192 d28672 u524288
[    0.025640] pcpu-alloc: s212992 r8192 d28672 u524288 alloc=1*2097152
[    0.025642] pcpu-alloc: [0] 0 1 2 3 
[    0.025667] kvm-guest: PV spinlocks enabled
[    0.025669] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear)
[    0.025671] Kernel command line: BOOT_IMAGE=/vmlinuz-6.15.0-rc5+ root=UUID=3516f70c-4dd9-4b0f-bac4-c41778d09bbb ro quiet splash console=ttyS0 loglevel=7 initcall_debug no_console_suspend ignore_loglevel crashkernel=512M-:192M audit=0 security=kysec
[    0.025768] audit: disabled (until reboot)
[    0.025777] Unknown kernel command line parameters "splash BOOT_IMAGE=/vmlinuz-6.15.0-rc5+", will be passed to user space.
[    0.025788] random: crng init done
[    0.025789] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    0.026961] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.027593] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.027662] software IO TLB: area num 4.
[    0.042154] Fallback order for Node 0: 0 
[    0.042159] Built 1 zonelists, mobility grouping on.  Total pages: 2097021
[    0.042160] Policy zone: Normal
[    0.042162] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.053326] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.059926] ftrace: allocating 54134 entries in 212 pages
[    0.059928] ftrace: allocated 212 pages with 4 groups
[    0.060597] Dynamic Preempt: voluntary
[    0.060827] rcu: Preemptible hierarchical RCU implementation.
[    0.060827] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[    0.060828] 	Trampoline variant of Tasks RCU enabled.
[    0.060829] 	Rude variant of Tasks RCU enabled.
[    0.060829] 	Tracing variant of Tasks RCU enabled.
[    0.060829] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.060830] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.060834] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.060836] RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.060836] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.063639] NR_IRQS: 524544, nr_irqs: 456, preallocated irqs: 16
[    0.063825] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.063868] calling  con_init+0x0/0x270 @ 0
[    0.063878] Console: colour dummy device 80x25
[    0.063880] initcall con_init+0x0/0x270 returned 0 after 0 usecs
[    0.063881] calling  hvc_console_init+0x0/0x30 @ 0
[    0.063883] initcall hvc_console_init+0x0/0x30 returned 0 after 0 usecs
[    0.063884] calling  xen_cons_init+0x0/0x60 @ 0
[    0.063887] initcall xen_cons_init+0x0/0x60 returned 0 after 0 usecs
[    0.063888] calling  univ8250_console_init+0x0/0x40 @ 0
[    0.063929] printk: legacy console [ttyS0] enabled
[    0.137328] initcall univ8250_console_init+0x0/0x40 returned 0 after 0 usecs
[    0.138009] calling  kgdboc_earlycon_late_init+0x0/0x40 @ 0
[    0.138528] initcall kgdboc_earlycon_late_init+0x0/0x40 returned 0 after 0 usecs
[    0.139201] ACPI: Core revision 20240827
[    0.139651] APIC: Switch to symmetric I/O mode setup
[    0.140334] x2apic enabled
[    0.140825] APIC: Switched APIC routing to: physical x2apic
[    0.141353] kvm-guest: APIC: send_IPI_mask() replaced with kvm_send_ipi_mask()
[    0.141954] kvm-guest: APIC: send_IPI_mask_allbutself() replaced with kvm_send_ipi_mask_allbutself()
[    0.142772] kvm-guest: setup PV IPIs
[    0.143782] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x28680fa287f, max_idle_ns: 440795281151 ns
[    0.144743] Calibrating delay loop (skipped) preset value.. 5606.40 BogoMIPS (lpj=11212800)
[    0.145608] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.146199] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.146629] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.147111] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.147777] Spectre V2 : Spectre BHI mitigation: SW BHB clearing on syscall and VM exit
[    0.148348] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[    0.148739] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[    0.148739] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.148739] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.148739] GDS: Unknown: Dependent on hypervisor status
[    0.148739] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.148739] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.148739] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.148739] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    0.148739] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.148739] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    0.148739] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.148739] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.148739] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
[    0.148739] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    0.148739] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    0.148739] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    0.148739] x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
[    0.148739] Freeing SMP alternatives memory: 44K
[    0.148739] pid_max: default: 32768 minimum: 301
[    0.148739] LSM: initializing lsm=capability,ima,evm
[    0.148739] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.148739] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.148739] smpboot: CPU0: 11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz (family: 0x6, model: 0x8c, stepping: 0x1)
[    0.148739] calling  init_hw_perf_events+0x0/0x720 @ 1
[    0.148739] Performance Events: Icelake events, full-width counters, Intel PMU driver.
[    0.148739] ... version:                2
[    0.148739] ... bit width:              48
[    0.148739] ... generic registers:      8
[    0.148739] ... value mask:             0000ffffffffffff
[    0.148739] ... max period:             00007fffffffffff
[    0.148739] ... fixed-purpose events:   3
[    0.148744] ... event mask:             00000007000000ff
[    0.149209] initcall init_hw_perf_events+0x0/0x720 returned 0 after 4000 usecs
[    0.149803] calling  mc_debug_enable+0x0/0xa0 @ 1
[    0.150251] initcall mc_debug_enable+0x0/0xa0 returned 0 after 0 usecs
[    0.150838] calling  do_init_real_mode+0x0/0x20 @ 1
[    0.151228] initcall do_init_real_mode+0x0/0x20 returned 0 after 0 usecs
[    0.151731] calling  init_sigframe_size+0x0/0x50 @ 1
[    0.152114] signal: max sigframe size: 3632
[    0.152445] initcall init_sigframe_size+0x0/0x50 returned 0 after 0 usecs
[    0.152742] calling  trace_init_perf_perm_irq_work_exit+0x0/0x20 @ 1
[    0.153221] initcall trace_init_perf_perm_irq_work_exit+0x0/0x20 returned 0 after 0 usecs
[    0.153826] calling  cache_ap_register+0x0/0x70 @ 1
[    0.154213] initcall cache_ap_register+0x0/0x70 returned 0 after 0 usecs
[    0.154714] calling  bp_init_aperfmperf+0x0/0x2c0 @ 1
[    0.155100] initcall bp_init_aperfmperf+0x0/0x2c0 returned 0 after 0 usecs
[    0.155606] calling  save_builtin_microcode+0x0/0xe0 @ 1
[    0.156009] initcall save_builtin_microcode+0x0/0xe0 returned 0 after 0 usecs
[    0.156533] calling  save_microcode_in_initrd+0x0/0x110 @ 1
[    0.156743] initcall save_microcode_in_initrd+0x0/0x110 returned 0 after 0 usecs
[    0.157285] calling  register_nmi_cpu_backtrace_handler+0x0/0x30 @ 1
[    0.157794] initcall register_nmi_cpu_backtrace_handler+0x0/0x30 returned 0 after 0 usecs
[    0.158392] calling  numachip_system_init+0x0/0x80 @ 1
[    0.158792] initcall numachip_system_init+0x0/0x80 returned 0 after 0 usecs
[    0.159303] calling  kvm_setup_vsyscall_timeinfo+0x0/0x190 @ 1
[    0.159745] initcall kvm_setup_vsyscall_timeinfo+0x0/0x190 returned 0 after 0 usecs
[    0.160307] calling  spawn_ksoftirqd+0x0/0x60 @ 1
[    0.160745] initcall spawn_ksoftirqd+0x0/0x60 returned 0 after 4000 usecs
[    0.161247] calling  init_signal_sysctls+0x0/0x40 @ 1
[    0.161656] initcall init_signal_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.162163] calling  init_umh_sysctls+0x0/0x40 @ 1
[    0.162536] initcall init_umh_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.163025] calling  kthreads_init+0x0/0x40 @ 1
[    0.163381] initcall kthreads_init+0x0/0x40 returned 0 after 0 usecs
[    0.163854] calling  migration_init+0x0/0x40 @ 1
[    0.164212] initcall migration_init+0x0/0x40 returned 0 after 0 usecs
[    0.164699] calling  printk_set_kthreads_ready+0x0/0x50 @ 1
[    0.164744] initcall printk_set_kthreads_ready+0x0/0x50 returned 0 after 0 usecs
[    0.165287] calling  srcu_bootup_announce+0x0/0x90 @ 1
[    0.165678] rcu: Hierarchical SRCU implementation.
[    0.166047] rcu: 	Max phase no-delay instances is 1000.
[    0.166442] initcall srcu_bootup_announce+0x0/0x90 returned 0 after 0 usecs
[    0.166951] calling  rcu_spawn_gp_kthread+0x0/0x260 @ 1
[    0.168755] initcall rcu_spawn_gp_kthread+0x0/0x260 returned 0 after 4000 usecs
[    0.169316] calling  check_cpu_stall_init+0x0/0x30 @ 1
[    0.169710] initcall check_cpu_stall_init+0x0/0x30 returned 0 after 0 usecs
[    0.170223] calling  rcu_sysrq_init+0x0/0x40 @ 1
[    0.170580] initcall rcu_sysrq_init+0x0/0x40 returned 0 after 0 usecs
[    0.171061] calling  trace_init_flags_sys_enter+0x0/0x20 @ 1
[    0.171485] initcall trace_init_flags_sys_enter+0x0/0x20 returned 0 after 0 usecs
[    0.172031] calling  trace_init_flags_sys_exit+0x0/0x20 @ 1
[    0.172450] initcall trace_init_flags_sys_exit+0x0/0x20 returned 0 after 0 usecs
[    0.172745] calling  tmigr_init+0x0/0x190 @ 1
[    0.173094] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[    0.173683] initcall tmigr_init+0x0/0x190 returned 0 after 0 usecs
[    0.174156] calling  cpu_stop_init+0x0/0xa0 @ 1
[    0.176746] initcall cpu_stop_init+0x0/0xa0 returned 0 after 4000 usecs
[    0.177671] calling  init_kprobes+0x0/0x1e0 @ 1
[    0.178119] initcall init_kprobes+0x0/0x1e0 returned 0 after 0 usecs
[    0.178611] calling  init_trace_printk+0x0/0x20 @ 1
[    0.178991] initcall init_trace_printk+0x0/0x20 returned 0 after 0 usecs
[    0.179495] calling  event_trace_enable_again+0x0/0x60 @ 1
[    0.179914] initcall event_trace_enable_again+0x0/0x60 returned 0 after 0 usecs
[    0.180458] calling  irq_work_init_threads+0x0/0x10 @ 1
[    0.180742] initcall irq_work_init_threads+0x0/0x10 returned 0 after 0 usecs
[    0.181279] calling  static_call_init+0x0/0xe0 @ 1
[    0.181651] initcall static_call_init+0x0/0xe0 returned 0 after 0 usecs
[    0.182147] calling  jump_label_init_module+0x0/0x20 @ 1
[    0.182561] initcall jump_label_init_module+0x0/0x20 returned 0 after 0 usecs
[    0.183205] calling  init_zero_pfn+0x0/0x50 @ 1
[    0.183747] initcall init_zero_pfn+0x0/0x50 returned 0 after 0 usecs
[    0.184501] calling  init_fs_inode_sysctls+0x0/0x40 @ 1
[    0.184745] initcall init_fs_inode_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.185552] calling  init_fs_locks_sysctls+0x0/0x40 @ 1
[    0.186176] initcall init_fs_locks_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.186996] calling  init_fs_sysctls+0x0/0x40 @ 1
[    0.187551] initcall init_fs_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.188318] calling  init_security_keys_sysctls+0x0/0x40 @ 1
[    0.188747] initcall init_security_keys_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.189608] calling  dynamic_debug_init+0x0/0x2b0 @ 1
[    0.190270] initcall dynamic_debug_init+0x0/0x2b0 returned 0 after 0 usecs
[    0.191060] calling  unpopulated_init+0x0/0x70 @ 1
[    0.191644] initcall unpopulated_init+0x0/0x70 returned -19 after 0 usecs
[    0.192454] calling  efi_memreserve_root_init+0x0/0x40 @ 1
[    0.192742] initcall efi_memreserve_root_init+0x0/0x40 returned 0 after 0 usecs
[    0.193575] calling  efi_earlycon_remap_fb+0x0/0x70 @ 1
[    0.194203] initcall efi_earlycon_remap_fb+0x0/0x70 returned 0 after 0 usecs
[    0.195009] calling  idle_inject_init+0x0/0x20 @ 1
[    0.196745] initcall idle_inject_init+0x0/0x20 returned 0 after 4000 usecs
[    0.197877] smp: Bringing up secondary CPUs ...
[    0.198517] smpboot: x86: Booting SMP configuration:
[    0.199120] .... node  #0, CPUs:      #1 #2 #3
[    0.208993] smp: Brought up 1 node, 4 CPUs
[    0.209945] smpboot: Total of 4 processors activated (22425.60 BogoMIPS)
[    0.211033] Memory: 7857056K/8388084K available (17883K kernel code, 5975K rwdata, 7752K rodata, 4692K init, 5544K bss, 524132K reserved, 0K cma-reserved)
[    0.213035] devtmpfs: initialized
[    0.213203] x86/mm: Memory block size: 128MB
[    0.214557] calling  setup_split_lock_delayed_work+0x0/0xa0 @ 1
[    0.215245] initcall setup_split_lock_delayed_work+0x0/0xa0 returned 0 after 0 usecs
[    0.216744] calling  bpf_jit_charge_init+0x0/0x50 @ 1
[    0.217366] initcall bpf_jit_charge_init+0x0/0x50 returned 0 after 0 usecs
[    0.218164] calling  ipc_ns_init+0x0/0x50 @ 1
[    0.218706] initcall ipc_ns_init+0x0/0x50 returned 0 after 0 usecs
[    0.219433] calling  init_mmap_min_addr+0x0/0x50 @ 1
[    0.220016] initcall init_mmap_min_addr+0x0/0x50 returned 0 after 0 usecs
[    0.220743] calling  pci_realloc_setup_params+0x0/0x90 @ 1
[    0.221393] initcall pci_realloc_setup_params+0x0/0x90 returned 0 after 0 usecs
[    0.222213] calling  inet_frag_wq_init+0x0/0x50 @ 1
[    0.222829] initcall inet_frag_wq_init+0x0/0x50 returned 0 after 0 usecs
[    0.222829] calling  xen_pvh_gnttab_setup+0x0/0x50 @ 1
[    0.222829] initcall xen_pvh_gnttab_setup+0x0/0x50 returned -19 after 0 usecs
[    0.224745] calling  e820__register_nvs_regions+0x0/0x70 @ 1
[    0.225408] initcall e820__register_nvs_regions+0x0/0x70 returned 0 after 0 usecs
[    0.226260] calling  cpufreq_register_tsc_scaling+0x0/0x40 @ 1
[    0.226950] initcall cpufreq_register_tsc_scaling+0x0/0x40 returned 0 after 0 usecs
[    0.227835] calling  reboot_init+0x0/0x60 @ 1
[    0.228370] initcall reboot_init+0x0/0x60 returned 0 after 0 usecs
[    0.228743] calling  init_lapic_sysfs+0x0/0x40 @ 1
[    0.229340] initcall init_lapic_sysfs+0x0/0x40 returned 0 after 0 usecs
[    0.230115] calling  alloc_frozen_cpus+0x0/0x30 @ 1
[    0.230711] initcall alloc_frozen_cpus+0x0/0x30 returned 0 after 0 usecs
[    0.231513] calling  cpu_hotplug_pm_sync_init+0x0/0x30 @ 1
[    0.232169] initcall cpu_hotplug_pm_sync_init+0x0/0x30 returned 0 after 0 usecs
[    0.232742] calling  wq_sysfs_init+0x0/0x30 @ 1
[    0.233316] initcall wq_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[    0.234038] calling  ksysfs_init+0x0/0xd0 @ 1
[    0.234584] initcall ksysfs_init+0x0/0xd0 returned 0 after 0 usecs
[    0.235308] calling  schedutil_gov_init+0x0/0x20 @ 1
[    0.235911] initcall schedutil_gov_init+0x0/0x20 returned 0 after 0 usecs
[    0.236680] calling  pm_init+0x0/0x90 @ 1
[    0.236761] initcall pm_init+0x0/0x90 returned 0 after 0 usecs
[    0.237437] calling  pm_disk_init+0x0/0x30 @ 1
[    0.237988] initcall pm_disk_init+0x0/0x30 returned 0 after 0 usecs
[    0.238747] calling  swsusp_header_init+0x0/0x40 @ 1
[    0.239347] initcall swsusp_header_init+0x0/0x40 returned 0 after 0 usecs
[    0.240163] calling  rcu_set_runtime_mode+0x0/0x30 @ 1
[    0.240743] initcall rcu_set_runtime_mode+0x0/0x30 returned 0 after 0 usecs
[    0.241553] calling  rcu_init_tasks_generic+0x0/0x100 @ 1
[    0.242222] initcall rcu_init_tasks_generic+0x0/0x100 returned 0 after 0 usecs
[    0.242222] calling  init_jiffies_clocksource+0x0/0x30 @ 1
[    0.242636] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.244744] initcall init_jiffies_clocksource+0x0/0x30 returned 0 after 4000 usecs
[    0.245604] calling  posixtimer_init+0x0/0xd0 @ 1
[    0.246170] posixtimers hash table entries: 2048 (order: 3, 32768 bytes, linear)
[    0.247226] initcall posixtimer_init+0x0/0xd0 returned 0 after 0 usecs
[    0.248008] calling  futex_init+0x0/0xe0 @ 1
[    0.248552] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.248750] initcall futex_init+0x0/0xe0 returned 0 after 4000 usecs
[    0.249489] calling  cgroup_wq_init+0x0/0x40 @ 1
[    0.250057] initcall cgroup_wq_init+0x0/0x40 returned 0 after 0 usecs
[    0.250806] calling  cgroup1_wq_init+0x0/0x40 @ 1
[    0.251377] initcall cgroup1_wq_init+0x0/0x40 returned 0 after 0 usecs
[    0.252112] calling  ftrace_mod_cmd_init+0x0/0x20 @ 1
[    0.252718] initcall ftrace_mod_cmd_init+0x0/0x20 returned 0 after 0 usecs
[    0.252742] calling  init_wakeup_tracer+0x0/0x40 @ 1
[    0.253349] initcall init_wakeup_tracer+0x0/0x40 returned 0 after 0 usecs
[    0.254128] calling  init_graph_trace+0x0/0x70 @ 1
[    0.254710] initcall init_graph_trace+0x0/0x70 returned 0 after 0 usecs
[    0.255471] calling  trace_events_eprobe_init_early+0x0/0x40 @ 1
[    0.256177] initcall trace_events_eprobe_init_early+0x0/0x40 returned 0 after 0 usecs
[    0.256742] calling  trace_events_synth_init_early+0x0/0x40 @ 1
[    0.257435] initcall trace_events_synth_init_early+0x0/0x40 returned 0 after 0 usecs
[    0.258313] calling  init_kprobe_trace_early+0x0/0x40 @ 1
[    0.258969] initcall init_kprobe_trace_early+0x0/0x40 returned 0 after 0 usecs
[    0.259808] calling  bpf_offload_init+0x0/0x30 @ 1
[    0.260392] initcall bpf_offload_init+0x0/0x30 returned 0 after 0 usecs
[    0.260742] calling  cgroup_bpf_wq_init+0x0/0x40 @ 1
[    0.261360] initcall cgroup_bpf_wq_init+0x0/0x40 returned 0 after 0 usecs
[    0.262149] calling  init_events_core_sysctls+0x0/0x40 @ 1
[    0.262805] initcall init_events_core_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.263641] calling  init_callchain_sysctls+0x0/0x40 @ 1
[    0.264277] initcall init_callchain_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.264742] calling  memory_failure_init+0x0/0xd0 @ 1
[    0.265356] initcall memory_failure_init+0x0/0xd0 returned 0 after 0 usecs
[    0.266159] calling  cma_init_reserved_areas+0x0/0x280 @ 1
[    0.266796] initcall cma_init_reserved_areas+0x0/0x280 returned 0 after 0 usecs
[    0.267634] calling  fsnotify_init+0x0/0xa0 @ 1
[    0.268212] initcall fsnotify_init+0x0/0xa0 returned 0 after 0 usecs
[    0.268745] calling  filelock_init+0x0/0x160 @ 1
[    0.269308] initcall filelock_init+0x0/0x160 returned 0 after 0 usecs
[    0.270382] calling  init_script_binfmt+0x0/0x30 @ 1
[    0.270989] initcall init_script_binfmt+0x0/0x30 returned 0 after 0 usecs
[    0.271627] calling  init_elf_binfmt+0x0/0x30 @ 1
[    0.271995] initcall init_elf_binfmt+0x0/0x30 returned 0 after 0 usecs
[    0.272480] calling  init_compat_elf_binfmt+0x0/0x30 @ 1
[    0.272742] initcall init_compat_elf_binfmt+0x0/0x30 returned 0 after 0 usecs
[    0.273271] calling  configfs_init+0x0/0x100 @ 1
[    0.273639] initcall configfs_init+0x0/0x100 returned 0 after 0 usecs
[    0.274128] calling  debugfs_init+0x0/0x110 @ 1
[    0.274538] initcall debugfs_init+0x0/0x110 returned 0 after 0 usecs
[    0.275114] calling  tracefs_init+0x0/0xc0 @ 1
[    0.275542] initcall tracefs_init+0x0/0xc0 returned 0 after 0 usecs
[    0.276110] calling  securityfs_init+0x0/0x90 @ 1
[    0.276496] initcall securityfs_init+0x0/0x90 returned 0 after 0 usecs
[    0.276742] calling  pinctrl_init+0x0/0xd0 @ 1
[    0.277162] pinctrl core: initialized pinctrl subsystem
[    0.277656] initcall pinctrl_init+0x0/0xd0 returned 0 after 0 usecs
[    0.278223] calling  gpiolib_dev_init+0x0/0x170 @ 1
[    0.278690] initcall gpiolib_dev_init+0x0/0x170 returned 0 after 0 usecs
[    0.279297] calling  virtio_init+0x0/0x40 @ 1
[    0.279714] initcall virtio_init+0x0/0x40 returned 0 after 0 usecs
[    0.280276] calling  regulator_init+0x0/0xc0 @ 1
[    0.280757] probe of reg-dummy returned 0 after 4000 usecs
[    0.281263] initcall regulator_init+0x0/0xc0 returned 0 after 4000 usecs
[    0.281865] calling  iommu_init+0x0/0x40 @ 1
[    0.282273] initcall iommu_init+0x0/0x40 returned 0 after 0 usecs
[    0.282826] calling  component_debug_init+0x0/0x30 @ 1
[    0.283310] initcall component_debug_init+0x0/0x30 returned 0 after 0 usecs
[    0.283934] calling  early_resume_init+0x0/0xe0 @ 1
[    0.284423] PM: RTC time: 06:25:49, date: 2025-06-23
[    0.284741] initcall early_resume_init+0x0/0xe0 returned 0 after 4000 usecs
[    0.285367] calling  opp_debug_init+0x0/0x30 @ 1
[    0.285756] initcall opp_debug_init+0x0/0x30 returned 0 after 0 usecs
[    0.286235] calling  cpufreq_core_init+0x0/0x110 @ 1
[    0.286620] initcall cpufreq_core_init+0x0/0x110 returned 0 after 0 usecs
[    0.287137] calling  cpufreq_gov_performance_init+0x0/0x20 @ 1
[    0.287672] initcall cpufreq_gov_performance_init+0x0/0x20 returned 0 after 0 usecs
[    0.288352] calling  cpufreq_gov_powersave_init+0x0/0x20 @ 1
[    0.288741] initcall cpufreq_gov_powersave_init+0x0/0x20 returned 0 after 0 usecs
[    0.289407] calling  cpufreq_gov_userspace_init+0x0/0x20 @ 1
[    0.289925] initcall cpufreq_gov_userspace_init+0x0/0x20 returned 0 after 0 usecs
[    0.290598] calling  CPU_FREQ_GOV_ONDEMAND_init+0x0/0x20 @ 1
[    0.291116] initcall CPU_FREQ_GOV_ONDEMAND_init+0x0/0x20 returned 0 after 0 usecs
[    0.291786] calling  CPU_FREQ_GOV_CONSERVATIVE_init+0x0/0x20 @ 1
[    0.292336] initcall CPU_FREQ_GOV_CONSERVATIVE_init+0x0/0x20 returned 0 after 0 usecs
[    0.292742] calling  cpuidle_init+0x0/0x30 @ 1
[    0.293165] initcall cpuidle_init+0x0/0x30 returned 0 after 0 usecs
[    0.293733] calling  capsule_reboot_register+0x0/0x20 @ 1
[    0.294230] initcall capsule_reboot_register+0x0/0x20 returned 0 after 0 usecs
[    0.294879] calling  unaccepted_memory_init_kdump+0x0/0x30 @ 1
[    0.295411] initcall unaccepted_memory_init_kdump+0x0/0x30 returned 0 after 0 usecs
[    0.296092] calling  sock_init+0x0/0x100 @ 1
[    0.296908] initcall sock_init+0x0/0x100 returned 0 after 4000 usecs
[    0.297498] calling  net_inuse_init+0x0/0x40 @ 1
[    0.297936] initcall net_inuse_init+0x0/0x40 returned 0 after 0 usecs
[    0.298854] calling  sock_struct_check+0x0/0x20 @ 1
[    0.299240] initcall sock_struct_check+0x0/0x20 returned 0 after 0 usecs
[    0.299746] calling  init_default_flow_dissectors+0x0/0x60 @ 1
[    0.300193] initcall init_default_flow_dissectors+0x0/0x60 returned 0 after 0 usecs
[    0.300741] calling  netlink_proto_init+0x0/0x170 @ 1
[    0.301140] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.301687] initcall netlink_proto_init+0x0/0x170 returned 0 after 0 usecs
[    0.302311] calling  genl_init+0x0/0x50 @ 1
[    0.302714] initcall genl_init+0x0/0x50 returned 0 after 0 usecs
[    0.303172] calling  bsp_pm_check_init+0x0/0x30 @ 1
[    0.303550] initcall bsp_pm_check_init+0x0/0x30 returned 0 after 0 usecs
[    0.304051] calling  __gnttab_init+0x0/0x50 @ 1
[    0.304407] initcall __gnttab_init+0x0/0x50 returned -19 after 0 usecs
[    0.304788] calling  irq_sysfs_init+0x0/0xc0 @ 1
[    0.305194] initcall irq_sysfs_init+0x0/0xc0 returned 0 after 0 usecs
[    0.305677] calling  dma_atomic_pool_init+0x0/0x170 @ 1
[    0.306088] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[    0.306637] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.307216] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.307805] initcall dma_atomic_pool_init+0x0/0x170 returned 0 after 0 usecs
[    0.308435] calling  audit_init+0x0/0x1d0 @ 1
[    0.308741] initcall audit_init+0x0/0x1d0 returned 0 after 0 usecs
[    0.309302] calling  bdi_class_init+0x0/0x50 @ 1
[    0.309724] initcall bdi_class_init+0x0/0x50 returned 0 after 0 usecs
[    0.310342] calling  mm_sysfs_init+0x0/0x40 @ 1
[    0.310708] initcall mm_sysfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.311184] calling  init_per_zone_wmark_min+0x0/0x40 @ 1
[    0.311601] initcall init_per_zone_wmark_min+0x0/0x40 returned 0 after 0 usecs
[    0.312133] calling  gpiolib_sysfs_init+0x0/0x40 @ 1
[    0.312650] initcall gpiolib_sysfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.312746] calling  acpi_gpio_setup_params+0x0/0xe0 @ 1
[    0.313319] initcall acpi_gpio_setup_params+0x0/0xe0 returned 0 after 0 usecs
[    0.314081] calling  pcibus_class_init+0x0/0x20 @ 1
[    0.314586] initcall pcibus_class_init+0x0/0x20 returned 0 after 0 usecs
[    0.315154] calling  pci_driver_init+0x0/0x40 @ 1
[    0.315547] initcall pci_driver_init+0x0/0x40 returned 0 after 0 usecs
[    0.316035] calling  rio_bus_init+0x0/0x50 @ 1
[    0.316388] initcall rio_bus_init+0x0/0x50 returned 0 after 0 usecs
[    0.316743] calling  backlight_class_init+0x0/0x80 @ 1
[    0.317163] initcall backlight_class_init+0x0/0x80 returned 0 after 0 usecs
[    0.317717] calling  xenbus_init+0x0/0x680 @ 1
[    0.318071] initcall xenbus_init+0x0/0x680 returned -19 after 0 usecs
[    0.318568] calling  tty_class_init+0x0/0x20 @ 1
[    0.318938] initcall tty_class_init+0x0/0x20 returned 0 after 0 usecs
[    0.319421] calling  vtconsole_class_init+0x0/0xc0 @ 1
[    0.319840] initcall vtconsole_class_init+0x0/0xc0 returned 0 after 0 usecs
[    0.320363] calling  serdev_init+0x0/0x30 @ 1
[    0.320727] initcall serdev_init+0x0/0x30 returned 0 after 0 usecs
[    0.320745] calling  iommu_dev_init+0x0/0x20 @ 1
[    0.321123] initcall iommu_dev_init+0x0/0x20 returned 0 after 0 usecs
[    0.321615] calling  mipi_dsi_bus_init+0x0/0x20 @ 1
[    0.321999] initcall mipi_dsi_bus_init+0x0/0x20 returned 0 after 0 usecs
[    0.322507] calling  devlink_class_init+0x0/0x50 @ 1
[    0.322920] initcall devlink_class_init+0x0/0x50 returned 0 after 0 usecs
[    0.323433] calling  software_node_init+0x0/0x40 @ 1
[    0.323818] initcall software_node_init+0x0/0x40 returned 0 after 0 usecs
[    0.324333] calling  wakeup_sources_debugfs_init+0x0/0x40 @ 1
[    0.324748] initcall wakeup_sources_debugfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.325368] calling  wakeup_sources_sysfs_init+0x0/0x40 @ 1
[    0.325796] initcall wakeup_sources_sysfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.326337] calling  isa_bus_init+0x0/0x50 @ 1
[    0.327038] initcall isa_bus_init+0x0/0x50 returned 0 after 0 usecs
[    0.327519] calling  regmap_initcall+0x0/0x20 @ 1
[    0.327891] initcall regmap_initcall+0x0/0x20 returned 0 after 0 usecs
[    0.328386] calling  sram_init+0x0/0x30 @ 1
[    0.328729] initcall sram_init+0x0/0x30 returned 0 after 0 usecs
[    0.328742] calling  spi_init+0x0/0xd0 @ 1
[    0.329140] initcall spi_init+0x0/0xd0 returned 0 after 0 usecs
[    0.329946] calling  i2c_init+0x0/0xc0 @ 1
[    0.330313] initcall i2c_init+0x0/0xc0 returned 0 after 0 usecs
[    0.330763] calling  thermal_init+0x0/0x180 @ 1
[    0.331133] thermal_sys: Registered thermal governor 'fair_share'
[    0.331134] thermal_sys: Registered thermal governor 'bang_bang'
[    0.331595] thermal_sys: Registered thermal governor 'step_wise'
[    0.332055] thermal_sys: Registered thermal governor 'user_space'
[    0.332520] initcall thermal_init+0x0/0x180 returned 0 after 0 usecs
[    0.333226] calling  init_ladder+0x0/0x40 @ 1
[    0.333594] cpuidle: using governor ladder
[    0.333926] initcall init_ladder+0x0/0x40 returned 0 after 0 usecs
[    0.334397] calling  init_menu+0x0/0x20 @ 1
[    0.334731] cpuidle: using governor menu
[    0.335043] initcall init_menu+0x0/0x20 returned 0 after 0 usecs
[    0.335496] calling  teo_governor_init+0x0/0x20 @ 1
[    0.335912] initcall teo_governor_init+0x0/0x20 returned 0 after 0 usecs
[    0.336471] calling  init_haltpoll+0x0/0x40 @ 1
[    0.336742] initcall init_haltpoll+0x0/0x40 returned 0 after 0 usecs
[    0.337229] calling  pcc_init+0x0/0xb0 @ 1
[    0.337559] initcall pcc_init+0x0/0xb0 returned -19 after 0 usecs
[    0.338072] calling  amd_postcore_init+0x0/0x130 @ 1
[    0.338544] initcall amd_postcore_init+0x0/0x130 returned 0 after 0 usecs
[    0.339079] calling  kobject_uevent_init+0x0/0x20 @ 1
[    0.339502] initcall kobject_uevent_init+0x0/0x20 returned 0 after 0 usecs
[    0.340166] calling  report_snp_info+0x0/0xe0 @ 1
[    0.340540] initcall report_snp_info+0x0/0xe0 returned 0 after 0 usecs
[    0.340742] calling  sev_sysfs_init+0x0/0xa0 @ 1
[    0.341103] initcall sev_sysfs_init+0x0/0xa0 returned -19 after 0 usecs
[    0.341597] calling  bts_init+0x0/0x100 @ 1
[    0.341928] initcall bts_init+0x0/0x100 returned -19 after 0 usecs
[    0.342414] calling  pt_init+0x0/0x3b0 @ 1
[    0.342740] initcall pt_init+0x0/0x3b0 returned -19 after 0 usecs
[    0.343200] calling  init_x86_sysctl+0x0/0x40 @ 1
[    0.343582] initcall init_x86_sysctl+0x0/0x40 returned 0 after 0 usecs
[    0.344082] calling  boot_params_ksysfs_init+0x0/0x320 @ 1
[    0.344506] initcall boot_params_ksysfs_init+0x0/0x320 returned 0 after 0 usecs
[    0.344741] calling  sbf_init+0x0/0xf0 @ 1
[    0.345067] initcall sbf_init+0x0/0xf0 returned 0 after 0 usecs
[    0.345529] calling  arch_kdebugfs_init+0x0/0x30 @ 1
[    0.345951] initcall arch_kdebugfs_init+0x0/0x30 returned 0 after 0 usecs
[    0.346453] calling  xfd_update_static_branch+0x0/0x40 @ 1
[    0.346872] initcall xfd_update_static_branch+0x0/0x40 returned 0 after 0 usecs
[    0.347448] calling  mtrr_if_init+0x0/0x70 @ 1
[    0.347804] initcall mtrr_if_init+0x0/0x70 returned 0 after 0 usecs
[    0.348278] calling  activate_jump_labels+0x0/0x50 @ 1
[    0.348677] initcall activate_jump_labels+0x0/0x50 returned 0 after 0 usecs
[    0.348741] calling  init_s4_sigcheck+0x0/0x40 @ 1
[    0.349113] initcall init_s4_sigcheck+0x0/0x40 returned 0 after 0 usecs
[    0.349605] calling  ffh_cstate_init+0x0/0x50 @ 1
[    0.349974] initcall ffh_cstate_init+0x0/0x50 returned 0 after 0 usecs
[    0.350466] calling  kvm_alloc_cpumask+0x0/0xd0 @ 1
[    0.350844] initcall kvm_alloc_cpumask+0x0/0xd0 returned 0 after 0 usecs
[    0.351354] calling  activate_jump_labels+0x0/0x50 @ 1
[    0.351796] initcall activate_jump_labels+0x0/0x50 returned 0 after 0 usecs
[    0.352431] calling  gigantic_pages_init+0x0/0x40 @ 1
[    0.352749] initcall gigantic_pages_init+0x0/0x40 returned 0 after 0 usecs
[    0.353377] calling  uv_rtc_setup_clock+0x0/0x330 @ 1
[    0.353849] initcall uv_rtc_setup_clock+0x0/0x330 returned -19 after 0 usecs
[    0.354464] calling  kcmp_cookies_init+0x0/0x50 @ 1
[    0.355235] initcall kcmp_cookies_init+0x0/0x50 returned 0 after 0 usecs
[    0.355747] calling  cryptomgr_init+0x0/0x20 @ 1
[    0.356120] initcall cryptomgr_init+0x0/0x20 returned 0 after 0 usecs
[    0.356606] calling  crc32_x86_init+0x0/0x100 @ 1
[    0.356815] initcall crc32_x86_init+0x0/0x100 returned 0 after 0 usecs
[    0.357309] calling  crc64_x86_init+0x0/0x170 @ 1
[    0.357729] initcall crc64_x86_init+0x0/0x170 returned 0 after 0 usecs
[    0.358222] calling  crc_t10dif_x86_init+0x0/0xd0 @ 1
[    0.358683] initcall crc_t10dif_x86_init+0x0/0xd0 returned 0 after 0 usecs
[    0.359209] calling  acpi_pci_init+0x0/0x70 @ 1
[    0.359566] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.360045] initcall acpi_pci_init+0x0/0x70 returned 0 after 0 usecs
[    0.360522] calling  dma_channel_table_init+0x0/0x110 @ 1
[    0.360745] initcall dma_channel_table_init+0x0/0x110 returned 0 after 0 usecs
[    0.361284] calling  dma_bus_init+0x0/0x160 @ 1
[    0.361676] initcall dma_bus_init+0x0/0x160 returned 0 after 0 usecs
[    0.362181] calling  register_xen_pci_notifier+0x0/0x40 @ 1
[    0.362617] initcall register_xen_pci_notifier+0x0/0x40 returned 0 after 0 usecs
[    0.363168] calling  xen_pcpu_init+0x0/0xf0 @ 1
[    0.363528] initcall xen_pcpu_init+0x0/0xf0 returned -19 after 0 usecs
[    0.364012] calling  serial_base_init+0x0/0x70 @ 1
[    0.364414] initcall serial_base_init+0x0/0x70 returned 0 after 0 usecs
[    0.364741] calling  iommu_dma_init+0x0/0x30 @ 1
[    0.365112] initcall iommu_dma_init+0x0/0x30 returned 0 after 0 usecs
[    0.365595] calling  dmi_id_init+0x0/0x400 @ 1
[    0.365981] initcall dmi_id_init+0x0/0x400 returned 0 after 0 usecs
[    0.366460] calling  numachip_timer_init+0x0/0x70 @ 1
[    0.366851] initcall numachip_timer_init+0x0/0x70 returned -19 after 0 usecs
[    0.367375] calling  ts_dmi_init+0x0/0xf0 @ 1
[    0.367729] initcall ts_dmi_init+0x0/0xf0 returned 0 after 0 usecs
[    0.368355] calling  pci_arch_init+0x0/0xa0 @ 1
[    0.368778] PCI: Using configuration type 1 for base access
[    0.369211] initcall pci_arch_init+0x0/0xa0 returned 0 after 0 usecs
[    0.369754] calling  init_vdso_image_64+0x0/0x20 @ 1
[    0.370194] initcall init_vdso_image_64+0x0/0x20 returned 0 after 0 usecs
[    0.370713] calling  init_vdso_image_32+0x0/0x20 @ 1
[    0.371117] initcall init_vdso_image_32+0x0/0x20 returned 0 after 0 usecs
[    0.371632] calling  fixup_ht_bug+0x0/0xe0 @ 1
[    0.371983] initcall fixup_ht_bug+0x0/0xe0 returned 0 after 0 usecs
[    0.372456] calling  mtrr_init_finalize+0x0/0x40 @ 1
[    0.372743] initcall mtrr_init_finalize+0x0/0x40 returned 0 after 0 usecs
[    0.373250] calling  blake2s_mod_init+0x0/0x90 @ 1
[    0.373671] initcall blake2s_mod_init+0x0/0x90 returned 0 after 0 usecs
[    0.374181] calling  uid_cache_init+0x0/0x110 @ 1
[    0.374564] initcall uid_cache_init+0x0/0x110 returned 0 after 0 usecs
[    0.375062] calling  pid_namespace_sysctl_init+0x0/0x30 @ 1
[    0.375506] initcall pid_namespace_sysctl_init+0x0/0x30 returned 0 after 0 usecs
[    0.376057] calling  param_sysfs_init+0x0/0x60 @ 1
[    0.376433] initcall param_sysfs_init+0x0/0x60 returned 0 after 0 usecs
[    0.376741] calling  user_namespace_sysctl_init+0x0/0xf0 @ 1
[    0.377178] initcall user_namespace_sysctl_init+0x0/0xf0 returned 0 after 0 usecs
[    0.377754] calling  proc_schedstat_init+0x0/0x40 @ 1
[    0.378154] initcall proc_schedstat_init+0x0/0x40 returned 0 after 0 usecs
[    0.378666] calling  pm_sysrq_init+0x0/0x30 @ 1
[    0.379037] initcall pm_sysrq_init+0x0/0x30 returned 0 after 0 usecs
[    0.379513] calling  create_proc_profile+0x0/0x60 @ 1
[    0.379908] initcall create_proc_profile+0x0/0x60 returned 0 after 0 usecs
[    0.380432] calling  crash_save_vmcoreinfo_init+0x0/0x6b0 @ 1
[    0.380760] initcall crash_save_vmcoreinfo_init+0x0/0x6b0 returned 0 after 0 usecs
[    0.381323] calling  crash_notes_memory_init+0x0/0x50 @ 1
[    0.381748] initcall crash_notes_memory_init+0x0/0x50 returned 0 after 0 usecs
[    0.382356] calling  crash_hotplug_init+0x0/0x50 @ 1
[    0.382820] initcall crash_hotplug_init+0x0/0x50 returned 66 after 0 usecs
[    0.383357] calling  cgroup_sysfs_init+0x0/0x30 @ 1
[    0.384386] initcall cgroup_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[    0.384742] calling  user_namespaces_init+0x0/0x90 @ 1
[    0.385161] initcall user_namespaces_init+0x0/0x90 returned 0 after 0 usecs
[    0.385703] calling  init_optprobes+0x0/0x50 @ 1
[    0.386072] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.386774] initcall init_optprobes+0x0/0x50 returned 0 after 0 usecs
[    0.387278] calling  hung_task_init+0x0/0x90 @ 1
[    0.387692] initcall hung_task_init+0x0/0x90 returned 0 after 0 usecs
[    0.387692] calling  ftrace_check_for_weak_functions+0x0/0x70 @ 1
[    0.388756] initcall ftrace_check_for_weak_functions+0x0/0x70 returned 0 after 0 usecs
[    0.389699] calling  trace_eval_init+0x0/0xc0 @ 1
[    0.390316] initcall trace_eval_init+0x0/0xc0 returned 0 after 0 usecs
[    0.391092] calling  send_signal_irq_work_init+0x0/0x70 @ 1
[    0.391785] initcall send_signal_irq_work_init+0x0/0x70 returned 0 after 0 usecs
[    0.392670] calling  dev_map_init+0x0/0x30 @ 1
[    0.392765] initcall dev_map_init+0x0/0x30 returned 0 after 0 usecs
[    0.393530] calling  netns_bpf_init+0x0/0x20 @ 1
[    0.394112] initcall netns_bpf_init+0x0/0x20 returned 0 after 0 usecs
[    0.394882] calling  oom_init+0x0/0x60 @ 1
[    0.395422] initcall oom_init+0x0/0x60 returned 0 after 0 usecs
[    0.395422] calling  init_user_buckets+0x0/0x40 @ 1
[    0.396781] initcall init_user_buckets+0x0/0x40 returned 0 after 4000 usecs
[    0.397594] calling  init_vm_util_sysctls+0x0/0x40 @ 1
[    0.398233] initcall init_vm_util_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.399059] calling  default_bdi_init+0x0/0x40 @ 1
[    0.399684] initcall default_bdi_init+0x0/0x40 returned 0 after 0 usecs
[    0.399684] calling  cgwb_init+0x0/0x40 @ 1
[    0.400746] initcall cgwb_init+0x0/0x40 returned 0 after 0 usecs
[    0.401482] calling  percpu_enable_async+0x0/0x20 @ 1
[    0.402105] initcall percpu_enable_async+0x0/0x20 returned 0 after 0 usecs
[    0.402927] calling  kcompactd_init+0x0/0xa0 @ 1
[    0.403530] initcall kcompactd_init+0x0/0xa0 returned 0 after 0 usecs
[    0.403530] calling  init_user_reserve+0x0/0x50 @ 1
[    0.404743] initcall init_user_reserve+0x0/0x50 returned 0 after 0 usecs
[    0.405540] calling  init_admin_reserve+0x0/0x50 @ 1
[    0.406152] initcall init_admin_reserve+0x0/0x50 returned 0 after 0 usecs
[    0.406962] calling  init_reserve_notifier+0x0/0x40 @ 1
[    0.407601] initcall init_reserve_notifier+0x0/0x40 returned 0 after 0 usecs
[    0.408434] calling  swap_init_sysfs+0x0/0x90 @ 1
[    0.408747] initcall swap_init_sysfs+0x0/0x90 returned 0 after 0 usecs
[    0.409498] calling  swapfile_init+0x0/0xe0 @ 1
[    0.410055] initcall swapfile_init+0x0/0xe0 returned 0 after 0 usecs
[    0.410775] calling  hugetlb_init+0x0/0x610 @ 1
[    0.411308] HugeTLB: allocation took 0ms with hugepage_allocation_threads=1
[    0.412550] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.412743] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.413529] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.414334] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.415102] initcall hugetlb_init+0x0/0x610 returned 0 after 4000 usecs
[    0.415874] calling  ksm_init+0x0/0x260 @ 1
[    0.416438] initcall ksm_init+0x0/0x260 returned 0 after 0 usecs
[    0.416743] calling  memory_tier_init+0x0/0xe0 @ 1
[    0.417355] initcall memory_tier_init+0x0/0xe0 returned 0 after 0 usecs
[    0.418140] calling  numa_init_sysfs+0x0/0x90 @ 1
[    0.418735] initcall numa_init_sysfs+0x0/0x90 returned 0 after 0 usecs
[    0.419509] calling  hugepage_init+0x0/0x400 @ 1
[    0.420479] initcall hugepage_init+0x0/0x400 returned 0 after 0 usecs
[    0.420743] calling  mem_cgroup_init+0x0/0xb0 @ 1
[    0.421327] initcall mem_cgroup_init+0x0/0xb0 returned 0 after 0 usecs
[    0.422103] calling  mem_cgroup_swap_init+0x0/0x60 @ 1
[    0.422748] initcall mem_cgroup_swap_init+0x0/0x60 returned 0 after 0 usecs
[    0.423589] calling  page_idle_init+0x0/0x50 @ 1
[    0.424185] initcall page_idle_init+0x0/0x50 returned 0 after 0 usecs
[    0.424743] calling  init_msg_buckets+0x0/0x40 @ 1
[    0.425404] initcall init_msg_buckets+0x0/0x40 returned 0 after 0 usecs
[    0.426171] calling  seqiv_module_init+0x0/0x20 @ 1
[    0.426783] initcall seqiv_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.427587] calling  dh_init+0x0/0x60 @ 1
[    0.428105] initcall dh_init+0x0/0x60 returned 0 after 0 usecs
[    0.428742] calling  rsa_init+0x0/0x80 @ 1
[    0.429271] initcall rsa_init+0x0/0x80 returned 0 after 0 usecs
[    0.429988] calling  hmac_module_init+0x0/0x20 @ 1
[    0.430584] initcall hmac_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.431371] calling  crypto_null_mod_init+0x0/0x80 @ 1
[    0.432010] initcall crypto_null_mod_init+0x0/0x80 returned 0 after 0 usecs
[    0.432743] calling  md5_mod_init+0x0/0x20 @ 1
[    0.433297] initcall md5_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.434062] calling  sha1_generic_mod_init+0x0/0x20 @ 1
[    0.434706] initcall sha1_generic_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.435541] calling  sha256_generic_mod_init+0x0/0x30 @ 1
[    0.436201] initcall sha256_generic_mod_init+0x0/0x30 returned 0 after 0 usecs
[    0.436743] calling  sha512_generic_mod_init+0x0/0x30 @ 1
[    0.437402] initcall sha512_generic_mod_init+0x0/0x30 returned 0 after 0 usecs
[    0.438256] calling  sha3_generic_mod_init+0x0/0x30 @ 1
[    0.438910] initcall sha3_generic_mod_init+0x0/0x30 returned 0 after 0 usecs
[    0.440210] calling  crypto_ecb_module_init+0x0/0x20 @ 1
[    0.440745] initcall crypto_ecb_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.441596] calling  crypto_cbc_module_init+0x0/0x20 @ 1
[    0.442245] initcall crypto_cbc_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.443088] calling  crypto_cts_module_init+0x0/0x20 @ 1
[    0.443736] initcall crypto_cts_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.444581] calling  xts_module_init+0x0/0x20 @ 1
[    0.444742] initcall xts_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.445521] calling  crypto_ctr_module_init+0x0/0x30 @ 1
[    0.446170] initcall crypto_ctr_module_init+0x0/0x30 returned 0 after 0 usecs
[    0.447011] calling  crypto_gcm_module_init+0x0/0x90 @ 1
[    0.447659] initcall crypto_gcm_module_init+0x0/0x90 returned 0 after 0 usecs
[    0.448500] calling  aes_init+0x0/0x20 @ 1
[    0.448745] initcall aes_init+0x0/0x20 returned 0 after 0 usecs
[    0.449457] calling  crc32c_mod_init+0x0/0x40 @ 1
[    0.450038] initcall crc32c_mod_init+0x0/0x40 returned 0 after 0 usecs
[    0.450817] calling  lzo_mod_init+0x0/0x20 @ 1
[    0.451371] initcall lzo_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.452116] calling  lzorle_mod_init+0x0/0x20 @ 1
[    0.452703] initcall lzorle_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.452742] calling  drbg_init+0x0/0x220 @ 1
[    0.453284] initcall drbg_init+0x0/0x220 returned 0 after 0 usecs
[    0.454010] calling  ghash_mod_init+0x0/0x20 @ 1
[    0.454581] initcall ghash_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.455342] calling  ecdh_init+0x0/0x90 @ 1
[    0.455868] initcall ecdh_init+0x0/0x90 returned 0 after 0 usecs
[    0.456589] calling  init_bio+0x0/0xe0 @ 1
[    0.456775] initcall init_bio+0x0/0xe0 returned 0 after 0 usecs
[    0.457485] calling  blk_ioc_init+0x0/0x80 @ 1
[    0.458040] initcall blk_ioc_init+0x0/0x80 returned 0 after 0 usecs
[    0.458783] calling  blk_mq_init+0x0/0x130 @ 1
[    0.459337] initcall blk_mq_init+0x0/0x130 returned 0 after 0 usecs
[    0.460091] calling  genhd_device_init+0x0/0x60 @ 1
[    0.460764] initcall genhd_device_init+0x0/0x60 returned 0 after 4000 usecs
[    0.461582] calling  blkcg_punt_bio_init+0x0/0x40 @ 1
[    0.462207] initcall blkcg_punt_bio_init+0x0/0x40 returned 0 after 0 usecs
[    0.462207] calling  blk_integrity_auto_init+0x0/0xe0 @ 1
[    0.462259] initcall blk_integrity_auto_init+0x0/0xe0 returned 0 after 0 usecs
[    0.462259] calling  io_wq_init+0x0/0x50 @ 1
[    0.464744] initcall io_wq_init+0x0/0x50 returned 0 after 0 usecs
[    0.465473] calling  sg_pool_init+0x0/0x110 @ 1
[    0.466050] initcall sg_pool_init+0x0/0x110 returned 0 after 0 usecs
[    0.466803] calling  irq_poll_setup+0x0/0x90 @ 1
[    0.467781] initcall irq_poll_setup+0x0/0x90 returned 0 after 0 usecs
[    0.468558] calling  sx150x_init+0x0/0x30 @ 1
[    0.468753] initcall sx150x_init+0x0/0x30 returned 0 after 0 usecs
[    0.469495] calling  byt_gpio_init+0x0/0x30 @ 1
[    0.470058] initcall byt_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.470780] calling  chv_pinctrl_init+0x0/0x30 @ 1
[    0.471377] initcall chv_pinctrl_init+0x0/0x30 returned 0 after 0 usecs
[    0.472127] calling  gpiolib_debugfs_init+0x0/0x40 @ 1
[    0.472749] initcall gpiolib_debugfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.473582] calling  palmas_gpio_init+0x0/0x30 @ 1
[    0.474179] initcall palmas_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.474971] calling  rc5t583_gpio_init+0x0/0x30 @ 1
[    0.475582] initcall rc5t583_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.476379] calling  tps6586x_gpio_init+0x0/0x30 @ 1
[    0.476745] initcall tps6586x_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.477551] calling  tps65910_gpio_init+0x0/0x30 @ 1
[    0.478169] initcall tps65910_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.478971] calling  pwm_init+0x0/0x70 @ 1
[    0.479499] initcall pwm_init+0x0/0x70 returned 0 after 0 usecs
[    0.480217] calling  leds_init+0x0/0x60 @ 1
[    0.480747] initcall leds_init+0x0/0x60 returned 0 after 4000 usecs
[    0.481506] calling  pci_slot_init+0x0/0x60 @ 1
[    0.482052] initcall pci_slot_init+0x0/0x60 returned 0 after 0 usecs
[    0.482816] calling  fbmem_init+0x0/0x90 @ 1
[    0.483384] initcall fbmem_init+0x0/0x90 returned 0 after 0 usecs
[    0.484102] calling  scan_for_dmi_ipmi+0x0/0x300 @ 1
[    0.484715] initcall scan_for_dmi_ipmi+0x0/0x300 returned 0 after 0 usecs
[    0.484742] calling  acpi_init+0x0/0x540 @ 1
[    0.485303] ACPI: Added _OSI(Module Device)
[    0.485834] ACPI: Added _OSI(Processor Device)
[    0.486393] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.486972] ACPI: Added _OSI(Processor Aggregator Device)
[    0.488387] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    0.489630] ACPI: Interpreter enabled
[    0.490107] ACPI: PM: (supports S0 S5)
[    0.490601] ACPI: Using IOAPIC for interrupt routing
[    0.491234] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.492304] PCI: Using E820 reservations for host bridge windows
[    0.492832] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.495586] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.496266] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI HPX-Type3]
[    0.496745] acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    0.497899] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended configuration space under this bridge
[    0.499388] acpiphp: Slot [3] registered
[    0.499878] acpiphp: Slot [4] registered
[    0.500385] acpiphp: Slot [5] registered
[    0.500758] acpiphp: Slot [6] registered
[    0.501265] acpiphp: Slot [7] registered
[    0.501780] acpiphp: Slot [8] registered
[    0.502293] acpiphp: Slot [9] registered
[    0.502804] acpiphp: Slot [10] registered
[    0.503292] acpiphp: Slot [11] registered
[    0.503812] acpiphp: Slot [12] registered
[    0.504344] acpiphp: Slot [13] registered
[    0.504757] acpiphp: Slot [14] registered
[    0.505278] acpiphp: Slot [15] registered
[    0.505797] acpiphp: Slot [16] registered
[    0.506318] acpiphp: Slot [17] registered
[    0.506801] acpiphp: Slot [18] registered
[    0.507323] acpiphp: Slot [19] registered
[    0.507843] acpiphp: Slot [20] registered
[    0.508381] acpiphp: Slot [21] registered
[    0.508758] acpiphp: Slot [22] registered
[    0.509263] acpiphp: Slot [23] registered
[    0.509785] acpiphp: Slot [24] registered
[    0.510314] acpiphp: Slot [25] registered
[    0.510850] acpiphp: Slot [26] registered
[    0.511379] acpiphp: Slot [27] registered
[    0.511889] acpiphp: Slot [28] registered
[    0.512416] acpiphp: Slot [29] registered
[    0.512759] acpiphp: Slot [30] registered
[    0.513287] acpiphp: Slot [31] registered
[    0.513820] PCI host bridge to bus 0000:00
[    0.514349] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.515167] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.515982] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.516744] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]
[    0.517625] pci_bus 0000:00: root bus resource [mem 0x240000000-0x2bfffffff window]
[    0.518515] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.519211] pci 0000:00:00.0: calling  quirk_mmio_always_on+0x0/0x20 @ 1
[    0.519987] pci 0000:00:00.0: quirk_mmio_always_on+0x0/0x20 took 0 usecs
[    0.520743] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 conventional PCI endpoint
[    0.521911] pci 0000:00:00.0: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.522737] pci 0000:00:00.0: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.524508] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 conventional PCI endpoint
[    0.525012] pci 0000:00:01.0: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.525880] pci 0000:00:01.0: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.526885] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180 conventional PCI endpoint
[    0.528465] pci 0000:00:01.1: BAR 4 [io  0xc5a0-0xc5af]
[    0.528772] pci 0000:00:01.1: BAR 0 [io  0x01f0-0x01f7]: legacy IDE quirk
[    0.529565] pci 0000:00:01.1: BAR 1 [io  0x03f6]: legacy IDE quirk
[    0.530302] pci 0000:00:01.1: BAR 2 [io  0x0170-0x0177]: legacy IDE quirk
[    0.531110] pci 0000:00:01.1: BAR 3 [io  0x0376]: legacy IDE quirk
[    0.531855] pci 0000:00:01.1: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.532711] pci 0000:00:01.1: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.532845] pci 0000:00:01.3: calling  acpi_pm_check_blacklist+0x0/0x50 @ 1
[    0.533635] pci 0000:00:01.3: acpi_pm_check_blacklist+0x0/0x50 took 0 usecs
[    0.534152] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000 conventional PCI endpoint
[    0.534929] pci 0000:00:01.3: calling  quirk_piix4_acpi+0x0/0x180 @ 1
[    0.535417] pci 0000:00:01.3: quirk: [io  0x0600-0x063f] claimed by PIIX4 ACPI
[    0.535953] pci 0000:00:01.3: quirk: [io  0x0700-0x070f] claimed by PIIX4 SMB
[    0.536642] pci 0000:00:01.3: quirk_piix4_acpi+0x0/0x180 took 0 usecs
[    0.536743] pci 0000:00:01.3: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.537282] pci 0000:00:01.3: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.537815] pci 0000:00:01.3: calling  pci_fixup_piix4_acpi+0x0/0x20 @ 1
[    0.538320] pci 0000:00:01.3: pci_fixup_piix4_acpi+0x0/0x20 took 0 usecs
[    0.538917] pci 0000:00:02.0: [1b36:0100] type 00 class 0x030000 conventional PCI endpoint
[    0.541595] pci 0000:00:02.0: BAR 0 [mem 0xf4000000-0xf7ffffff]
[    0.542063] pci 0000:00:02.0: BAR 1 [mem 0xf8000000-0xfbffffff]
[    0.542519] pci 0000:00:02.0: BAR 2 [mem 0xfc054000-0xfc055fff]
[    0.542975] pci 0000:00:02.0: BAR 3 [io  0xc540-0xc55f]
[    0.543390] pci 0000:00:02.0: ROM [mem 0xfc040000-0xfc04ffff pref]
[    0.543878] pci 0000:00:02.0: calling  screen_info_fixup_lfb+0x0/0x170 @ 1
[    0.544411] pci 0000:00:02.0: screen_info_fixup_lfb+0x0/0x170 took 0 usecs
[    0.544742] pci 0000:00:02.0: calling  pci_fixup_video+0x0/0x120 @ 1
[    0.545235] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.545972] pci 0000:00:02.0: pci_fixup_video+0x0/0x120 took 0 usecs
[    0.547113] pci 0000:00:03.0: [1af4:1000] type 00 class 0x020000 conventional PCI endpoint
[    0.548747] pci 0000:00:03.0: BAR 0 [io  0xc560-0xc57f]
[    0.549402] pci 0000:00:03.0: BAR 1 [mem 0xfc056000-0xfc056fff]
[    0.550564] pci 0000:00:03.0: BAR 4 [mem 0xfebf0000-0xfebf3fff 64bit pref]
[    0.551341] pci 0000:00:03.0: ROM [mem 0xfc000000-0xfc03ffff pref]
[    0.552579] pci 0000:00:04.0: [1b36:000d] type 00 class 0x0c0330 conventional PCI endpoint
[    0.553200] pci 0000:00:04.0: BAR 0 [mem 0xfc050000-0xfc053fff 64bit]
[    0.554719] pci 0000:00:05.0: [8086:2415] type 00 class 0x040100 conventional PCI endpoint
[    0.556213] pci 0000:00:05.0: BAR 0 [io  0xc000-0xc3ff]
[    0.556749] pci 0000:00:05.0: BAR 1 [io  0xc400-0xc4ff]
[    0.557419] pci 0000:00:05.0: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.558251] pci 0000:00:05.0: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.559432] pci 0000:00:06.0: [1af4:1052] type 00 class 0x098000 conventional PCI endpoint
[    0.560750] pci 0000:00:06.0: BAR 1 [mem 0xfc057000-0xfc057fff]
[    0.561476] pci 0000:00:06.0: BAR 4 [mem 0xfebf4000-0xfebf7fff 64bit pref]
[    0.562786] pci 0000:00:07.0: [1af4:1003] type 00 class 0x078000 conventional PCI endpoint
[    0.564542] pci 0000:00:07.0: BAR 0 [io  0xc500-0xc53f]
[    0.564750] pci 0000:00:07.0: BAR 1 [mem 0xfc058000-0xfc058fff]
[    0.565451] pci 0000:00:07.0: BAR 4 [mem 0xfebf8000-0xfebfbfff 64bit pref]
[    0.566763] pci 0000:00:08.0: [1af4:1002] type 00 class 0x00ff00 conventional PCI endpoint
[    0.568447] pci 0000:00:08.0: BAR 0 [io  0xc580-0xc59f]
[    0.568767] pci 0000:00:08.0: BAR 4 [mem 0xfebfc000-0xfebfffff 64bit pref]
[    0.575398] ACPI: PCI: Interrupt link LNKA configured for IRQ 10
[    0.576185] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[    0.576805] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[    0.577566] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[    0.578605] ACPI: PCI: Interrupt link LNKS configured for IRQ 9
[    0.579471] initcall acpi_init+0x0/0x540 returned 0 after 92000 usecs
[    0.580243] calling  adxl_init+0x0/0x1b0 @ 1
[    0.580744] initcall adxl_init+0x0/0x1b0 returned -19 after 0 usecs
[    0.581467] calling  hmat_init+0x0/0x3d0 @ 1
[    0.582018] initcall hmat_init+0x0/0x3d0 returned 0 after 0 usecs
[    0.582754] calling  acpi_hed_driver_init+0x0/0x30 @ 1
[    0.583403] initcall acpi_hed_driver_init+0x0/0x30 returned 0 after 0 usecs
[    0.584330] calling  pnp_init+0x0/0x20 @ 1
[    0.584749] initcall pnp_init+0x0/0x20 returned 0 after 0 usecs
[    0.585450] calling  balloon_init+0x0/0x2d0 @ 1
[    0.585998] initcall balloon_init+0x0/0x2d0 returned -19 after 0 usecs
[    0.586768] calling  xen_setup_shutdown_event+0x0/0x50 @ 1
[    0.587401] initcall xen_setup_shutdown_event+0x0/0x50 returned -19 after 0 usecs
[    0.588272] calling  xenbus_probe_backend_init+0x0/0xa0 @ 1
[    0.588752] initcall xenbus_probe_backend_init+0x0/0xa0 returned 0 after 0 usecs
[    0.589589] calling  xenbus_probe_frontend_init+0x0/0x60 @ 1
[    0.590247] initcall xenbus_probe_frontend_init+0x0/0x60 returned 0 after 0 usecs
[    0.591111] calling  xen_acpi_pad_init+0x0/0x60 @ 1
[    0.591717] initcall xen_acpi_pad_init+0x0/0x60 returned -19 after 0 usecs
[    0.592534] calling  misc_init+0x0/0xb0 @ 1
[    0.592748] initcall misc_init+0x0/0xb0 returned 0 after 0 usecs
[    0.593464] calling  tpm_init+0x0/0xe0 @ 1
[    0.594050] initcall tpm_init+0x0/0xe0 returned 0 after 0 usecs
[    0.594050] calling  iommu_subsys_init+0x0/0x170 @ 1
[    0.594050] iommu: Default domain type: Translated
[    0.594606] iommu: DMA domain TLB invalidation policy: lazy mode
[    0.595302] initcall iommu_subsys_init+0x0/0x170 returned 0 after 0 usecs
[    0.596743] calling  cn_init+0x0/0xf0 @ 1
[    0.597257] initcall cn_init+0x0/0xf0 returned 0 after 0 usecs
[    0.597945] calling  pm860x_i2c_init+0x0/0x50 @ 1
[    0.598522] initcall pm860x_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.599252] calling  wm8400_driver_init+0x0/0x50 @ 1
[    0.599857] initcall wm8400_driver_init+0x0/0x50 returned 0 after 0 usecs
[    0.600620] calling  wm831x_i2c_init+0x0/0x50 @ 1
[    0.600745] initcall wm831x_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.601504] calling  wm831x_spi_init+0x0/0x40 @ 1
[    0.602059] initcall wm831x_spi_init+0x0/0x40 returned 0 after 0 usecs
[    0.602830] calling  wm8350_i2c_init+0x0/0x30 @ 1
[    0.603423] initcall wm8350_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.604162] calling  tps65910_i2c_init+0x0/0x30 @ 1
[    0.604748] initcall tps65910_i2c_init+0x0/0x30 returned 0 after 4000 usecs
[    0.605561] calling  ezx_pcap_init+0x0/0x30 @ 1
[    0.606476] initcall ezx_pcap_init+0x0/0x30 returned 0 after 0 usecs
[    0.607224] calling  da903x_init+0x0/0x30 @ 1
[    0.607765] initcall da903x_init+0x0/0x30 returned 0 after 0 usecs
[    0.608497] calling  da9052_spi_init+0x0/0x50 @ 1
[    0.608746] initcall da9052_spi_init+0x0/0x50 returned 0 after 0 usecs
[    0.609494] calling  da9052_i2c_init+0x0/0x50 @ 1
[    0.610070] initcall da9052_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.610835] calling  lp8788_init+0x0/0x30 @ 1
[    0.611389] initcall lp8788_init+0x0/0x30 returned 0 after 0 usecs
[    0.612112] calling  da9055_i2c_init+0x0/0x50 @ 1
[    0.612685] initcall da9055_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.612743] calling  max77843_i2c_init+0x0/0x30 @ 1
[    0.613334] initcall max77843_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.614114] calling  max8925_i2c_init+0x0/0x50 @ 1
[    0.614703] initcall max8925_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.615494] calling  max8997_i2c_init+0x0/0x30 @ 1
[    0.616077] initcall max8997_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.616744] calling  max8998_i2c_init+0x0/0x30 @ 1
[    0.617326] initcall max8998_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.618090] calling  tps6586x_init+0x0/0x30 @ 1
[    0.618628] initcall tps6586x_init+0x0/0x30 returned 0 after 0 usecs
[    0.619355] calling  tps65090_init+0x0/0x30 @ 1
[    0.619903] initcall tps65090_init+0x0/0x30 returned 0 after 0 usecs
[    0.620622] calling  aat2870_init+0x0/0x30 @ 1
[    0.620746] initcall aat2870_init+0x0/0x30 returned 0 after 0 usecs
[    0.621503] calling  palmas_i2c_init+0x0/0x30 @ 1
[    0.622074] initcall palmas_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.622845] calling  rc5t583_i2c_init+0x0/0x30 @ 1
[    0.623438] initcall rc5t583_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.624196] calling  as3711_i2c_init+0x0/0x30 @ 1
[    0.624745] initcall as3711_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.625495] calling  libnvdimm_init+0x0/0x70 @ 1
[    0.626077] initcall libnvdimm_init+0x0/0x70 returned 0 after 0 usecs
[    0.626829] calling  dax_core_init+0x0/0x110 @ 1
[    0.627401] initcall dax_core_init+0x0/0x110 returned 0 after 0 usecs
[    0.628180] calling  dma_buf_init+0x0/0xb0 @ 1
[    0.628757] initcall dma_buf_init+0x0/0xb0 returned 0 after 4000 usecs
[    0.629508] calling  init_scsi+0x0/0xa0 @ 1
[    0.630071] SCSI subsystem initialized
[    0.630535] initcall init_scsi+0x0/0xa0 returned 0 after 0 usecs
[    0.631221] calling  ata_init+0x0/0x410 @ 1
[    0.631796] libata version 3.00 loaded.
[    0.631796] initcall ata_init+0x0/0x410 returned 0 after 0 usecs
[    0.632743] calling  phy_init+0x0/0x2b0 @ 1
[    0.633277] initcall phy_init+0x0/0x2b0 returned 0 after 0 usecs
[    0.633960] calling  usb_common_init+0x0/0x30 @ 1
[    0.635105] initcall usb_common_init+0x0/0x30 returned 0 after 0 usecs
[    0.635848] calling  usb_init+0x0/0x190 @ 1
[    0.636367] ACPI: bus type USB registered
[    0.636763] usbcore: registered new interface driver usbfs
[    0.637413] usbcore: registered new interface driver hub
[    0.638034] usbcore: registered new device driver usb
[    0.638434] initcall usb_init+0x0/0x190 returned 0 after 4000 usecs
[    0.638902] calling  xdbc_init+0x0/0x1e0 @ 1
[    0.639238] initcall xdbc_init+0x0/0x1e0 returned 0 after 0 usecs
[    0.639693] calling  usb_roles_init+0x0/0x20 @ 1
[    0.640062] initcall usb_roles_init+0x0/0x20 returned 0 after 0 usecs
[    0.640552] calling  serio_init+0x0/0x50 @ 1
[    0.640751] initcall serio_init+0x0/0x50 returned 0 after 0 usecs
[    0.641475] calling  input_init+0x0/0x130 @ 1
[    0.642019] initcall input_init+0x0/0x130 returned 0 after 0 usecs
[    0.642738] calling  rtc_init+0x0/0x40 @ 1
[    0.643253] initcall rtc_init+0x0/0x40 returned 0 after 0 usecs
[    0.643938] calling  dw_i2c_init_driver+0x0/0x30 @ 1
[    0.644549] initcall dw_i2c_init_driver+0x0/0x30 returned 0 after 0 usecs
[    0.644742] calling  pps_init+0x0/0xc0 @ 1
[    0.645246] pps_core: LinuxPPS API ver. 1 registered
[    0.645841] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.646857] initcall pps_init+0x0/0xc0 returned 0 after 0 usecs
[    0.647575] calling  ptp_init+0x0/0xa0 @ 1
[    0.648089] PTP clock support registered
[    0.648578] initcall ptp_init+0x0/0xa0 returned 0 after 0 usecs
[    0.648742] calling  power_supply_class_init+0x0/0x30 @ 1
[    0.649402] initcall power_supply_class_init+0x0/0x30 returned 0 after 0 usecs
[    0.650269] calling  hwmon_init+0x0/0x110 @ 1
[    0.650808] initcall hwmon_init+0x0/0x110 returned 0 after 0 usecs
[    0.651526] calling  intel_tcc_init+0x0/0x40 @ 1
[    0.652091] initcall intel_tcc_init+0x0/0x40 returned 0 after 0 usecs
[    0.652743] calling  md_init+0x0/0x190 @ 1
[    0.653323] initcall md_init+0x0/0x190 returned 0 after 0 usecs
[    0.653430] calling  edac_init+0x0/0x90 @ 1
[    0.653943] EDAC MC: Ver: 3.0.0
[    0.654502] initcall edac_init+0x0/0x90 returned 0 after 0 usecs
[    0.654502] calling  mmc_init+0x0/0x50 @ 1
[    0.654502] initcall mmc_init+0x0/0x50 returned 0 after 0 usecs
[    0.656746] calling  dmi_init+0x0/0x140 @ 1
[    0.657273] initcall dmi_init+0x0/0x140 returned 0 after 0 usecs
[    0.657950] calling  efisubsys_init+0x0/0x610 @ 1
[    0.658523] initcall efisubsys_init+0x0/0x610 returned 0 after 0 usecs
[    0.659277] calling  vme_init+0x0/0x20 @ 1
[    0.659790] initcall vme_init+0x0/0x20 returned 0 after 0 usecs
[    0.660483] calling  remoteproc_init+0x0/0x80 @ 1
[    0.660755] initcall remoteproc_init+0x0/0x80 returned 0 after 0 usecs
[    0.661517] calling  devfreq_init+0x0/0xe0 @ 1
[    0.662498] initcall devfreq_init+0x0/0xe0 returned 0 after 0 usecs
[    0.662498] calling  devfreq_event_init+0x0/0x60 @ 1
[    0.662498] initcall devfreq_event_init+0x0/0x60 returned 0 after 0 usecs
[    0.662915] calling  devfreq_simple_ondemand_init+0x0/0x20 @ 1
[    0.664743] initcall devfreq_simple_ondemand_init+0x0/0x20 returned 0 after 0 usecs
[    0.665627] calling  devfreq_performance_init+0x0/0x20 @ 1
[    0.666285] initcall devfreq_performance_init+0x0/0x20 returned 0 after 0 usecs
[    0.667123] calling  devfreq_powersave_init+0x0/0x20 @ 1
[    0.667765] initcall devfreq_powersave_init+0x0/0x20 returned 0 after 0 usecs
[    0.668564] calling  devfreq_userspace_init+0x0/0x20 @ 1
[    0.668743] initcall devfreq_userspace_init+0x0/0x20 returned 0 after 0 usecs
[    0.669557] calling  devfreq_passive_init+0x0/0x20 @ 1
[    0.670176] initcall devfreq_passive_init+0x0/0x20 returned 0 after 0 usecs
[    0.670973] calling  ras_init+0x0/0x20 @ 1
[    0.671480] initcall ras_init+0x0/0x20 returned 0 after 0 usecs
[    0.672162] calling  nvmem_init+0x0/0x20 @ 1
[    0.672690] initcall nvmem_init+0x0/0x20 returned 0 after 0 usecs
[    0.672743] calling  dpll_init+0x0/0x20 @ 1
[    0.673271] initcall dpll_init+0x0/0x20 returned 0 after 0 usecs
[    0.673990] calling  proto_init+0x0/0x20 @ 1
[    0.674525] initcall proto_init+0x0/0x20 returned 0 after 0 usecs
[    0.675240] calling  net_dev_init+0x0/0x3a0 @ 1
[    0.675867] initcall net_dev_init+0x0/0x3a0 returned 0 after 0 usecs
[    0.676597] calling  neigh_init+0x0/0x30 @ 1
[    0.676744] initcall neigh_init+0x0/0x30 returned 0 after 0 usecs
[    0.677453] calling  fib_notifier_init+0x0/0x20 @ 1
[    0.678040] initcall fib_notifier_init+0x0/0x20 returned 0 after 0 usecs
[    0.678815] calling  netdev_genl_init+0x0/0x50 @ 1
[    0.679398] initcall netdev_genl_init+0x0/0x50 returned 0 after 0 usecs
[    0.680187] calling  page_pool_user_init+0x0/0x20 @ 1
[    0.680742] initcall page_pool_user_init+0x0/0x20 returned 0 after 0 usecs
[    0.681548] calling  fib_rules_init+0x0/0x80 @ 1
[    0.682117] initcall fib_rules_init+0x0/0x80 returned 0 after 0 usecs
[    0.682871] calling  init_cgroup_netprio+0x0/0x30 @ 1
[    0.683489] initcall init_cgroup_netprio+0x0/0x30 returned 0 after 0 usecs
[    0.684292] calling  bpf_lwt_init+0x0/0x30 @ 1
[    0.684742] initcall bpf_lwt_init+0x0/0x30 returned 0 after 0 usecs
[    0.685482] calling  pktsched_init+0x0/0xc0 @ 1
[    0.686116] initcall pktsched_init+0x0/0xc0 returned 0 after 0 usecs
[    0.686837] calling  tc_filter_init+0x0/0xa0 @ 1
[    0.687408] initcall tc_filter_init+0x0/0xa0 returned 0 after 0 usecs
[    0.688156] calling  tc_action_init+0x0/0x30 @ 1
[    0.688701] initcall tc_action_init+0x0/0x30 returned 0 after 0 usecs
[    0.688744] calling  ethnl_init+0x0/0x80 @ 1
[    0.689279] initcall ethnl_init+0x0/0x80 returned 0 after 0 usecs
[    0.689987] calling  nexthop_init+0x0/0x40 @ 1
[    0.690530] initcall nexthop_init+0x0/0x40 returned 0 after 0 usecs
[    0.691266] calling  devlink_init+0x0/0x70 @ 1
[    0.691833] initcall devlink_init+0x0/0x70 returned 0 after 0 usecs
[    0.692559] calling  wireless_nlevent_init+0x0/0x50 @ 1
[    0.692743] initcall wireless_nlevent_init+0x0/0x50 returned 0 after 0 usecs
[    0.693571] calling  rfkill_init+0x0/0x130 @ 1
[    0.694151] initcall rfkill_init+0x0/0x130 returned 0 after 0 usecs
[    0.694151] calling  ncsi_init_netlink+0x0/0x20 @ 1
[    0.694151] initcall ncsi_init_netlink+0x0/0x20 returned 0 after 0 usecs
[    0.694887] calling  shaper_init+0x0/0x20 @ 1
[    0.696746] initcall shaper_init+0x0/0x20 returned 0 after 0 usecs
[    0.697469] calling  pci_subsys_init+0x0/0x80 @ 1
[    0.698042] PCI: Using ACPI for IRQ routing
[    0.698574] PCI: pci_cache_line_size set to 64 bytes
[    0.699272] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    0.699992] e820: reserve RAM buffer [mem 0xbffdf000-0xbfffffff]
[    0.700698] initcall pci_subsys_init+0x0/0x80 returned 0 after 0 usecs
[    0.700743] calling  vsprintf_init_hashval+0x0/0x20 @ 1
[    0.701364] initcall vsprintf_init_hashval+0x0/0x20 returned 0 after 0 usecs
[    0.702183] calling  efi_runtime_map_init+0x0/0x260 @ 1
[    0.702811] initcall efi_runtime_map_init+0x0/0x260 returned 0 after 0 usecs
[    0.703632] calling  vga_arb_device_init+0x0/0xa0 @ 1
[    0.704266] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.704266] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.704266] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.704745] vgaarb: loaded
[    0.705116] initcall vga_arb_device_init+0x0/0xa0 returned 0 after 4000 usecs
[    0.705944] calling  watchdog_init+0x0/0xb0 @ 1
[    0.706543] initcall watchdog_init+0x0/0xb0 returned 0 after 0 usecs
[    0.706543] calling  nmi_warning_debugfs+0x0/0x40 @ 1
[    0.706543] initcall nmi_warning_debugfs+0x0/0x40 returned 0 after 0 usecs
[    0.708743] calling  hpet_late_init+0x0/0x420 @ 1
[    0.709329] initcall hpet_late_init+0x0/0x420 returned -19 after 0 usecs
[    0.710141] calling  init_amd_nbs+0x0/0x340 @ 1
[    0.710691] initcall init_amd_nbs+0x0/0x340 returned 0 after 0 usecs
[    0.711434] calling  amd_smn_init+0x0/0x200 @ 1
[    0.712003] initcall amd_smn_init+0x0/0x200 returned 0 after 0 usecs
[    0.712742] calling  iomem_init_inode+0x0/0xa0 @ 1
[    0.713340] initcall iomem_init_inode+0x0/0xa0 returned 0 after 0 usecs
[    0.714112] calling  clocksource_done_booting+0x0/0x50 @ 1
[    0.715194] clocksource: Switched to clocksource kvm-clock
[    0.715846] initcall clocksource_done_booting+0x0/0x50 returned 0 after 654 usecs
[    0.716720] calling  tracer_init_tracefs+0x0/0xd0 @ 1
[    0.716739] initcall tracer_init_tracefs+0x0/0xd0 returned 0 after 65 usecs
[    0.716739] calling  init_trace_printk_function_export+0x0/0x40 @ 1
[    0.716739] initcall init_trace_printk_function_export+0x0/0x40 returned 0 after 12 usecs
[    0.717480] calling  init_graph_tracefs+0x0/0x40 @ 1
[    0.718094] initcall init_graph_tracefs+0x0/0x40 returned 0 after 2 usecs
[    0.718894] calling  trace_events_synth_init+0x0/0x60 @ 1
[    0.719542] initcall trace_events_synth_init+0x0/0x60 returned 0 after 1 usecs
[    0.720385] calling  bpf_event_init+0x0/0x20 @ 1
[    0.720948] initcall bpf_event_init+0x0/0x20 returned 0 after 0 usecs
[    0.721701] calling  init_kprobe_trace+0x0/0x1e0 @ 1
[    0.722307] initcall init_kprobe_trace+0x0/0x1e0 returned 0 after 5 usecs
[    0.723097] calling  init_dynamic_event+0x0/0x40 @ 1
[    0.723696] initcall init_dynamic_event+0x0/0x40 returned 0 after 2 usecs
[    0.724483] calling  init_uprobe_trace+0x0/0x80 @ 1
[    0.725091] initcall init_uprobe_trace+0x0/0x80 returned 0 after 3 usecs
[    0.725850] calling  bpf_init+0x0/0x60 @ 1
[    0.726387] initcall bpf_init+0x0/0x60 returned 0 after 7 usecs
[    0.727090] calling  secretmem_init+0x0/0x60 @ 1
[    0.727658] initcall secretmem_init+0x0/0x60 returned 0 after 14 usecs
[    0.728445] calling  init_fs_stat_sysctls+0x0/0x40 @ 1
[    0.729070] initcall init_fs_stat_sysctls+0x0/0x40 returned 0 after 7 usecs
[    0.729879] calling  init_fs_exec_sysctls+0x0/0x40 @ 1
[    0.730524] initcall init_fs_exec_sysctls+0x0/0x40 returned 0 after 2 usecs
[    0.731321] calling  init_pipe_fs+0x0/0x80 @ 1
[    0.731888] initcall init_pipe_fs+0x0/0x80 returned 0 after 12 usecs
[    0.732642] calling  init_fs_namei_sysctls+0x0/0x40 @ 1
[    0.733277] initcall init_fs_namei_sysctls+0x0/0x40 returned 0 after 2 usecs
[    0.734067] calling  init_fs_dcache_sysctls+0x0/0x60 @ 1
[    0.734701] initcall init_fs_dcache_sysctls+0x0/0x60 returned 0 after 4 usecs
[    0.735496] calling  init_fs_namespace_sysctls+0x0/0x40 @ 1
[    0.736149] initcall init_fs_namespace_sysctls+0x0/0x40 returned 0 after 1 usecs
[    0.737000] calling  cgroup_writeback_init+0x0/0x40 @ 1
[    0.737628] initcall cgroup_writeback_init+0x0/0x40 returned 0 after 4 usecs
[    0.738367] calling  inotify_user_setup+0x0/0x140 @ 1
[    0.738771] initcall inotify_user_setup+0x0/0x140 returned 0 after 7 usecs
[    0.739323] calling  eventpoll_init+0x0/0x190 @ 1
[    0.739790] initcall eventpoll_init+0x0/0x190 returned 0 after 19 usecs
[    0.740292] calling  anon_inode_init+0x0/0x70 @ 1
[    0.740739] initcall anon_inode_init+0x0/0x70 returned 0 after 10 usecs
[    0.741341] calling  init_dax_wait_table+0x0/0x50 @ 1
[    0.741824] initcall init_dax_wait_table+0x0/0x50 returned 0 after 12 usecs
[    0.742851] calling  proc_locks_init+0x0/0x40 @ 1
[    0.743296] initcall proc_locks_init+0x0/0x40 returned 0 after 2 usecs
[    0.743885] calling  backing_aio_init+0x0/0x90 @ 1
[    0.744335] initcall backing_aio_init+0x0/0x90 returned 0 after 1 usecs
[    0.744938] calling  init_fs_coredump_sysctls+0x0/0x40 @ 1
[    0.745447] initcall init_fs_coredump_sysctls+0x0/0x40 returned 0 after 2 usecs
[    0.746098] calling  init_vm_drop_caches_sysctls+0x0/0x40 @ 1
[    0.746630] initcall init_vm_drop_caches_sysctls+0x0/0x40 returned 0 after 1 usecs
[    0.747303] calling  iomap_dio_init+0x0/0x40 @ 1
[    0.747741] initcall iomap_dio_init+0x0/0x40 returned 0 after 5 usecs
[    0.748321] calling  iomap_ioend_init+0x0/0x30 @ 1
[    0.748781] initcall iomap_ioend_init+0x0/0x30 returned 0 after 11 usecs
[    0.749389] calling  dquot_init+0x0/0x190 @ 1
[    0.749802] VFS: Disk quotas dquot_6.6.0
[    0.750187] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.750805] initcall dquot_init+0x0/0x190 returned 0 after 1002 usecs
[    0.751385] calling  quota_init+0x0/0x40 @ 1
[    0.751800] initcall quota_init+0x0/0x40 returned 0 after 9 usecs
[    0.752353] calling  proc_cmdline_init+0x0/0x50 @ 1
[    0.752810] initcall proc_cmdline_init+0x0/0x50 returned 0 after 0 usecs
[    0.753416] calling  proc_consoles_init+0x0/0x40 @ 1
[    0.753878] initcall proc_consoles_init+0x0/0x40 returned 0 after 0 usecs
[    0.754484] calling  proc_cpuinfo_init+0x0/0x30 @ 1
[    0.754883] initcall proc_cpuinfo_init+0x0/0x30 returned 0 after 0 usecs
[    0.755392] calling  proc_devices_init+0x0/0x40 @ 1
[    0.755785] initcall proc_devices_init+0x0/0x40 returned 0 after 0 usecs
[    0.756352] calling  proc_interrupts_init+0x0/0x40 @ 1
[    0.756829] initcall proc_interrupts_init+0x0/0x40 returned 0 after 0 usecs
[    0.757459] calling  proc_loadavg_init+0x0/0x40 @ 1
[    0.757916] initcall proc_loadavg_init+0x0/0x40 returned 0 after 0 usecs
[    0.758523] calling  proc_meminfo_init+0x0/0x40 @ 1
[    0.758982] initcall proc_meminfo_init+0x0/0x40 returned 0 after 0 usecs
[    0.759507] calling  proc_stat_init+0x0/0x30 @ 1
[    0.759869] initcall proc_stat_init+0x0/0x30 returned 0 after 0 usecs
[    0.760350] calling  proc_uptime_init+0x0/0x40 @ 1
[    0.760723] initcall proc_uptime_init+0x0/0x40 returned 0 after 0 usecs
[    0.761218] calling  proc_version_init+0x0/0x40 @ 1
[    0.761593] initcall proc_version_init+0x0/0x40 returned 0 after 0 usecs
[    0.762092] calling  proc_softirqs_init+0x0/0x40 @ 1
[    0.762488] initcall proc_softirqs_init+0x0/0x40 returned 0 after 0 usecs
[    0.763008] calling  proc_kcore_init+0x0/0x170 @ 1
[    0.763400] initcall proc_kcore_init+0x0/0x170 returned 0 after 16 usecs
[    0.763904] calling  vmcore_init+0x0/0x920 @ 1
[    0.764251] initcall vmcore_init+0x0/0x920 returned 0 after 0 usecs
[    0.764718] calling  proc_kmsg_init+0x0/0x30 @ 1
[    0.765088] initcall proc_kmsg_init+0x0/0x30 returned 0 after 0 usecs
[    0.765574] calling  proc_page_init+0x0/0x70 @ 1
[    0.765942] initcall proc_page_init+0x0/0x70 returned 0 after 3 usecs
[    0.766437] calling  init_ramfs_fs+0x0/0x20 @ 1
[    0.766799] initcall init_ramfs_fs+0x0/0x20 returned 0 after 2 usecs
[    0.767277] calling  init_hugetlbfs_fs+0x0/0x1c0 @ 1
[    0.767680] initcall init_hugetlbfs_fs+0x0/0x1c0 returned 0 after 20 usecs
[    0.768189] calling  aa_create_aafs+0x0/0x3c0 @ 1
[    0.768558] initcall aa_create_aafs+0x0/0x3c0 returned 0 after 0 usecs
[    0.769057] calling  dynamic_debug_init_control+0x0/0xa0 @ 1
[    0.769498] initcall dynamic_debug_init_control+0x0/0xa0 returned 0 after 6 usecs
[    0.770051] calling  acpi_event_init+0x0/0x50 @ 1
[    0.770427] initcall acpi_event_init+0x0/0x50 returned 0 after 5 usecs
[    0.770911] calling  pnp_system_init+0x0/0x20 @ 1
[    0.771318] initcall pnp_system_init+0x0/0x20 returned 0 after 15 usecs
[    0.771815] calling  pnpacpi_init+0x0/0x80 @ 1
[    0.772162] pnp: PnP ACPI init
[    0.773127] pnp 00:03: [dma 2]
[    0.773511] pnp: PnP ACPI: found 5 devices
[    0.773844] initcall pnpacpi_init+0x0/0x80 returned 0 after 1681 usecs
[    0.774346] calling  chr_dev_init+0x0/0xb0 @ 1
[    0.775927] initcall chr_dev_init+0x0/0xb0 returned 0 after 1220 usecs
[    0.776422] calling  hwrng_modinit+0x0/0xc0 @ 1
[    0.776801] initcall hwrng_modinit+0x0/0xc0 returned 0 after 22 usecs
[    0.777320] calling  firmware_class_init+0x0/0x120 @ 1
[    0.777730] initcall firmware_class_init+0x0/0x120 returned 0 after 6 usecs
[    0.778254] calling  map_properties+0x0/0x670 @ 1
[    0.778622] initcall map_properties+0x0/0x670 returned 0 after 0 usecs
[    0.779121] calling  init_acpi_pm_clocksource+0x0/0x110 @ 1
[    0.784060] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.784715] initcall init_acpi_pm_clocksource+0x0/0x110 returned 0 after 5166 usecs
[    0.785287] calling  powercap_init+0x0/0x290 @ 1
[    0.785665] initcall powercap_init+0x0/0x290 returned 0 after 16 usecs
[    0.786150] calling  sysctl_core_init+0x0/0x40 @ 1
[    0.786571] initcall sysctl_core_init+0x0/0x40 returned 0 after 12 usecs
[    0.787176] calling  eth_offload_init+0x0/0x30 @ 1
[    0.787626] initcall eth_offload_init+0x0/0x30 returned 0 after 0 usecs
[    0.788225] calling  ipv4_offload_init+0x0/0xe0 @ 1
[    0.788687] initcall ipv4_offload_init+0x0/0xe0 returned 0 after 0 usecs
[    0.789306] calling  inet_init+0x0/0x360 @ 1
[    0.789741] NET: Registered PF_INET protocol family
[    0.790561] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.792124] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.792767] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.793346] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.793976] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.794886] TCP: Hash tables configured (established 65536 bind 65536)
[    0.795403] UDP hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.795956] UDP-Lite hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.796566] initcall inet_init+0x0/0x360 returned 0 after 6846 usecs
[    0.797061] calling  af_unix_init+0x0/0x120 @ 1
[    0.797430] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.797862] initcall af_unix_init+0x0/0x120 returned 0 after 445 usecs
[    0.798364] calling  ipv6_offload_init+0x0/0xf0 @ 1
[    0.798753] initcall ipv6_offload_init+0x0/0xf0 returned 0 after 1 usecs
[    0.799265] calling  vlan_offload_init+0x0/0x30 @ 1
[    0.799653] initcall vlan_offload_init+0x0/0x30 returned 0 after 0 usecs
[    0.800153] calling  xsk_init+0x0/0xa0 @ 1
[    0.800481] NET: Registered PF_XDP protocol family
[    0.800854] initcall xsk_init+0x0/0xa0 returned 0 after 373 usecs
[    0.801325] calling  pcibios_assign_resources+0x0/0xe0 @ 1
[    0.801757] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.802642] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.803108] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.803618] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfebfffff window]
[    0.804131] pci_bus 0000:00: resource 8 [mem 0x240000000-0x2bfffffff window]
[    0.804675] initcall pcibios_assign_resources+0x0/0xe0 returned 0 after 2928 usecs
[    0.805354] calling  pci_apply_final_quirks+0x0/0x160 @ 1
[    0.805861] pci 0000:00:00.0: calling  quirk_passive_release+0x0/0xb0 @ 1
[    0.806393] pci 0000:00:01.0: PIIX3: Enabling Passive Release
[    0.806840] pci 0000:00:00.0: quirk_passive_release+0x0/0xb0 took 443 usecs
[    0.807361] pci 0000:00:00.0: calling  quirk_natoma+0x0/0x40 @ 1
[    0.807820] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    0.808274] pci 0000:00:00.0: quirk_natoma+0x0/0x40 took 443 usecs
[    0.808775] pci 0000:00:04.0: calling  quirk_usb_early_handoff+0x0/0x6d0 @ 1
[    0.820459] ACPI: \_SB_.LNKD: Enabled at IRQ 11
[    0.832358] pci 0000:00:04.0: quirk_usb_early_handoff+0x0/0x6d0 took 22496 usecs
[    0.833272] PCI: CLS 0 bytes, default 64
[    0.833591] initcall pci_apply_final_quirks+0x0/0x160 returned 0 after 27733 usecs
[    0.834159] calling  acpi_reserve_resources+0x0/0x120 @ 1
[    0.834583] initcall acpi_reserve_resources+0x0/0x120 returned 0 after 2 usecs
[    0.835121] calling  p2sb_fs_init+0x0/0x160 @ 1
[    0.835497] initcall p2sb_fs_init+0x0/0x160 returned -2 after 20 usecs
[    0.835989] calling  populate_rootfs+0x0/0x60 @ 1
[    0.836393] Trying to unpack rootfs image as initramfs...
[    0.837157] initcall populate_rootfs+0x0/0x60 returned 0 after 801 usecs
[    0.837942] calling  pci_iommu_init+0x0/0x50 @ 1
[    0.838532] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.839306] software IO TLB: mapped [mem 0x00000000af000000-0x00000000b3000000] (64MB)
[    0.840253] initcall pci_iommu_init+0x0/0x50 returned 0 after 1721 usecs
[    0.841085] calling  ir_dev_scope_init+0x0/0x50 @ 1
[    0.841669] initcall ir_dev_scope_init+0x0/0x50 returned 0 after 0 usecs
[    0.842507] calling  snp_init_platform_device+0x0/0x50 @ 1
[    0.843184] initcall snp_init_platform_device+0x0/0x50 returned -19 after 0 usecs
[    0.844072] calling  ia32_binfmt_init+0x0/0x30 @ 1
[    0.844673] initcall ia32_binfmt_init+0x0/0x30 returned 0 after 6 usecs
[    0.845462] calling  amd_ibs_init+0x0/0x370 @ 1
[    0.846013] initcall amd_ibs_init+0x0/0x370 returned -19 after 0 usecs
[    0.846793] calling  amd_uncore_init+0x0/0x1c0 @ 1
[    0.847326] initcall amd_uncore_init+0x0/0x1c0 returned -19 after 0 usecs
[    0.848127] calling  amd_iommu_pc_init+0x0/0x280 @ 1
[    0.848740] initcall amd_iommu_pc_init+0x0/0x280 returned -19 after 1 usecs
[    0.849565] calling  msr_init+0x0/0x70 @ 1
[    0.850090] initcall msr_init+0x0/0x70 returned 0 after 19 usecs
[    0.850820] calling  intel_uncore_init+0x0/0x5b0 @ 1
[    0.851416] initcall intel_uncore_init+0x0/0x5b0 returned -19 after 0 usecs
[    0.852214] calling  register_kernel_offset_dumper+0x0/0x30 @ 1
[    0.852922] initcall register_kernel_offset_dumper+0x0/0x30 returned 0 after 0 usecs
[    0.853823] calling  i8259A_init_ops+0x0/0x40 @ 1
[    0.854410] initcall i8259A_init_ops+0x0/0x40 returned 0 after 0 usecs
[    0.855189] calling  init_tsc_clocksource+0x0/0xe0 @ 1
[    0.855825] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x28680fa287f, max_idle_ns: 440795281151 ns
[    0.856999] initcall init_tsc_clocksource+0x0/0xe0 returned 0 after 1174 usecs
[    0.857648] calling  add_rtc_cmos+0x0/0xc0 @ 1
[    0.858061] initcall add_rtc_cmos+0x0/0xc0 returned 0 after 1 usecs
[    0.858616] calling  i8237A_init_ops+0x0/0x60 @ 1
[    0.859017] initcall i8237A_init_ops+0x0/0x60 returned 0 after 5 usecs
[    0.859500] calling  umwait_init+0x0/0xb0 @ 1
[    0.859894] initcall umwait_init+0x0/0xb0 returned -19 after 0 usecs
[    0.860409] calling  ioapic_init_ops+0x0/0x30 @ 1
[    0.860779] initcall ioapic_init_ops+0x0/0x30 returned 0 after 0 usecs
[    0.861269] calling  register_e820_pmem+0x0/0x90 @ 1
[    0.861651] initcall register_e820_pmem+0x0/0x90 returned 0 after 2 usecs
[    0.862151] calling  add_pcspkr+0x0/0x80 @ 1
[    0.862907] initcall add_pcspkr+0x0/0x80 returned 0 after 42 usecs
[    0.863471] calling  start_periodic_check_for_corruption+0x0/0x60 @ 1
[    0.864040] initcall start_periodic_check_for_corruption+0x0/0x60 returned 0 after 0 usecs
[    0.864745] calling  audit_classes_init+0x0/0xc0 @ 1
[    0.865204] initcall audit_classes_init+0x0/0xc0 returned 0 after 1 usecs
[    0.865796] calling  pt_dump_init+0x0/0x50 @ 1
[    0.866176] initcall pt_dump_init+0x0/0x50 returned 0 after 0 usecs
[    0.866653] calling  iosf_mbi_init+0x0/0xc0 @ 1
[    0.867040] initcall iosf_mbi_init+0x0/0xc0 returned 0 after 27 usecs
[    0.867526] calling  proc_execdomains_init+0x0/0x30 @ 1
[    0.867986] initcall proc_execdomains_init+0x0/0x30 returned 0 after 3 usecs
[    0.868604] calling  register_warn_debugfs+0x0/0x40 @ 1
[    0.869087] initcall register_warn_debugfs+0x0/0x40 returned 0 after 1 usecs
[    0.869615] calling  cpuhp_sysfs_init+0x0/0x100 @ 1
[    0.870005] initcall cpuhp_sysfs_init+0x0/0x100 returned 0 after 10 usecs
[    0.870520] calling  ioresources_init+0x0/0x60 @ 1
[    0.870899] initcall ioresources_init+0x0/0x60 returned 0 after 2 usecs
[    0.871437] calling  psi_proc_init+0x0/0x90 @ 1
[    0.871875] initcall psi_proc_init+0x0/0x90 returned 0 after 2 usecs
[    0.872367] calling  snapshot_device_init+0x0/0x20 @ 1
[    0.872923] initcall snapshot_device_init+0x0/0x20 returned 0 after 104 usecs
[    0.873500] calling  irq_gc_init_ops+0x0/0x30 @ 1
[    0.873889] initcall irq_gc_init_ops+0x0/0x30 returned 0 after 0 usecs
[    0.874389] calling  irq_pm_init_ops+0x0/0x30 @ 1
[    0.874759] initcall irq_pm_init_ops+0x0/0x30 returned 0 after 0 usecs
[    0.875244] calling  klp_init+0x0/0x40 @ 1
[    0.875573] initcall klp_init+0x0/0x40 returned 0 after 2 usecs
[    0.876017] calling  proc_modules_init+0x0/0x30 @ 1
[    0.876402] initcall proc_modules_init+0x0/0x30 returned 0 after 2 usecs
[    0.876898] calling  timer_sysctl_init+0x0/0x30 @ 1
[    0.877287] initcall timer_sysctl_init+0x0/0x30 returned 0 after 4 usecs
[    0.877790] calling  timekeeping_init_ops+0x0/0x30 @ 1
[    0.878186] initcall timekeeping_init_ops+0x0/0x30 returned 0 after 0 usecs
[    0.878717] calling  init_clocksource_sysfs+0x0/0x40 @ 1
[    0.879378] initcall init_clocksource_sysfs+0x0/0x40 returned 0 after 248 usecs
[    0.879938] calling  init_timer_list_procfs+0x0/0x40 @ 1
[    0.880347] initcall init_timer_list_procfs+0x0/0x40 returned 0 after 1 usecs
[    0.880882] calling  alarmtimer_init+0x0/0xf0 @ 1
[    0.881279] initcall alarmtimer_init+0x0/0xf0 returned 0 after 10 usecs
[    0.881838] calling  init_posix_timers+0x0/0x90 @ 1
[    0.882228] initcall init_posix_timers+0x0/0x90 returned 0 after 3 usecs
[    0.882727] calling  clockevents_init_sysfs+0x0/0xe0 @ 1
[    0.883173] initcall clockevents_init_sysfs+0x0/0xe0 returned 0 after 34 usecs
[    0.883703] calling  proc_dma_init+0x0/0x30 @ 1
[    0.884113] initcall proc_dma_init+0x0/0x30 returned 0 after 0 usecs
[    0.884671] calling  kallsyms_init+0x0/0x30 @ 1
[    0.885089] initcall kallsyms_init+0x0/0x30 returned 0 after 0 usecs
[    0.885646] calling  pid_namespaces_init+0x0/0xc0 @ 1
[    0.886122] initcall pid_namespaces_init+0x0/0xc0 returned 0 after 18 usecs
[    0.886736] calling  ikconfig_init+0x0/0x60 @ 1
[    0.887155] initcall ikconfig_init+0x0/0x60 returned 0 after 0 usecs
[    0.887716] calling  audit_watch_init+0x0/0x60 @ 1
[    0.888161] initcall audit_watch_init+0x0/0x60 returned 0 after 0 usecs
[    0.888744] calling  audit_fsnotify_init+0x0/0x60 @ 1
[    0.889192] initcall audit_fsnotify_init+0x0/0x60 returned 0 after 0 usecs
[    0.889672] calling  audit_tree_init+0x0/0xd0 @ 1
[    0.890078] initcall audit_tree_init+0x0/0xd0 returned 0 after 1 usecs
[    0.890592] calling  seccomp_sysctl_init+0x0/0x40 @ 1
[    0.891055] initcall seccomp_sysctl_init+0x0/0x40 returned 0 after 4 usecs
[    0.891600] calling  utsname_sysctl_init+0x0/0x30 @ 1
[    0.892052] initcall utsname_sysctl_init+0x0/0x30 returned 0 after 5 usecs
[    0.893061] calling  init_tracepoints+0x0/0x50 @ 1
[    0.893497] initcall init_tracepoints+0x0/0x50 returned 0 after 1 usecs
[    0.894078] calling  stack_trace_init+0x0/0xc0 @ 1
[    0.894533] initcall stack_trace_init+0x0/0xc0 returned 0 after 11 usecs
[    0.895116] calling  init_mmio_trace+0x0/0x20 @ 1
[    0.895548] initcall init_mmio_trace+0x0/0x20 returned 0 after 3 usecs
[    0.896119] calling  init_blk_tracer+0x0/0x70 @ 1
[    0.896551] initcall init_blk_tracer+0x0/0x70 returned 0 after 4 usecs
[    0.897128] calling  perf_event_sysfs_init+0x0/0xb0 @ 1
[    0.897663] initcall perf_event_sysfs_init+0x0/0xb0 returned 0 after 68 usecs
[    0.898351] calling  system_trusted_keyring_init+0x0/0x110 @ 1
[    0.898916] Initialise system trusted keyrings
[    0.899272] initcall system_trusted_keyring_init+0x0/0x110 returned 0 after 356 usecs
[    0.899848] calling  blacklist_init+0x0/0x100 @ 1
[    0.900279] Key type blacklist registered
[    0.900652] initcall blacklist_init+0x0/0x100 returned 0 after 373 usecs
[    0.901255] calling  kswapd_init+0x0/0xa0 @ 1
[    0.901733] initcall kswapd_init+0x0/0xa0 returned 0 after 91 usecs
[    0.902273] calling  extfrag_debug_init+0x0/0x70 @ 1
[    0.902732] initcall extfrag_debug_init+0x0/0x70 returned 0 after 5 usecs
[    0.903327] calling  mm_compute_batch_init+0x0/0x30 @ 1
[    0.903796] initcall mm_compute_batch_init+0x0/0x30 returned 0 after 1 usecs
[    0.904323] calling  slab_proc_init+0x0/0x30 @ 1
[    0.904693] initcall slab_proc_init+0x0/0x30 returned 0 after 3 usecs
[    0.905205] calling  workingset_init+0x0/0xd0 @ 1
[    0.905573] workingset: timestamp_bits=36 max_order=21 bucket_order=0
[    0.906109] initcall workingset_init+0x0/0xd0 returned 0 after 536 usecs
[    0.906711] calling  proc_vmalloc_init+0x0/0x50 @ 1
[    0.907157] initcall proc_vmalloc_init+0x0/0x50 returned 0 after 1 usecs
[    0.907676] calling  slab_debugfs_init+0x0/0x70 @ 1
[    0.908070] initcall slab_debugfs_init+0x0/0x70 returned 0 after 11 usecs
[    0.908585] calling  procswaps_init+0x0/0x30 @ 1
[    0.908958] initcall procswaps_init+0x0/0x30 returned 0 after 1 usecs
[    0.909445] calling  zs_init+0x0/0x30 @ 1
[    0.909766] initcall zs_init+0x0/0x30 returned 0 after 0 usecs
[    0.910219] calling  ptdump_debugfs_init+0x0/0x40 @ 1
[    0.910678] initcall ptdump_debugfs_init+0x0/0x40 returned 0 after 1 usecs
[    0.911282] calling  fcntl_init+0x0/0x80 @ 1
[    0.911684] initcall fcntl_init+0x0/0x80 returned 0 after 3 usecs
[    0.912225] calling  proc_filesystems_init+0x0/0x30 @ 1
[    0.912696] initcall proc_filesystems_init+0x0/0x30 returned 0 after 0 usecs
[    0.913324] calling  start_dirtytime_writeback+0x0/0x60 @ 1
[    0.913827] initcall start_dirtytime_writeback+0x0/0x60 returned 0 after 4 usecs
[    0.914410] calling  dio_init+0x0/0x90 @ 1
[    0.914737] initcall dio_init+0x0/0x90 returned 0 after 0 usecs
[    0.915176] calling  dnotify_init+0x0/0x120 @ 1
[    0.915539] initcall dnotify_init+0x0/0x120 returned 0 after 11 usecs
[    0.916018] calling  fanotify_user_setup+0x0/0x250 @ 1
[    0.916414] initcall fanotify_user_setup+0x0/0x250 returned 0 after 3 usecs
[    0.916933] calling  userfaultfd_init+0x0/0xc0 @ 1
[    0.917370] initcall userfaultfd_init+0x0/0xc0 returned 0 after 61 usecs
[    0.917869] calling  aio_setup+0x0/0x120 @ 1
[    0.918231] initcall aio_setup+0x0/0x120 returned 0 after 20 usecs
[    0.918702] calling  mbcache_init+0x0/0x90 @ 1
[    0.919060] initcall mbcache_init+0x0/0x90 returned 0 after 3 usecs
[    0.919573] calling  init_devpts_fs+0x0/0x50 @ 1
[    0.919936] initcall init_devpts_fs+0x0/0x50 returned 0 after 5 usecs
[    0.920409] calling  ext4_init_fs+0x0/0x210 @ 1
[    0.920814] initcall ext4_init_fs+0x0/0x210 returned 0 after 56 usecs
[    0.921293] calling  journal_init+0x0/0x1f0 @ 1
[    0.921663] initcall journal_init+0x0/0x1f0 returned 0 after 11 usecs
[    0.922137] calling  init_squashfs_fs+0x0/0xd0 @ 1
[    0.923087] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.923768] initcall init_squashfs_fs+0x0/0xd0 returned 0 after 688 usecs
[    0.924512] calling  init_fat_fs+0x0/0xb0 @ 1
[    0.925048] initcall init_fat_fs+0x0/0xb0 returned 0 after 6 usecs
[    0.925775] calling  init_vfat_fs+0x0/0x20 @ 1
[    0.926333] initcall init_vfat_fs+0x0/0x20 returned 0 after 3 usecs
[    0.927061] calling  ecryptfs_init+0x0/0x230 @ 1
[    0.927756] initcall ecryptfs_init+0x0/0x230 returned 0 after 141 usecs
[    0.928525] calling  init_nls_cp437+0x0/0x30 @ 1
[    0.929062] initcall init_nls_cp437+0x0/0x30 returned 0 after 0 usecs
[    0.929789] calling  fuse_init+0x0/0x250 @ 1
[    0.930288] fuse: init (API version 7.43)
[    0.930805] initcall fuse_init+0x0/0x250 returned 0 after 516 usecs
[    0.931524] calling  efivarfs_init+0x0/0x20 @ 1
[    0.932071] initcall efivarfs_init+0x0/0x20 returned 0 after 0 usecs
[    0.932836] calling  ipc_init+0x0/0x40 @ 1
[    0.933364] initcall ipc_init+0x0/0x40 returned 0 after 8 usecs
[    0.934057] calling  ipc_sysctl_init+0x0/0x40 @ 1
[    0.934598] initcall ipc_sysctl_init+0x0/0x40 returned 0 after 12 usecs
[    0.935315] calling  init_mqueue_fs+0x0/0x160 @ 1
[    0.935856] initcall init_mqueue_fs+0x0/0x160 returned 0 after 23 usecs
[    0.936584] calling  key_proc_init+0x0/0x80 @ 1
[    0.937137] initcall key_proc_init+0x0/0x80 returned 0 after 2 usecs
[    0.937883] calling  selinux_nf_ip_init+0x0/0x60 @ 1
[    0.938490] initcall selinux_nf_ip_init+0x0/0x60 returned 0 after 0 usecs
[    0.939285] calling  init_sel_fs+0x0/0x140 @ 1
[    0.939833] initcall init_sel_fs+0x0/0x140 returned 0 after 0 usecs
[    0.940557] calling  selnl_init+0x0/0xa0 @ 1
[    0.941041] initcall selnl_init+0x0/0xa0 returned 0 after 8 usecs
[    0.941685] calling  sel_netif_init+0x0/0x50 @ 1
[    0.942178] initcall sel_netif_init+0x0/0x50 returned 0 after 0 usecs
[    0.942887] calling  sel_netnode_init+0x0/0x40 @ 1
[    0.943466] initcall sel_netnode_init+0x0/0x40 returned 0 after 0 usecs
[    0.944231] calling  sel_netport_init+0x0/0x40 @ 1
[    0.944809] initcall sel_netport_init+0x0/0x40 returned 0 after 0 usecs
[    0.945579] calling  aurule_init+0x0/0x40 @ 1
[    0.946112] initcall aurule_init+0x0/0x40 returned 0 after 0 usecs
[    0.946833] calling  apparmor_nf_ip_init+0x0/0x50 @ 1
[    0.947445] initcall apparmor_nf_ip_init+0x0/0x50 returned 0 after 0 usecs
[    0.948237] calling  bpf_crypto_skcipher_init+0x0/0x20 @ 1
[    0.948891] initcall bpf_crypto_skcipher_init+0x0/0x20 returned 0 after 0 usecs
[    0.949730] calling  crypto_hkdf_module_init+0x0/0x20 @ 1
[    0.950379] initcall crypto_hkdf_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.951202] calling  jent_mod_init+0x0/0xf0 @ 1
[    0.957891] initcall jent_mod_init+0x0/0xf0 returned 0 after 6142 usecs
[    0.958653] calling  asymmetric_key_init+0x0/0x20 @ 1
[    0.959259] Key type asymmetric registered
[    0.959770] initcall asymmetric_key_init+0x0/0x20 returned 0 after 512 usecs
[    0.960576] calling  x509_key_init+0x0/0x20 @ 1
[    0.961130] Asymmetric key parser 'x509' registered
[    0.961699] initcall x509_key_init+0x0/0x20 returned 0 after 569 usecs
[    0.962457] calling  crypto_kdf108_init+0x0/0x20 @ 1
[    0.963057] initcall crypto_kdf108_init+0x0/0x20 returned 0 after 0 usecs
[    0.963848] calling  blkdev_init+0x0/0x30 @ 1
[    0.964384] initcall blkdev_init+0x0/0x30 returned 0 after 16 usecs
[    0.965111] calling  proc_genhd_init+0x0/0x50 @ 1
[    0.965704] initcall proc_genhd_init+0x0/0x50 returned 0 after 4 usecs
[    0.966464] calling  bsg_init+0x0/0xa0 @ 1
[    0.966970] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    0.967814] initcall bsg_init+0x0/0xa0 returned 0 after 857 usecs
[    0.968174] Freeing initrd memory: 72972K
[    0.968535] calling  throtl_init+0x0/0x50 @ 1
[    0.969506] initcall throtl_init+0x0/0x50 returned 0 after 78 usecs
[    0.970245] calling  ioc_init+0x0/0x20 @ 1
[    0.970764] initcall ioc_init+0x0/0x20 returned 0 after 4 usecs
[    0.971473] calling  deadline_init+0x0/0x20 @ 1
[    0.972026] io scheduler mq-deadline registered
[    0.972563] initcall deadline_init+0x0/0x20 returned 0 after 536 usecs
[    0.973341] calling  bfq_init+0x0/0xf0 @ 1
[    0.973873] io scheduler bfq registered
[    0.974308] initcall bfq_init+0x0/0xf0 returned 0 after 458 usecs
[    0.974959] calling  io_uring_init+0x0/0xe0 @ 1
[    0.975509] initcall io_uring_init+0x0/0xe0 returned 0 after 13 usecs
[    0.976236] calling  blake2s_mod_init+0x0/0x20 @ 1
[    0.976834] initcall blake2s_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.977616] calling  btree_module_init+0x0/0x80 @ 1
[    0.978212] initcall btree_module_init+0x0/0x80 returned 0 after 8 usecs
[    0.978969] calling  percpu_counter_startup+0x0/0x70 @ 1
[    0.979661] initcall percpu_counter_startup+0x0/0x70 returned 0 after 69 usecs
[    0.980487] calling  digsig_init+0x0/0x50 @ 1
[    0.981040] initcall digsig_init+0x0/0x50 returned 0 after 4 usecs
[    0.981762] calling  phy_core_init+0x0/0x60 @ 1
[    0.982718] initcall phy_core_init+0x0/0x60 returned 0 after 19 usecs
[    0.983489] calling  amd_gpio_driver_init+0x0/0x30 @ 1
[    0.984109] initcall amd_gpio_driver_init+0x0/0x30 returned 0 after 11 usecs
[    0.984927] calling  crystalcove_pwm_driver_init+0x0/0x30 @ 1
[    0.985610] initcall crystalcove_pwm_driver_init+0x0/0x30 returned 0 after 5 usecs
[    0.986479] calling  pwm_lpss_driver_pci_init+0x0/0x30 @ 1
[    0.987126] initcall pwm_lpss_driver_pci_init+0x0/0x30 returned 0 after 15 usecs
[    0.987992] calling  pwm_lpss_driver_platform_init+0x0/0x30 @ 1
[    0.988665] initcall pwm_lpss_driver_platform_init+0x0/0x30 returned 0 after 4 usecs
[    0.989578] calling  ledtrig_disk_init+0x0/0x50 @ 1
[    0.990162] initcall ledtrig_disk_init+0x0/0x50 returned 0 after 3 usecs
[    0.990965] calling  ledtrig_mtd_init+0x0/0x40 @ 1
[    0.991523] initcall ledtrig_mtd_init+0x0/0x40 returned 0 after 0 usecs
[    0.992280] calling  ledtrig_cpu_init+0x0/0x100 @ 1
[    0.992951] ledtrig-cpu: registered to indicate activity on CPUs
[    0.993659] initcall ledtrig_cpu_init+0x0/0x100 returned 0 after 811 usecs
[    0.994470] calling  ledtrig_panic_init+0x0/0x60 @ 1
[    0.995073] initcall ledtrig_panic_init+0x0/0x60 returned 0 after 2 usecs
[    0.995860] calling  pcie_portdrv_init+0x0/0x60 @ 1
[    0.996496] initcall pcie_portdrv_init+0x0/0x60 returned 0 after 27 usecs
[    0.997297] calling  pci_proc_init+0x0/0x80 @ 1
[    0.997884] initcall pci_proc_init+0x0/0x80 returned 0 after 15 usecs
[    0.998622] calling  pci_hotplug_init+0x0/0x50 @ 1
[    0.999221] initcall pci_hotplug_init+0x0/0x50 returned 0 after 0 usecs
[    1.000006] calling  shpcd_init+0x0/0x30 @ 1
[    1.000537] initcall shpcd_init+0x0/0x30 returned 0 after 9 usecs
[    1.001244] calling  pci_ep_cfs_init+0x0/0x100 @ 1
[    1.001868] initcall pci_ep_cfs_init+0x0/0x100 returned 0 after 34 usecs
[    1.002655] calling  pci_epc_init+0x0/0x20 @ 1
[    1.003186] initcall pci_epc_init+0x0/0x20 returned 0 after 3 usecs
[    1.003918] calling  pci_epf_init+0x0/0x50 @ 1
[    1.004482] initcall pci_epf_init+0x0/0x50 returned 0 after 8 usecs
[    1.005212] calling  dw_plat_pcie_driver_init+0x0/0x30 @ 1
[    1.005862] initcall dw_plat_pcie_driver_init+0x0/0x30 returned 0 after 5 usecs
[    1.006709] calling  imsttfb_init+0x0/0x150 @ 1
[    1.007276] initcall imsttfb_init+0x0/0x150 returned 0 after 10 usecs
[    1.008027] calling  asiliantfb_init+0x0/0x60 @ 1
[    1.008586] initcall asiliantfb_init+0x0/0x60 returned 0 after 9 usecs
[    1.009336] calling  vesafb_driver_init+0x0/0x30 @ 1
[    1.009927] initcall vesafb_driver_init+0x0/0x30 returned 0 after 3 usecs
[    1.010650] calling  efifb_driver_init+0x0/0x30 @ 1
[    1.011257] initcall efifb_driver_init+0x0/0x30 returned 0 after 7 usecs
[    1.012055] calling  simplefb_driver_init+0x0/0x30 @ 1
[    1.013002] initcall simplefb_driver_init+0x0/0x30 returned 0 after 4 usecs
[    1.013558] calling  intel_idle_init+0x0/0xd90 @ 1
[    1.013930] initcall intel_idle_init+0x0/0xd90 returned -19 after 1 usecs
[    1.014461] calling  ged_driver_init+0x0/0x30 @ 1
[    1.014831] initcall ged_driver_init+0x0/0x30 returned 0 after 4 usecs
[    1.015315] calling  acpi_ac_init+0x0/0x60 @ 1
[    1.015679] initcall acpi_ac_init+0x0/0x60 returned 0 after 17 usecs
[    1.016157] calling  acpi_button_driver_init+0x0/0x70 @ 1
[    1.016615] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    1.017249] ACPI: button: Power Button [PWRF]
[    1.017599] probe of LNXPWRBN:00 returned 0 after 1020 usecs
[    1.018033] initcall acpi_button_driver_init+0x0/0x70 returned 0 after 1461 usecs
[    1.018589] calling  acpi_fan_driver_init+0x0/0x30 @ 1
[    1.018987] initcall acpi_fan_driver_init+0x0/0x30 returned 0 after 3 usecs
[    1.019509] calling  acpi_processor_driver_init+0x0/0xd0 @ 1
[    1.019952] probe of cpu0 returned 0 after 12 usecs
[    1.020336] probe of cpu1 returned 0 after 8 usecs
[    1.020714] probe of cpu2 returned 0 after 8 usecs
[    1.021099] probe of cpu3 returned 0 after 8 usecs
[    1.021631] initcall acpi_processor_driver_init+0x0/0xd0 returned 0 after 1696 usecs
[    1.022227] calling  acpi_thermal_init+0x0/0xa0 @ 1
[    1.022682] initcall acpi_thermal_init+0x0/0xa0 returned 0 after 77 usecs
[    1.023184] calling  acpi_battery_init+0x0/0x60 @ 1
[    1.023568] initcall acpi_battery_init+0x0/0x60 returned 0 after 10 usecs
[    1.024068] calling  bgrt_init+0x0/0xe0 @ 1
[    1.024397] initcall bgrt_init+0x0/0xe0 returned -19 after 0 usecs
[    1.024857] calling  acpi_aml_init+0x0/0xe0 @ 1
[    1.025219] initcall acpi_aml_init+0x0/0xe0 returned 0 after 7 usecs
[    1.025798] calling  erst_init+0x0/0x350 @ 1
[    1.026232] initcall erst_init+0x0/0x350 returned 0 after 1 usecs
[    1.026693] calling  gpio_clk_driver_init+0x0/0x30 @ 1
[    1.027099] initcall gpio_clk_driver_init+0x0/0x30 returned 0 after 8 usecs
[    1.027616] calling  gated_fixed_clk_driver_init+0x0/0x30 @ 1
[    1.028056] initcall gated_fixed_clk_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.028617] calling  fch_clk_driver_init+0x0/0x30 @ 1
[    1.029022] initcall fch_clk_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.029536] calling  plt_clk_driver_init+0x0/0x30 @ 1
[    1.029929] initcall plt_clk_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.030448] calling  virtio_mmio_init+0x0/0x30 @ 1
[    1.030827] initcall virtio_mmio_init+0x0/0x30 returned 0 after 5 usecs
[    1.031322] calling  virtio_pci_driver_init+0x0/0x30 @ 1
[    1.042834] ACPI: \_SB_.LNKC: Enabled at IRQ 10
[    1.043843] probe of 0000:00:03.0 returned 0 after 12111 usecs
[    1.055080] ACPI: \_SB_.LNKB: Enabled at IRQ 10
[    1.056160] probe of 0000:00:06.0 returned 0 after 11861 usecs
[    1.068272] probe of 0000:00:07.0 returned 0 after 11638 usecs
[    1.079785] probe of 0000:00:08.0 returned 0 after 11066 usecs
[    1.080261] initcall virtio_pci_driver_init+0x0/0x30 returned 0 after 48534 usecs
[    1.080811] calling  virtio_balloon_driver_init+0x0/0x30 @ 1
[    1.081710] probe of virtio3 returned 0 after 460 usecs
[    1.082137] initcall virtio_balloon_driver_init+0x0/0x30 returned 0 after 889 usecs
[    1.082709] calling  xenbus_probe_initcall+0x0/0xb0 @ 1
[    1.083108] initcall xenbus_probe_initcall+0x0/0xb0 returned -19 after 0 usecs
[    1.083635] calling  xenbus_init+0x0/0x60 @ 1
[    1.083974] initcall xenbus_init+0x0/0x60 returned -19 after 0 usecs
[    1.084450] calling  xenbus_backend_init+0x0/0x60 @ 1
[    1.084840] initcall xenbus_backend_init+0x0/0x60 returned -19 after 0 usecs
[    1.085366] calling  hyper_sysfs_init+0x0/0x250 @ 1
[    1.085743] initcall hyper_sysfs_init+0x0/0x250 returned -19 after 0 usecs
[    1.086299] calling  hypervisor_subsys_init+0x0/0x40 @ 1
[    1.086855] initcall hypervisor_subsys_init+0x0/0x40 returned -19 after 0 usecs
[    1.087407] calling  platform_driver_init+0x0/0x30 @ 1
[    1.087822] initcall platform_driver_init+0x0/0x30 returned 0 after 19 usecs
[    1.088343] calling  xen_late_init_mcelog+0x0/0x90 @ 1
[    1.088737] initcall xen_late_init_mcelog+0x0/0x90 returned -19 after 0 usecs
[    1.089272] calling  xen_acpi_processor_init+0x0/0x200 @ 1
[    1.089690] initcall xen_acpi_processor_init+0x0/0x200 returned -19 after 0 usecs
[    1.090253] calling  n_null_init+0x0/0x30 @ 1
[    1.090608] initcall n_null_init+0x0/0x30 returned 0 after 0 usecs
[    1.091069] calling  pty_init+0x0/0x400 @ 1
[    1.091506] initcall pty_init+0x0/0x400 returned 0 after 107 usecs
[    1.091971] calling  sysrq_init+0x0/0x90 @ 1
[    1.092313] initcall sysrq_init+0x0/0x90 returned 0 after 3 usecs
[    1.092766] calling  xen_hvc_init+0x0/0x200 @ 1
[    1.093125] initcall xen_hvc_init+0x0/0x200 returned -19 after 0 usecs
[    1.093614] calling  serial8250_init+0x0/0x130 @ 1
[    1.093977] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.094655] probe of 00:00:0 returned 0 after 2 usecs
[    1.095058] probe of 00:00:0.0 returned 0 after 1 usecs
[    1.095612] 00:00: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.096284] probe of 00:00 returned 0 after 1647 usecs
[    1.096712] probe of serial8250:0 returned 0 after 1 usecs
[    1.097139] probe of serial8250:0.1 returned 0 after 1 usecs
[    1.097651] probe of serial8250:0.2 returned 0 after 1 usecs
[    1.098134] probe of serial8250:0.3 returned 0 after 1 usecs
[    1.098650] probe of serial8250:0.4 returned 0 after 1 usecs
[    1.099117] probe of serial8250:0.5 returned 0 after 1 usecs
[    1.099604] probe of serial8250:0.6 returned 0 after 1 usecs
[    1.100111] probe of serial8250:0.7 returned 0 after 1 usecs
[    1.100601] probe of serial8250:0.8 returned 0 after 1 usecs
[    1.101099] probe of serial8250:0.9 returned 0 after 1 usecs
[    1.101565] probe of serial8250:0.10 returned 0 after 1 usecs
[    1.102070] probe of serial8250:0.11 returned 0 after 2 usecs
[    1.102941] probe of serial8250:0.12 returned 0 after 1 usecs
[    1.103423] probe of serial8250:0.13 returned 0 after 1 usecs
[    1.103887] probe of serial8250:0.14 returned 0 after 1 usecs
[    1.104392] probe of serial8250:0.15 returned 0 after 2 usecs
[    1.104979] probe of serial8250:0.16 returned 0 after 2 usecs
[    1.105460] probe of serial8250:0.17 returned 0 after 1 usecs
[    1.105944] probe of serial8250:0.18 returned 0 after 1 usecs
[    1.106423] probe of serial8250:0.19 returned 0 after 1 usecs
[    1.106918] probe of serial8250:0.20 returned 0 after 1 usecs
[    1.107418] probe of serial8250:0.21 returned 0 after 1 usecs
[    1.107912] probe of serial8250:0.22 returned 0 after 1 usecs
[    1.108395] probe of serial8250:0.23 returned 0 after 1 usecs
[    1.108863] probe of serial8250:0.24 returned 0 after 2 usecs
[    1.109357] probe of serial8250:0.25 returned 0 after 1 usecs
[    1.109851] probe of serial8250:0.26 returned 0 after 1 usecs
[    1.110327] probe of serial8250:0.27 returned 0 after 1 usecs
[    1.110940] probe of serial8250:0.28 returned 0 after 2 usecs
[    1.111676] probe of serial8250:0.29 returned 0 after 2 usecs
[    1.112404] probe of serial8250:0.30 returned 0 after 2 usecs
[    1.113144] probe of serial8250:0.31 returned 0 after 2 usecs
[    1.113862] probe of serial8250 returned 0 after 3 usecs
[    1.114494] initcall serial8250_init+0x0/0x130 returned 0 after 20517 usecs
[    1.115285] calling  serial_pci_driver_init+0x0/0x30 @ 1
[    1.115950] initcall serial_pci_driver_init+0x0/0x30 returned 0 after 18 usecs
[    1.116767] calling  pericom8250_pci_driver_init+0x0/0x30 @ 1
[    1.117478] initcall pericom8250_pci_driver_init+0x0/0x30 returned 0 after 9 usecs
[    1.118329] calling  max310x_uart_init+0x0/0x80 @ 1
[    1.118922] initcall max310x_uart_init+0x0/0x80 returned 0 after 22 usecs
[    1.119724] calling  sccnxp_uart_driver_init+0x0/0x30 @ 1
[    1.120388] initcall sccnxp_uart_driver_init+0x0/0x30 returned 0 after 7 usecs
[    1.121232] calling  init_kgdboc+0x0/0x90 @ 1
[    1.121802] probe of kgdboc returned 0 after 3 usecs
[    1.122400] initcall init_kgdboc+0x0/0x90 returned 0 after 626 usecs
[    1.123155] calling  random_sysctls_init+0x0/0x40 @ 1
[    1.123747] initcall random_sysctls_init+0x0/0x40 returned 0 after 8 usecs
[    1.124526] calling  ttyprintk_init+0x0/0x140 @ 1
[    1.125168] initcall ttyprintk_init+0x0/0x140 returned 0 after 69 usecs
[    1.125926] calling  virtio_console_init+0x0/0xf0 @ 1
[    1.139944] probe of virtio2 returned 0 after 13395 usecs
[    1.140650] initcall virtio_console_init+0x0/0xf0 returned 0 after 14116 usecs
[    1.141308] calling  hpet_init+0x0/0xa0 @ 1
[    1.141768] initcall hpet_init+0x0/0xa0 returned 0 after 70 usecs
[    1.142243] calling  agp_init+0x0/0x40 @ 1
[    1.142567] Linux agpgart interface v0.103
[    1.142890] initcall agp_init+0x0/0x40 returned 0 after 323 usecs
[    1.143349] calling  agp_amd64_mod_init+0x0/0x40 @ 1
[    1.143747] initcall agp_amd64_mod_init+0x0/0x40 returned -19 after 16 usecs
[    1.144272] calling  agp_intel_init+0x0/0x40 @ 1
[    1.144673] probe of 0000:00:00.0 returned 19 after 28 usecs
[    1.145122] initcall agp_intel_init+0x0/0x40 returned 0 after 479 usecs
[    1.145624] calling  agp_via_init+0x0/0x40 @ 1
[    1.145979] initcall agp_via_init+0x0/0x40 returned 0 after 5 usecs
[    1.146457] calling  init_tis+0x0/0xf0 @ 1
[    1.146799] initcall init_tis+0x0/0xf0 returned 0 after 15 usecs
[    1.147250] calling  crb_acpi_driver_init+0x0/0x30 @ 1
[    1.147653] initcall crb_acpi_driver_init+0x0/0x30 returned 0 after 9 usecs
[    1.148174] calling  cn_proc_init+0x0/0x60 @ 1
[    1.148521] initcall cn_proc_init+0x0/0x60 returned 0 after 0 usecs
[    1.148997] calling  topology_sysfs_init+0x0/0x40 @ 1
[    1.149413] initcall topology_sysfs_init+0x0/0x40 returned 0 after 21 usecs
[    1.149930] calling  cacheinfo_sysfs_init+0x0/0x40 @ 1
[    1.150500] initcall cacheinfo_sysfs_init+0x0/0x40 returned 0 after 173 usecs
[    1.151234] calling  devcoredump_init+0x0/0x20 @ 1
[    1.151629] initcall devcoredump_init+0x0/0x20 returned 0 after 6 usecs
[    1.152129] calling  loop_init+0x0/0x100 @ 1
[    1.154201] loop: module loaded
[    1.154520] initcall loop_init+0x0/0x100 returned 0 after 2043 usecs
[    1.154991] calling  xlblk_init+0x0/0x190 @ 1
[    1.155332] initcall xlblk_init+0x0/0x190 returned -19 after 0 usecs
[    1.155810] calling  tps65912_i2c_driver_init+0x0/0x30 @ 1
[    1.156232] initcall tps65912_i2c_driver_init+0x0/0x30 returned 0 after 7 usecs
[    1.156768] calling  tps65912_spi_driver_init+0x0/0x30 @ 1
[    1.157198] initcall tps65912_spi_driver_init+0x0/0x30 returned 0 after 3 usecs
[    1.157798] calling  twl_driver_init+0x0/0x30 @ 1
[    1.158236] initcall twl_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.158813] calling  twl4030_audio_driver_init+0x0/0x30 @ 1
[    1.159324] initcall twl4030_audio_driver_init+0x0/0x30 returned 0 after 6 usecs
[    1.159968] calling  twl6040_driver_init+0x0/0x30 @ 1
[    1.160430] initcall twl6040_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.161038] calling  da9063_i2c_driver_init+0x0/0x30 @ 1
[    1.161521] initcall da9063_i2c_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.162048] calling  max14577_i2c_init+0x0/0x30 @ 1
[    1.162431] initcall max14577_i2c_init+0x0/0x30 returned 0 after 2 usecs
[    1.162934] calling  max77693_i2c_driver_init+0x0/0x30 @ 1
[    1.163370] initcall max77693_i2c_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.163905] calling  adp5520_driver_init+0x0/0x30 @ 1
[    1.164297] initcall adp5520_driver_init+0x0/0x30 returned 0 after 1 usecs
[    1.164805] calling  crystal_cove_i2c_driver_init+0x0/0x30 @ 1
[    1.165246] initcall crystal_cove_i2c_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.165814] calling  cht_wc_driver_init+0x0/0x30 @ 1
[    1.166204] initcall cht_wc_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.166715] calling  e820_pmem_driver_init+0x0/0x30 @ 1
[    1.167119] initcall e820_pmem_driver_init+0x0/0x30 returned 0 after 5 usecs
[    1.167637] calling  hmem_init+0x0/0x40 @ 1
[    1.167969] initcall hmem_init+0x0/0x40 returned 0 after 3 usecs
[    1.168423] calling  udmabuf_dev_init+0x0/0xc0 @ 1
[    1.168825] initcall udmabuf_dev_init+0x0/0xc0 returned 0 after 34 usecs
[    1.169801] calling  init_sd+0x0/0x140 @ 1
[    1.170141] initcall init_sd+0x0/0x140 returned 0 after 8 usecs
[    1.170600] calling  init_sr+0x0/0x60 @ 1
[    1.170925] initcall init_sr+0x0/0x60 returned 0 after 2 usecs
[    1.171366] calling  init_sg+0x0/0x200 @ 1
[    1.171699] initcall init_sg+0x0/0x200 returned 0 after 8 usecs
[    1.172142] calling  piix_init+0x0/0x40 @ 1
[    1.172480] ata_piix 0000:00:01.1: version 2.13
[    1.173387] scsi host0: ata_piix
[    1.173789] scsi host1: ata_piix
[    1.174091] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc5a0 irq 14 lpm-pol 0
[    1.174670] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc5a8 irq 15 lpm-pol 0
[    1.175232] probe of 0000:00:01.1 returned 0 after 2757 usecs
[    1.175682] initcall piix_init+0x0/0x40 returned 0 after 3211 usecs
[    1.176152] calling  sis_pci_driver_init+0x0/0x30 @ 1
[    1.176550] initcall sis_pci_driver_init+0x0/0x30 returned 0 after 7 usecs
[    1.177069] calling  ata_generic_pci_driver_init+0x0/0x30 @ 1
[    1.177525] initcall ata_generic_pci_driver_init+0x0/0x30 returned 0 after 19 usecs
[    1.178179] calling  blackhole_netdev_init+0x0/0x80 @ 1
[    1.178610] initcall blackhole_netdev_init+0x0/0x80 returned 0 after 22 usecs
[    1.179264] calling  fixed_mdio_bus_init+0x0/0xe0 @ 1
[    1.179670] probe of Fixed MDIO bus returned 0 after 4 usecs
[    1.180149] initcall fixed_mdio_bus_init+0x0/0xe0 returned 0 after 493 usecs
[    1.180847] calling  tun_init+0x0/0xd0 @ 1
[    1.181210] tun: Universal TUN/TAP device driver, 1.6
[    1.181826] initcall tun_init+0x0/0xd0 returned 0 after 616 usecs
[    1.182316] calling  ppp_init+0x0/0x120 @ 1
[    1.182647] PPP generic driver version 2.4.2
[    1.183027] initcall ppp_init+0x0/0x120 returned 0 after 379 usecs
[    1.183528] calling  netif_init+0x0/0x80 @ 1
[    1.183859] initcall netif_init+0x0/0x80 returned -19 after 0 usecs
[    1.184325] calling  vfio_init+0x0/0xa0 @ 1
[    1.184734] VFIO - User Level meta-driver version: 0.3
[    1.185155] initcall vfio_init+0x0/0xa0 returned 0 after 499 usecs
[    1.185623] calling  vfio_iommu_type1_init+0x0/0x20 @ 1
[    1.186016] initcall vfio_iommu_type1_init+0x0/0x20 returned 0 after 0 usecs
[    1.186537] calling  vfio_pci_core_init+0x0/0x20 @ 1
[    1.186915] initcall vfio_pci_core_init+0x0/0x20 returned 0 after 0 usecs
[    1.187414] calling  vfio_pci_init+0x0/0x1c0 @ 1
[    1.187782] initcall vfio_pci_init+0x0/0x1c0 returned 0 after 11 usecs
[    1.188265] calling  cdrom_init+0x0/0x20 @ 1
[    1.188606] initcall cdrom_init+0x0/0x20 returned 0 after 4 usecs
[    1.189065] calling  dwc2_platform_driver_init+0x0/0x30 @ 1
[    1.189494] initcall dwc2_platform_driver_init+0x0/0x30 returned 0 after 8 usecs
[    1.190030] calling  ehci_hcd_init+0x0/0x100 @ 1
[    1.190396] initcall ehci_hcd_init+0x0/0x100 returned 0 after 4 usecs
[    1.190871] calling  ehci_pci_init+0x0/0x70 @ 1
[    1.191227] initcall ehci_pci_init+0x0/0x70 returned 0 after 7 usecs
[    1.191700] calling  ehci_platform_init+0x0/0x50 @ 1
[    1.192083] initcall ehci_platform_init+0x0/0x50 returned 0 after 3 usecs
[    1.192581] calling  ohci_hcd_mod_init+0x0/0x80 @ 1
[    1.192966] initcall ohci_hcd_mod_init+0x0/0x80 returned 0 after 1 usecs
[    1.193464] calling  ohci_pci_init+0x0/0x70 @ 1
[    1.193845] initcall ohci_pci_init+0x0/0x70 returned 0 after 7 usecs
[    1.194320] calling  ohci_platform_init+0x0/0x50 @ 1
[    1.194701] initcall ohci_platform_init+0x0/0x50 returned 0 after 2 usecs
[    1.195203] calling  uhci_hcd_init+0x0/0x140 @ 1
[    1.195574] initcall uhci_hcd_init+0x0/0x140 returned 0 after 10 usecs
[    1.196065] calling  xhci_hcd_init+0x0/0x40 @ 1
[    1.196418] initcall xhci_hcd_init+0x0/0x40 returned 0 after 2 usecs
[    1.196885] calling  xhci_pci_init+0x0/0x80 @ 1
[    1.208599] xhci_hcd 0000:00:04.0: xHCI Host Controller
[    1.209043] xhci_hcd 0000:00:04.0: new USB bus registered, assigned bus number 1
[    1.209731] xhci_hcd 0000:00:04.0: hcc params 0x00087001 hci version 0x100 quirks 0x0000000000000010
[    1.210810] xhci_hcd 0000:00:04.0: xHCI Host Controller
[    1.211236] xhci_hcd 0000:00:04.0: new USB bus registered, assigned bus number 2
[    1.211971] xhci_hcd 0000:00:04.0: Host supports USB 3.0 SuperSpeed
[    1.212523] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.15
[    1.213137] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.213737] usb usb1: Product: xHCI Host Controller
[    1.214113] usb usb1: Manufacturer: Linux 6.15.0-rc5+ xhci-hcd
[    1.214561] usb usb1: SerialNumber: 0000:00:04.0
[    1.215023] hub 1-0:1.0: USB hub found
[    1.215375] hub 1-0:1.0: 15 ports detected
[    1.215988] probe of 1-0:1.0 returned 0 after 968 usecs
[    1.216409] probe of usb1 returned 0 after 1406 usecs
[    1.216813] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.217414] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.15
[    1.218037] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.218568] usb usb2: Product: xHCI Host Controller
[    1.218938] usb usb2: Manufacturer: Linux 6.15.0-rc5+ xhci-hcd
[    1.219374] usb usb2: SerialNumber: 0000:00:04.0
[    1.219799] hub 2-0:1.0: USB hub found
[    1.220153] hub 2-0:1.0: 15 ports detected
[    1.220787] probe of 2-0:1.0 returned 0 after 989 usecs
[    1.221211] probe of usb2 returned 0 after 1426 usecs
[    1.221606] probe of 0000:00:04.0 returned 0 after 24362 usecs
[    1.222064] initcall xhci_pci_init+0x0/0x80 returned 0 after 24822 usecs
[    1.222577] calling  kgdbdbgp_start_thread+0x0/0x70 @ 1
[    1.222982] initcall kgdbdbgp_start_thread+0x0/0x70 returned 0 after 0 usecs
[    1.223507] calling  i8042_init+0x0/0x750 @ 1
[    1.223880] probe of 00:01 returned 0 after 6 usecs
[    1.224265] probe of 00:02 returned 0 after 3 usecs
[    1.224641] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[    1.225737] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.226155] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.226591] probe of i8042 returned 0 after 1327 usecs
[    1.226991] initcall i8042_init+0x0/0x750 returned 0 after 3129 usecs
[    1.227478] calling  mousedev_init+0x0/0xa0 @ 1
[    1.227897] mousedev: PS/2 mouse device common for all mice
[    1.228322] initcall mousedev_init+0x0/0xa0 returned 0 after 490 usecs
[    1.228806] calling  evdev_init+0x0/0x20 @ 1
[    1.229177] initcall evdev_init+0x0/0x20 returned 0 after 26 usecs
[    1.230088] calling  atkbd_init+0x0/0x40 @ 1
[    1.230509] initcall atkbd_init+0x0/0x40 returned 0 after 14 usecs
[    1.231057] calling  elants_i2c_driver_init+0x0/0x30 @ 1
[    1.231556] initcall elants_i2c_driver_init+0x0/0x30 returned 0 after 22 usecs
[    1.232199] calling  uinput_misc_init+0x0/0x20 @ 1
[    1.232733] initcall uinput_misc_init+0x0/0x20 returned 0 after 101 usecs
[    1.233276] calling  cmos_init+0x0/0x90 @ 1
[    1.233621] rtc_cmos 00:04: RTC can wake from S4
[    1.234230] probe of alarmtimer.0.auto returned 0 after 4 usecs
[    1.234798] rtc_cmos 00:04: registered as rtc0
[    1.235267] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    1.236002] rtc_cmos 00:04: setting system clock to 2025-06-23T06:25:50 UTC (1750659950)
[    1.236706] probe of serio0 returned 0 after 5166 usecs
[    1.237259] rtc_cmos 00:04: alarms up to one day, y3k, 242 bytes nvram
[    1.237812] probe of 00:04 returned 0 after 4195 usecs
[    1.238287] initcall cmos_init+0x0/0x90 returned 0 after 4674 usecs
[    1.238844] calling  i2c_dev_init+0x0/0xc0 @ 1
[    1.239252] i2c_dev: i2c /dev entries driver
[    1.239651] initcall i2c_dev_init+0x0/0xc0 returned 0 after 398 usecs
[    1.240217] calling  restart_poweroff_driver_init+0x0/0x30 @ 1
[    1.240742] initcall restart_poweroff_driver_init+0x0/0x30 returned 0 after 8 usecs
[    1.241346] calling  thermal_throttle_init_device+0x0/0x60 @ 1
[    1.241787] initcall thermal_throttle_init_device+0x0/0x60 returned 0 after 0 usecs
[    1.242379] calling  watchdog_gov_noop_register+0x0/0x20 @ 1
[    1.242894] probe of serio1 returned 19 after 5703 usecs
[    1.243299] initcall watchdog_gov_noop_register+0x0/0x20 returned 0 after 481 usecs
[    1.243866] calling  dm_init+0x0/0x90 @ 1
[    1.244186] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    1.245075] device-mapper: uevent: version 1.0.3
[    1.245489] device-mapper: ioctl: 4.49.0-ioctl (2025-01-17) initialised: dm-devel@lists.linux.dev
[    1.246136] initcall dm_init+0x0/0x90 returned 0 after 1950 usecs
[    1.246599] calling  ghes_edac_init+0x0/0x470 @ 1
[    1.246966] initcall ghes_edac_init+0x0/0x470 returned -19 after 1 usecs
[    1.247461] calling  amd_pstate_init+0x0/0x330 @ 1
[    1.247843] initcall amd_pstate_init+0x0/0x330 returned -19 after 11 usecs
[    1.248351] calling  intel_pstate_init+0x0/0x8e0 @ 1
[    1.248737] intel_pstate: CPU model not supported
[    1.249115] initcall intel_pstate_init+0x0/0x8e0 returned -19 after 378 usecs
[    1.249640] calling  sysfb_init+0x0/0x110 @ 1
[    1.250030] vesafb: mode is 640x480x32, linelength=2560, pages=0
[    1.250579] vesafb: scrolling: redraw
[    1.250927] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.251441] vesafb: framebuffer at 0xf4000000, mapped to 0x0000000011aee8ee, using 1216k, total 1216k
[    1.252748] Console: switching to colour frame buffer device 80x30
[    1.253417] fb0: VESA VGA frame buffer device
[    1.253826] probe of vesa-framebuffer.0 returned 0 after 3801 usecs
[    1.254382] initcall sysfb_init+0x0/0x110 returned 0 after 4397 usecs
[    1.254948] calling  esrt_sysfs_init+0x0/0x330 @ 1
[    1.255382] initcall esrt_sysfs_init+0x0/0x330 returned -38 after 0 usecs
[    1.255967] calling  pmc_atom_init+0x0/0x2b0 @ 1
[    1.256330] initcall pmc_atom_init+0x0/0x2b0 returned -19 after 4 usecs
[    1.256820] calling  rproc_virtio_driver_init+0x0/0x30 @ 1
[    1.257254] initcall rproc_virtio_driver_init+0x0/0x30 returned 0 after 10 usecs
[    1.257899] calling  vmgenid_plaform_driver_init+0x0/0x30 @ 1
[    1.258370] initcall vmgenid_plaform_driver_init+0x0/0x30 returned 0 after 4 usecs
[    1.258921] calling  extcon_class_init+0x0/0x60 @ 1
[    1.259918] initcall extcon_class_init+0x0/0x60 returned 0 after 4 usecs
[    1.260506] calling  binder_init+0x0/0x280 @ 1
[    1.261001] initcall binder_init+0x0/0x280 returned 0 after 75 usecs
[    1.261564] calling  sock_diag_init+0x0/0x40 @ 1
[    1.261996] initcall sock_diag_init+0x0/0x40 returned 0 after 7 usecs
[    1.262567] calling  init_net_drop_monitor+0x0/0x120 @ 1
[    1.263044] drop_monitor: Initializing network drop monitor service
[    1.263613] initcall init_net_drop_monitor+0x0/0x120 returned 0 after 568 usecs
[    1.264273] calling  blackhole_init+0x0/0x20 @ 1
[    1.264697] initcall blackhole_init+0x0/0x20 returned 0 after 0 usecs
[    1.265271] calling  gre_offload_init+0x0/0x70 @ 1
[    1.265711] initcall gre_offload_init+0x0/0x70 returned 0 after 0 usecs
[    1.266282] calling  sysctl_ipv4_init+0x0/0x80 @ 1
[    1.266691] initcall sysctl_ipv4_init+0x0/0x80 returned 0 after 37 usecs
[    1.267186] calling  cubictcp_register+0x0/0x90 @ 1
[    1.267562] initcall cubictcp_register+0x0/0x90 returned 0 after 0 usecs
[    1.268057] calling  inet6_init+0x0/0x3f0 @ 1
[    1.268415] NET: Registered PF_INET6 protocol family
[    1.272366] Segment Routing with IPv6
[    1.272683] In-situ OAM (IOAM) with IPv6
[    1.273018] initcall inet6_init+0x0/0x3f0 returned 0 after 4622 usecs
[    1.273511] calling  packet_init+0x0/0xa0 @ 1
[    1.273868] NET: Registered PF_PACKET protocol family
[    1.274315] initcall packet_init+0x0/0xa0 returned 0 after 448 usecs
[    1.274798] calling  strp_dev_init+0x0/0x40 @ 1
[    1.275217] initcall strp_dev_init+0x0/0x40 returned 0 after 52 usecs
[    1.275831] calling  dcbnl_init+0x0/0x40 @ 1
[    1.276178] initcall dcbnl_init+0x0/0x40 returned 0 after 2 usecs
[    1.276644] calling  init_dns_resolver+0x0/0x100 @ 1
[    1.277041] Key type dns_resolver registered
[    1.277378] initcall init_dns_resolver+0x0/0x100 returned 0 after 342 usecs
[    1.277892] calling  handshake_init+0x0/0xb0 @ 1
[    1.278269] initcall handshake_init+0x0/0xb0 returned 0 after 9 usecs
[    1.278748] calling  pm_check_save_msr+0x0/0xd0 @ 1
[    1.279138] initcall pm_check_save_msr+0x0/0xd0 returned 0 after 10 usecs
[    1.279641] calling  mcheck_init_device+0x0/0x160 @ 1
[    1.280243] initcall mcheck_init_device+0x0/0x160 returned 0 after 211 usecs
[    1.280778] calling  dev_mcelog_init_device+0x0/0x100 @ 1
[    1.281240] initcall dev_mcelog_init_device+0x0/0x100 returned 0 after 44 usecs
[    1.281825] calling  kernel_do_mounts_initrd_sysctls_init+0x0/0x40 @ 1
[    1.282364] initcall kernel_do_mounts_initrd_sysctls_init+0x0/0x40 returned 0 after 4 usecs
[    1.282975] calling  tboot_late_init+0x0/0x330 @ 1
[    1.283350] initcall tboot_late_init+0x0/0x330 returned 0 after 0 usecs
[    1.283841] calling  intel_epb_init+0x0/0xa0 @ 1
[    1.284200] initcall intel_epb_init+0x0/0xa0 returned -19 after 0 usecs
[    1.284687] calling  mcheck_late_init+0x0/0x90 @ 1
[    1.285067] initcall mcheck_late_init+0x0/0x90 returned 0 after 5 usecs
[    1.285566] calling  severities_debugfs_init+0x0/0x40 @ 1
[    1.285982] initcall severities_debugfs_init+0x0/0x40 returned 0 after 1 usecs
[    1.286525] calling  microcode_init+0x0/0x1f0 @ 1
[    1.286889] initcall microcode_init+0x0/0x1f0 returned -22 after 0 usecs
[    1.287385] calling  resctrl_arch_late_init+0x0/0x5c0 @ 1
[    1.287795] initcall resctrl_arch_late_init+0x0/0x5c0 returned -19 after 0 usecs
[    1.288356] calling  cpu_init_debugfs+0x0/0xf0 @ 1
[    1.288732] initcall cpu_init_debugfs+0x0/0xf0 returned 0 after 7 usecs
[    1.289244] calling  sld_mitigate_sysctl_init+0x0/0x40 @ 1
[    1.290084] initcall sld_mitigate_sysctl_init+0x0/0x40 returned 0 after 1 usecs
[    1.290643] calling  hpet_insert_resource+0x0/0x40 @ 1
[    1.291056] initcall hpet_insert_resource+0x0/0x40 returned 1 after 0 usecs
[    1.291580] calling  start_sync_check_timer+0x0/0x70 @ 1
[    1.291991] initcall start_sync_check_timer+0x0/0x70 returned 0 after 0 usecs
[    1.292520] calling  update_mp_table+0x0/0x610 @ 1
[    1.292888] initcall update_mp_table+0x0/0x610 returned 0 after 0 usecs
[    1.293383] calling  lapic_insert_resource+0x0/0x60 @ 1
[    1.293782] initcall lapic_insert_resource+0x0/0x60 returned 0 after 0 usecs
[    1.294306] calling  print_ipi_mode+0x0/0x40 @ 1
[    1.294666] IPI shorthand broadcast: enabled
[    1.295004] initcall print_ipi_mode+0x0/0x40 returned 0 after 338 usecs
[    1.295502] calling  print_ICs+0x0/0x1e0 @ 1
[    1.295840] initcall print_ICs+0x0/0x1e0 returned 0 after 0 usecs
[    1.296304] calling  setup_efi_kvm_sev_migration+0x0/0x1c0 @ 1
[    1.296744] initcall setup_efi_kvm_sev_migration+0x0/0x1c0 returned 0 after 0 usecs
[    1.297304] calling  create_tlb_single_page_flush_ceiling+0x0/0x40 @ 1
[    1.297793] initcall create_tlb_single_page_flush_ceiling+0x0/0x40 returned 0 after 2 usecs
[    1.298436] calling  pat_memtype_list_init+0x0/0x50 @ 1
[    1.298868] initcall pat_memtype_list_init+0x0/0x50 returned 0 after 2 usecs
[    1.299394] calling  create_init_pkru_value+0x0/0x50 @ 1
[    1.299807] initcall create_init_pkru_value+0x0/0x50 returned 0 after 1 usecs
[    1.300361] calling  kernel_panic_sysctls_init+0x0/0x40 @ 1
[    1.300821] initcall kernel_panic_sysctls_init+0x0/0x40 returned 0 after 5 usecs
[    1.301476] calling  kernel_panic_sysfs_init+0x0/0x30 @ 1
[    1.301891] initcall kernel_panic_sysfs_init+0x0/0x30 returned 0 after 4 usecs
[    1.302431] calling  kernel_exit_sysctls_init+0x0/0x40 @ 1
[    1.302851] initcall kernel_exit_sysctls_init+0x0/0x40 returned 0 after 2 usecs
[    1.303387] calling  kernel_exit_sysfs_init+0x0/0x30 @ 1
[    1.303790] initcall kernel_exit_sysfs_init+0x0/0x30 returned 0 after 1 usecs
[    1.304311] calling  param_sysfs_builtin_init+0x0/0x200 @ 1
[    1.306141] initcall param_sysfs_builtin_init+0x0/0x200 returned 0 after 1412 usecs
[    1.306735] calling  reboot_ksysfs_init+0x0/0x90 @ 1
[    1.307133] initcall reboot_ksysfs_init+0x0/0x90 returned 0 after 8 usecs
[    1.307668] calling  sched_core_sysctl_init+0x0/0x40 @ 1
[    1.308127] initcall sched_core_sysctl_init+0x0/0x40 returned 0 after 4 usecs
[    1.308659] calling  sched_fair_sysctl_init+0x0/0x40 @ 1
[    1.309082] initcall sched_fair_sysctl_init+0x0/0x40 returned 0 after 1 usecs
[    1.309606] calling  sched_rt_sysctl_init+0x0/0x40 @ 1
[    1.309999] initcall sched_rt_sysctl_init+0x0/0x40 returned 0 after 1 usecs
[    1.310521] calling  sched_dl_sysctl_init+0x0/0x40 @ 1
[    1.310914] initcall sched_dl_sysctl_init+0x0/0x40 returned 0 after 1 usecs
[    1.311434] calling  sched_clock_init_late+0x0/0xb0 @ 1
[    1.311836] sched_clock: Marking stable (1228165587, 80909009)->(1442323685, -133249089)
[    1.312488] initcall sched_clock_init_late+0x0/0xb0 returned 0 after 653 usecs
[    1.313031] calling  sched_init_debug+0x0/0x330 @ 1
[    1.313443] initcall sched_init_debug+0x0/0x330 returned 0 after 30 usecs
[    1.313971] calling  cpu_latency_qos_init+0x0/0x60 @ 1
[    1.314466] initcall cpu_latency_qos_init+0x0/0x60 returned 0 after 70 usecs
[    1.314989] calling  pm_debugfs_init+0x0/0x40 @ 1
[    1.315392] initcall pm_debugfs_init+0x0/0x40 returned 0 after 1 usecs
[    1.315967] calling  printk_late_init+0x0/0x180 @ 1
[    1.316394] initcall printk_late_init+0x0/0x180 returned 0 after 7 usecs
[    1.316893] calling  init_srcu_module_notifier+0x0/0x50 @ 1
[    1.317326] initcall init_srcu_module_notifier+0x0/0x50 returned 0 after 1 usecs
[    1.317870] calling  swiotlb_create_default_debugfs+0x0/0xb0 @ 1
[    1.318336] initcall swiotlb_create_default_debugfs+0x0/0xb0 returned 0 after 7 usecs
[    1.318915] calling  tk_debug_sleep_time_init+0x0/0x40 @ 1
[    1.319742] initcall tk_debug_sleep_time_init+0x0/0x40 returned 0 after 1 usecs
[    1.320279] calling  bpf_ksym_iter_register+0x0/0x30 @ 1
[    1.320680] initcall bpf_ksym_iter_register+0x0/0x30 returned 0 after 0 usecs
[    1.321209] calling  kernel_acct_sysctls_init+0x0/0x40 @ 1
[    1.321648] initcall kernel_acct_sysctls_init+0x0/0x40 returned 0 after 1 usecs
[    1.322207] calling  kexec_core_sysctl_init+0x0/0x40 @ 1
[    1.322623] initcall kexec_core_sysctl_init+0x0/0x40 returned 0 after 1 usecs
[    1.323142] calling  bpf_rstat_kfunc_init+0x0/0x30 @ 1
[    1.323556] initcall bpf_rstat_kfunc_init+0x0/0x30 returned 0 after 1 usecs
[    1.324074] calling  debugfs_kprobe_init+0x0/0x90 @ 1
[    1.324484] initcall debugfs_kprobe_init+0x0/0x90 returned 0 after 4 usecs
[    1.325006] calling  kernel_delayacct_sysctls_init+0x0/0x40 @ 1
[    1.325464] initcall kernel_delayacct_sysctls_init+0x0/0x40 returned 0 after 1 usecs
[    1.326025] calling  taskstats_init+0x0/0x50 @ 1
[    1.326402] registered taskstats version 1
[    1.326724] initcall taskstats_init+0x0/0x50 returned 0 after 330 usecs
[    1.327214] calling  ftrace_sysctl_init+0x0/0x30 @ 1
[    1.327595] initcall ftrace_sysctl_init+0x0/0x30 returned 0 after 1 usecs
[    1.328094] calling  init_hwlat_tracer+0x0/0x130 @ 1
[    1.328552] initcall init_hwlat_tracer+0x0/0x130 returned 0 after 79 usecs
[    1.329070] calling  bpf_key_sig_kfuncs_init+0x0/0x20 @ 1
[    1.329487] initcall bpf_key_sig_kfuncs_init+0x0/0x20 returned 0 after 0 usecs
[    1.330040] calling  bpf_kprobe_multi_kfuncs_init+0x0/0x20 @ 1
[    1.330675] initcall bpf_kprobe_multi_kfuncs_init+0x0/0x20 returned 0 after 0 usecs
[    1.331291] calling  kdb_ftrace_register+0x0/0x20 @ 1
[    1.331678] initcall kdb_ftrace_register+0x0/0x20 returned 0 after 1 usecs
[    1.332184] calling  bpf_global_ma_init+0x0/0x30 @ 1
[    1.332596] initcall bpf_global_ma_init+0x0/0x30 returned 0 after 21 usecs
[    1.333189] calling  bpf_syscall_sysctl_init+0x0/0x40 @ 1
[    1.333619] initcall bpf_syscall_sysctl_init+0x0/0x40 returned 0 after 3 usecs
[    1.334156] calling  unbound_reg_init+0x0/0x30 @ 1
[    1.334537] initcall unbound_reg_init+0x0/0x30 returned 0 after 0 usecs
[    1.335033] calling  kfunc_init+0x0/0x100 @ 1
[    1.335378] initcall kfunc_init+0x0/0x100 returned 0 after 0 usecs
[    1.335849] calling  bpf_map_iter_init+0x0/0x50 @ 1
[    1.336232] initcall bpf_map_iter_init+0x0/0x50 returned 0 after 0 usecs
[    1.336737] calling  init_subsystem+0x0/0x30 @ 1
[    1.337164] initcall init_subsystem+0x0/0x30 returned 0 after 0 usecs
[    1.337866] calling  task_iter_init+0x0/0xe0 @ 1
[    1.338046] ata1.00: ATA-7: QEMU HARDDISK, 2.5+, max UDMA/100
[    1.338420] initcall task_iter_init+0x0/0xe0 returned 0 after 124 usecs
[    1.339021] ata1.00: 83886080 sectors, multi 16: LBA48 
[    1.339514] calling  bpf_prog_iter_init+0x0/0x30 @ 1
[    1.340160] ata1.01: ATA-7: QEMU HARDDISK, 2.5+, max UDMA/100
[    1.340536] initcall bpf_prog_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.341247] ata1.01: 104857600 sectors, multi 16: LBA48 
[    1.341757] calling  bpf_link_iter_init+0x0/0x30 @ 1
[    1.342873] initcall bpf_link_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.343434] calling  init_trampolines+0x0/0x30 @ 1
[    1.343835] initcall init_trampolines+0x0/0x30 returned 0 after 0 usecs
[    1.344396] calling  rqspinlock_register_kfuncs+0x0/0x30 @ 1
[    1.344831] initcall rqspinlock_register_kfuncs+0x0/0x30 returned 0 after 0 usecs
[    1.345395] calling  kfunc_init+0x0/0x30 @ 1
[    1.345734] initcall kfunc_init+0x0/0x30 returned 0 after 0 usecs
[    1.346217] calling  bpf_cgroup_iter_init+0x0/0x30 @ 1
[    1.346758] scsi 0:0:0:0: Direct-Access     ATA      QEMU HARDDISK    2.5+ PQ: 0 ANSI: 5
[    1.347464] initcall bpf_cgroup_iter_init+0x0/0x30 returned 0 after 783 usecs
[    1.348087] calling  cpumask_kfunc_init+0x0/0xb0 @ 1
[    1.348539] initcall cpumask_kfunc_init+0x0/0xb0 returned 0 after 2 usecs
[    1.349145] calling  crypto_kfunc_init+0x0/0xb0 @ 1
[    1.349290] probe of 0:0:0:0 returned 19 after 8 usecs
[    1.349990] initcall crypto_kfunc_init+0x0/0xb0 returned 0 after 0 usecs
[    1.350944] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.351241] calling  bpf_kmem_cache_iter_init+0x0/0x30 @ 1
[    1.351913] sd 0:0:0:0: [sda] 83886080 512-byte logical blocks: (42.9 GB/40.0 GiB)
[    1.352368] initcall bpf_kmem_cache_iter_init+0x0/0x30 returned 0 after 1 usecs
[    1.353695] sd 0:0:0:0: [sda] Write Protect is off
[    1.353896] calling  load_system_certificate_list+0x0/0x40 @ 1
[    1.354474] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.354927] Loading compiled-in X.509 certificates
[    1.355567] scsi 0:0:1:0: Direct-Access     ATA      QEMU HARDDISK    2.5+ PQ: 0 ANSI: 5
[    1.356071] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.356488] Loaded X.509 cert 'Build time autogenerated kernel key: 63dcfa1705afed8feebbcaee12f1a32f27ca64ce'
[    1.356489] initcall load_system_certificate_list+0x0/0x40 returned 0 after 1562 usecs
[    1.356493] calling  vmstat_late_init+0x0/0x30 @ 1
[    1.356497] initcall vmstat_late_init+0x0/0x30 returned 0 after 1 usecs
[    1.356499] calling  fault_around_debugfs+0x0/0x40 @ 1
[    1.356505] initcall fault_around_debugfs+0x0/0x40 returned 0 after 4 usecs
[    1.356507] calling  slab_sysfs_init+0x0/0x110 @ 1
[    1.357076] probe of 0:0:1:0 returned 19 after 4 usecs
[    1.357985] sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[    1.358516] initcall slab_sysfs_init+0x0/0x110 returned 0 after 2007 usecs
[    1.358520] calling  max_swapfiles_check+0x0/0x20 @ 1
[    1.358522] initcall max_swapfiles_check+0x0/0x20 returned 0 after 0 usecs
[    1.358524] calling  zswap_init+0x0/0x30 @ 1
[    1.358525] initcall zswap_init+0x0/0x30 returned 0 after 0 usecs
[    1.358527] calling  hugetlb_vmemmap_init+0x0/0x90 @ 1
[    1.358534] initcall hugetlb_vmemmap_init+0x0/0x90 returned 0 after 5 usecs
[    1.358536] calling  mempolicy_sysfs_init+0x0/0x2b0 @ 1
[    1.358542] initcall mempolicy_sysfs_init+0x0/0x2b0 returned 0 after 3 usecs
[    1.358544] calling  memory_tier_late_init+0x0/0xc0 @ 1
[    1.359192] sd 0:0:1:0: [sdb] 104857600 512-byte logical blocks: (53.7 GB/50.0 GiB)
[    1.359867] sd 0:0:1:0: Attached scsi generic sg1 type 0
[    1.360431] sd 0:0:1:0: [sdb] Write Protect is off
[    1.361038] Demotion targets for Node 0: null
[    1.361651] sd 0:0:1:0: [sdb] Mode Sense: 00 3a 00 00
[    1.362209] initcall memory_tier_late_init+0x0/0xc0 returned 0 after 3663 usecs
[    1.362834] sd 0:0:1:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.363204] calling  split_huge_pages_debugfs+0x0/0x40 @ 1
[    1.363972] sd 0:0:1:0: [sdb] Preferred minimum I/O size 512 bytes
[    1.364481] initcall split_huge_pages_debugfs+0x0/0x40 returned 0 after 12 usecs
[    1.373638] calling  check_early_ioremap_leak+0x0/0x60 @ 1
[    1.374055] initcall check_early_ioremap_leak+0x0/0x60 returned 0 after 0 usecs
[    1.374629] calling  set_hardened_usercopy+0x0/0x40 @ 1
[    1.375028] initcall set_hardened_usercopy+0x0/0x40 returned 1 after 0 usecs
[    1.375544] calling  mg_debugfs_init+0x0/0x40 @ 1
[    1.375911] initcall mg_debugfs_init+0x0/0x40 returned 0 after 6 usecs
[    1.376394] calling  fscrypt_init+0x0/0xf0 @ 1
[    1.376940] Key type .fscrypt registered
[    1.377274] Key type fscrypt-provisioning registered
[    1.377686] initcall fscrypt_init+0x0/0xf0 returned 0 after 940 usecs
[    1.378247] calling  pstore_init+0x0/0x40 @ 1
[    1.378601] initcall pstore_init+0x0/0x40 returned 0 after 7 usecs
[    1.379071] calling  init_root_keyring+0x0/0x20 @ 1
[    1.379990] initcall init_root_keyring+0x0/0x20 returned 0 after 9 usecs
[    1.380494] calling  init_trusted+0x0/0x1c0 @ 1
[    1.380854] initcall init_trusted+0x0/0x1c0 returned 0 after 0 usecs
[    1.381364]  sda: sda1 sda2
[    1.381546] calling  init_encrypted+0x0/0x100 @ 1
[    1.381888] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.382745] probe of 0:0:0:0 returned 0 after 32060 usecs
[    1.386317] calling  cryptd_init+0x0/0xff0 [cryptd] @ 107
[    1.386821] cryptd: max_cpu_qlen set to 1000
[    1.387165] initcall cryptd_init+0x0/0xff0 [cryptd] returned 0 after 381 usecs
[    1.405558] sd 0:0:1:0: [sdb] Attached SCSI disk
[    1.406075] probe of 0:0:1:0 returned 0 after 46923 usecs
[    1.408538] calling  aesni_init+0x0/0xff0 [aesni_intel] @ 107
[    1.409119] initcall aesni_init+0x0/0xff0 [aesni_intel] returned 0 after 122 usecs
[    1.415838] Key type encrypted registered
[    1.416275] initcall init_encrypted+0x0/0x100 returned 0 after 7277 usecs
[    1.416943] calling  init_profile_hash+0x0/0xa0 @ 1
[    1.417343] initcall init_profile_hash+0x0/0xa0 returned 0 after 0 usecs
[    1.417865] calling  integrity_fs_init+0x0/0x70 @ 1
[    1.418290] initcall integrity_fs_init+0x0/0x70 returned 0 after 4 usecs
[    1.418825] calling  init_ima+0x0/0xf0 @ 1
[    1.419244] ima: No TPM chip found, activating TPM-bypass!
[    1.419665] ima: Allocated hash algorithm: sha1
[    1.420023] ima: No architecture policies found
[    1.420392] initcall init_ima+0x0/0xf0 returned 0 after 1150 usecs
[    1.420859] calling  init_evm+0x0/0x140 @ 1
[    1.421203] evm: Initialising EVM extended attributes:
[    1.421630] evm: security.selinux
[    1.421933] evm: security.SMACK64 (disabled)
[    1.422277] evm: security.SMACK64EXEC (disabled)
[    1.422636] evm: security.SMACK64TRANSMUTE (disabled)
[    1.423017] evm: security.SMACK64MMAP (disabled)
[    1.423378] evm: security.apparmor
[    1.423655] evm: security.ima
[    1.423902] evm: security.capability
[    1.424189] evm: HMAC attrs: 0x1
[    1.424482] initcall init_evm+0x0/0x140 returned 0 after 3279 usecs
[    1.424962] calling  crypto_algapi_init+0x0/0x20 @ 1
[    1.425411] initcall crypto_algapi_init+0x0/0x20 returned 0 after 4 usecs
[    1.425960] calling  blk_timeout_init+0x0/0x20 @ 1
[    1.426394] initcall blk_timeout_init+0x0/0x20 returned 0 after 0 usecs
[    1.426912] calling  sed_opal_init+0x0/0xa0 @ 1
[    1.427274] initcall sed_opal_init+0x0/0xa0 returned 0 after 7 usecs
[    1.427754] calling  init_error_injection+0x0/0x80 @ 1
[    1.428291] initcall init_error_injection+0x0/0x80 returned 0 after 140 usecs
[    1.428817] calling  depot_debugfs_init+0x0/0x50 @ 1
[    1.429256] initcall depot_debugfs_init+0x0/0x50 returned 0 after 3 usecs
[    1.429787] calling  pci_resource_alignment_sysfs_init+0x0/0x30 @ 1
[    1.430275] initcall pci_resource_alignment_sysfs_init+0x0/0x30 returned 0 after 8 usecs
[    1.430874] calling  pci_sysfs_init+0x0/0xb0 @ 1
[    1.431276] initcall pci_sysfs_init+0x0/0xb0 returned 0 after 34 usecs
[    1.431783] calling  bert_init+0x0/0x2c0 @ 1
[    1.432135] initcall bert_init+0x0/0x2c0 returned 0 after 1 usecs
[    1.432613] calling  clk_debug_init+0x0/0x130 @ 1
[    1.432998] initcall clk_debug_init+0x0/0x130 returned 0 after 5 usecs
[    1.433532] calling  genpd_debug_init+0x0/0x80 @ 1
[    1.433917] initcall genpd_debug_init+0x0/0x80 returned 0 after 2 usecs
[    1.434436] calling  setup_vcpu_hotplug_event+0x0/0x40 @ 1
[    1.434864] initcall setup_vcpu_hotplug_event+0x0/0x40 returned -19 after 0 usecs
[    1.435422] calling  boot_wait_for_devices+0x0/0x40 @ 1
[    1.435883] initcall boot_wait_for_devices+0x0/0x40 returned -19 after 0 usecs
[    1.436415] calling  dmar_free_unused_resources+0x0/0xd0 @ 1
[    1.436844] initcall dmar_free_unused_resources+0x0/0xd0 returned 0 after 0 usecs
[    1.437405] calling  sync_state_resume_initcall+0x0/0x20 @ 1
[    1.437834] initcall sync_state_resume_initcall+0x0/0x20 returned 0 after 0 usecs
[    1.438385] calling  deferred_probe_initcall+0x0/0xa0 @ 1
[    1.438807] initcall deferred_probe_initcall+0x0/0xa0 returned 0 after 15 usecs
[    1.439782] calling  late_resume_init+0x0/0x1b0 @ 1
[    1.440165] PM:   Magic number: 13:736:418
[    1.440545] initcall late_resume_init+0x0/0x1b0 returned 0 after 379 usecs
[    1.441090] calling  sync_debugfs_init+0x0/0x70 @ 1
[    1.441546] initcall sync_debugfs_init+0x0/0x70 returned 0 after 10 usecs
[    1.442135] calling  charger_manager_init+0x0/0xb0 @ 1
[    1.442638] initcall charger_manager_init+0x0/0xb0 returned 0 after 85 usecs
[    1.443152] calling  dm_init_init+0x0/0x780 @ 1
[    1.443507] initcall dm_init_init+0x0/0x780 returned 0 after 0 usecs
[    1.443975] calling  acpi_cpufreq_init+0x0/0x30 @ 1
[    1.444354] initcall acpi_cpufreq_init+0x0/0x30 returned -19 after 6 usecs
[    1.444859] calling  powernowk8_init+0x0/0x1e0 @ 1
[    1.445289] initcall powernowk8_init+0x0/0x1e0 returned -19 after 0 usecs
[    1.445803] calling  pcc_cpufreq_init+0x0/0x30 @ 1
[    1.446180] initcall pcc_cpufreq_init+0x0/0x30 returned -19 after 5 usecs
[    1.446676] calling  centrino_init+0x0/0x40 @ 1
[    1.447030] initcall centrino_init+0x0/0x40 returned -19 after 0 usecs
[    1.447514] calling  edd_init+0x0/0x320 @ 1
[    1.447843] initcall edd_init+0x0/0x320 returned -19 after 0 usecs
[    1.448302] calling  firmware_memmap_init+0x0/0x50 @ 1
[    1.448703] initcall firmware_memmap_init+0x0/0x50 returned 0 after 12 usecs
[    1.449235] calling  register_update_efi_random_seed+0x0/0x30 @ 1
[    1.449690] initcall register_update_efi_random_seed+0x0/0x30 returned 0 after 0 usecs
[    1.450292] calling  efi_shutdown_init+0x0/0x60 @ 1
[    1.450672] initcall efi_shutdown_init+0x0/0x60 returned -19 after 0 usecs
[    1.451186] calling  efi_rci2_sysfs_init+0x0/0x2c0 @ 1
[    1.451580] initcall efi_rci2_sysfs_init+0x0/0x2c0 returned 0 after 0 usecs
[    1.452092] calling  efi_earlycon_unmap_fb+0x0/0x50 @ 1
[    1.452501] initcall efi_earlycon_unmap_fb+0x0/0x50 returned 0 after 0 usecs
[    1.453060] calling  itmt_legacy_init+0x0/0x60 @ 1
[    1.453453] initcall itmt_legacy_init+0x0/0x60 returned -19 after 0 usecs
[    1.453961] calling  cec_init+0x0/0x1e0 @ 1
[    1.454304] RAS: Correctable Errors collector initialized.
[    1.454721] initcall cec_init+0x0/0x1e0 returned 0 after 423 usecs
[    1.455212] calling  bpf_kfunc_init+0x0/0x170 @ 1
[    1.455581] initcall bpf_kfunc_init+0x0/0x170 returned 0 after 1 usecs
[    1.456074] calling  init_subsystem+0x0/0x30 @ 1
[    1.456438] initcall init_subsystem+0x0/0x30 returned 0 after 0 usecs
[    1.456934] calling  xdp_metadata_init+0x0/0x30 @ 1
[    1.457315] initcall xdp_metadata_init+0x0/0x30 returned 0 after 0 usecs
[    1.457807] calling  bpf_sockmap_iter_init+0x0/0x30 @ 1
[    1.458254] initcall bpf_sockmap_iter_init+0x0/0x30 returned 0 after 1 usecs
[    1.458778] calling  bpf_sk_storage_map_iter_init+0x0/0x30 @ 1
[    1.459214] initcall bpf_sk_storage_map_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.459768] calling  bpf_prog_test_run_init+0x0/0xb0 @ 1
[    1.460168] initcall bpf_prog_test_run_init+0x0/0xb0 returned 0 after 0 usecs
[    1.460693] calling  bpf_dummy_struct_ops_init+0x0/0x20 @ 1
[    1.461150] initcall bpf_dummy_struct_ops_init+0x0/0x20 returned 0 after 0 usecs
[    1.461725] calling  tcp_congestion_default+0x0/0x30 @ 1
[    1.462161] initcall tcp_congestion_default+0x0/0x30 returned 0 after 1 usecs
[    1.462879] calling  inet_blackhole_dev_init+0x0/0x40 @ 1
[    1.463302] initcall inet_blackhole_dev_init+0x0/0x40 returned 0 after 2 usecs
[    1.463854] calling  tcp_bpf_v4_build_proto+0x0/0xa0 @ 1
[    1.464256] initcall tcp_bpf_v4_build_proto+0x0/0xa0 returned 0 after 0 usecs
[    1.464774] calling  udp_bpf_v4_build_proto+0x0/0x50 @ 1
[    1.465189] initcall udp_bpf_v4_build_proto+0x0/0x50 returned 0 after 0 usecs
[    1.465711] calling  bpf_tcp_ca_kfunc_init+0x0/0x40 @ 1
[    1.466134] initcall bpf_tcp_ca_kfunc_init+0x0/0x40 returned 0 after 0 usecs
[    1.466656] calling  pci_mmcfg_late_insert_resources+0x0/0xd0 @ 1
[    1.467115] initcall pci_mmcfg_late_insert_resources+0x0/0xd0 returned 0 after 0 usecs
[    1.467696] calling  software_resume_initcall+0x0/0x190 @ 1
[    1.468124] initcall software_resume_initcall+0x0/0x190 returned -2 after 1 usecs
[    1.468666] calling  lockup_detector_check+0x0/0x80 @ 1
[    1.469083] initcall lockup_detector_check+0x0/0x80 returned 0 after 10 usecs
[    1.470023] calling  ftrace_check_sync+0x0/0x30 @ 1
[    1.470419] initcall ftrace_check_sync+0x0/0x30 returned 0 after 5 usecs
[    1.470919] calling  latency_fsnotify_init+0x0/0x50 @ 1
[    1.471326] initcall latency_fsnotify_init+0x0/0x50 returned 0 after 8 usecs
[    1.471846] calling  trace_eval_sync+0x0/0x30 @ 1
[    1.472209] initcall trace_eval_sync+0x0/0x30 returned 0 after 1 usecs
[    1.472697] calling  late_trace_init+0x0/0xe0 @ 1
[    1.473076] initcall late_trace_init+0x0/0xe0 returned 0 after 0 usecs
[    1.473607] calling  acpi_gpio_handle_deferred_request_irqs+0x0/0xa0 @ 1
[    1.474145] initcall acpi_gpio_handle_deferred_request_irqs+0x0/0xa0 returned 0 after 0 usecs
[    1.474785] calling  clk_disable_unused+0x0/0x190 @ 1
[    1.475175] clk: Disabling unused clocks
[    1.475493] initcall clk_disable_unused+0x0/0x190 returned 0 after 318 usecs
[    1.476020] calling  genpd_power_off_unused+0x0/0xa0 @ 1
[    1.476425] PM: genpd: Disabling unused power domains
[    1.476809] initcall genpd_power_off_unused+0x0/0xa0 returned 0 after 384 usecs
[    1.477427] calling  balloon_wait_finish+0x0/0x110 @ 1
[    1.477822] initcall balloon_wait_finish+0x0/0x110 returned -19 after 0 usecs
[    1.478409] calling  regulator_init_complete+0x0/0x40 @ 1
[    1.478896] initcall regulator_init_complete+0x0/0x40 returned 0 after 0 usecs
[    1.484993] Freeing unused decrypted memory: 2028K
[    1.485772] Freeing unused kernel image (initmem) memory: 4692K
[    1.486178] Write protecting the kernel read-only data: 26624k
[    1.486722] Freeing unused kernel image (text/rodata gap) memory: 548K
[    1.487269] Freeing unused kernel image (rodata/data gap) memory: 440K
[    1.494917] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    1.495362] Run /init as init process
[    1.495631]   with arguments:
[    1.495858]     /init
[    1.496044]     splash
[    1.496222]   with environment:
[    1.496423]     HOME=/
[    1.496582]     TERM=linux
[    1.496755]     BOOT_IMAGE=/vmlinuz-6.15.0-rc5+
[    1.527553] calling  mac_hid_init+0x0/0xff0 [mac_hid] @ 146
[    1.527900] initcall mac_hid_init+0x0/0xff0 [mac_hid] returned 0 after 2 usecs
[    1.529382] calling  floppy_module_init+0x0/0x1e40 [floppy] @ 149
[    1.533315] calling  pacpi_pci_driver_init+0x0/0xff0 [pata_acpi] @ 146
[    1.534055] initcall pacpi_pci_driver_init+0x0/0xff0 [pata_acpi] returned 0 after 179 usecs
[    1.535272] calling  serio_raw_drv_init+0x0/0xff0 [serio_raw] @ 152
[    1.535845] initcall serio_raw_drv_init+0x0/0xff0 [serio_raw] returned 0 after 14 usecs
[    1.537600] calling  input_leds_init+0x0/0xff0 [input_leds] @ 152
[    1.545322] FDC 0 is a S82078B
[    1.546303] initcall floppy_module_init+0x0/0x1e40 [floppy] returned 0 after 8184 usecs
[    1.549158] calling  psmouse_init+0x0/0xa0 [psmouse] @ 142
[    1.549150] calling  drm_core_init+0x0/0xb0 [drm] @ 156
[    1.549828] initcall psmouse_init+0x0/0xa0 [psmouse] returned 0 after 28 usecs
[    1.550443] ACPI: bus type drm_connector registered
[    1.551843] initcall drm_core_init+0x0/0xb0 [drm] returned 0 after 1414 usecs
[    1.552095] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4
[    1.563391] calling  qxl_pci_driver_init+0x0/0xff0 [qxl] @ 156
[    1.574963] Console: switching to colour dummy device 80x25
[    1.575311] qxl 0000:00:02.0: vgaarb: deactivate vga console
[    1.575645] [drm] Device Version 0.0
[    1.575859] [drm] Compression level 0 log level 0
[    1.576121] [drm] 12286 io pages at offset 0x1000000
[    1.576397] [drm] 16777216 byte draw area at offset 0x0
[    1.576685] [drm] RAM header offset: 0x3ffe000
[    1.577082] [drm] qxl: 16M of VRAM memory size
[    1.577368] [drm] qxl: 63M of IO pages memory ready (VRAM domain)
[    1.577717] [drm] qxl: 64M of Surface memory size
[    1.578773] [drm] slot 0 (main): base 0xf4000000, size 0x03ffe000
[    1.579162] [drm] slot 1 (surfaces): base 0xf8000000, size 0x04000000
[    1.579721] [drm] Initialized qxl 0.1.0 for 0000:00:02.0 on minor 0
[    1.580950] fbcon: qxldrmfb (fb0) is primary device
[    1.582910] Console: switching to colour frame buffer device 128x48
[    1.591338] qxl 0000:00:02.0: [drm] fb0: qxldrmfb frame buffer device
[    1.617065] initcall input_leds_init+0x0/0xff0 [input_leds] returned 0 after 53326 usecs
[    1.618103] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3
[    1.619064] probe of serio1 returned 0 after 67866 usecs
[    1.623002] probe of 0000:00:02.0 returned 0 after 59256 usecs
[    1.623624] initcall qxl_pci_driver_init+0x0/0xff0 [qxl] returned 0 after 59886 usecs
[    1.678944] calling  linear_init+0x0/0xff0 [linear] @ 190
[    1.679357] initcall linear_init+0x0/0xff0 [linear] returned 0 after 1 usecs
[    1.952641] EXT4-fs (sda2): mounted filesystem 3516f70c-4dd9-4b0f-bac4-c41778d09bbb ro with ordered data mode. Quota mode: none.
[    1.999203] EXT4-fs (sda2): re-mounted 3516f70c-4dd9-4b0f-bac4-c41778d09bbb r/w.
[    2.012327] EXT4-fs (sda2): re-mounted 3516f70c-4dd9-4b0f-bac4-c41778d09bbb.
[    2.114606] systemd[1]: RTC configured in localtime, applying delta of 480 minutes to system time.
[    2.129712] calling  init_autofs_fs+0x0/0x40 [autofs4] @ 1
[    2.130219] initcall init_autofs_fs+0x0/0x40 [autofs4] returned 0 after 61 usecs
[    2.131014] systemd[1]: Inserted module 'autofs4'
[    2.134712] calling  xt_init+0x0/0xff0 [x_tables] @ 1
[    2.135169] initcall xt_init+0x0/0xff0 [x_tables] returned 0 after 2 usecs
[    2.137254] calling  ip_tables_init+0x0/0xff0 [ip_tables] @ 1
[    2.137760] initcall ip_tables_init+0x0/0xff0 [ip_tables] returned 0 after 5 usecs
[    2.144750] systemd[1]: systemd 245.4-4kylin3.11k30 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)
[    2.146666] systemd[1]: Detected virtualization kvm.
[    2.147121] systemd[1]: Detected architecture x86-64.
[    2.147598] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[    2.169523] systemd[1]: Set hostname to <standardpc>.
[    2.293312] systemd[1]: Configuration file /lib/systemd/system/vdi_usbmagicd.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    2.294679] systemd[1]: Configuration file /lib/systemd/system/vdi_usbipd.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    2.296020] systemd[1]: Configuration file /lib/systemd/system/vdi_super_agent.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    2.302560] systemd[1]: Configuration file /etc/systemd/system/runsunloginclient.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    2.336332] systemd[1]: Created slice system-modprobe.slice.
[    2.336905] systemd[1]: Created slice system-serial\x2dgetty.slice.
[    2.337569] systemd[1]: Created slice User and Session Slice.
[    2.338113] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    2.338896] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    2.339691] systemd[1]: Reached target User and Group Name Lookups.
[    2.340223] systemd[1]: Reached target Remote File Systems.
[    2.340722] systemd[1]: Reached target Slices.
[    2.341151] systemd[1]: Reached target Swap.
[    2.341595] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    2.342225] systemd[1]: Listening on LVM2 poll daemon socket.
[    2.342621] systemd[1]: Listening on Syslog Socket.
[    2.343527] systemd[1]: Listening on Process Core Dump Socket.
[    2.343890] systemd[1]: Listening on fsck to fsckd communication Socket.
[    2.344315] systemd[1]: Listening on initctl Compatibility Named Pipe.
[    2.346010] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
[    2.346489] systemd[1]: Listening on Journal Socket (/dev/log).
[    2.346864] systemd[1]: Listening on Journal Socket.
[    2.347185] systemd[1]: Listening on udev Control Socket.
[    2.347513] systemd[1]: Listening on udev Kernel Socket.
[    2.369089] systemd[1]: Mounting Huge Pages File System...
[    2.370436] systemd[1]: Mounting POSIX Message Queue File System...
[    2.371846] systemd[1]: Mounting Kernel Debug File System...
[    2.372752] systemd[1]: Mounting Kernel Trace File System...
[    2.374072] systemd[1]: Starting Journal Service...
[    2.374821] systemd[1]: Starting Availability of block devices...
[    2.375763] systemd[1]: Starting Set the console keyboard layout...
[    2.376882] systemd[1]: Starting Create list of static device nodes for the current kernel...
[    2.378217] systemd[1]: Starting update duration after shutdown or reboot...
[    2.379329] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[    2.380324] systemd[1]: Condition check resulted in Load Kernel Module drm being skipped.
[    2.381368] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[    2.382136] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[    2.383652] systemd[1]: Starting Load Kernel Modules...
[    2.384702] systemd[1]: Starting Remount Root and Kernel File Systems...
[    2.388946] systemd[1]: Starting udev Coldplug all Devices...
[    2.390240] systemd[1]: Starting Uncomplicated firewall...
[    2.393538] systemd[1]: Mounted Huge Pages File System.
[    2.394248] systemd[1]: Mounted POSIX Message Queue File System.
[    2.394312] systemd[1]: Mounted Kernel Debug File System.
[    2.394362] systemd[1]: Mounted Kernel Trace File System.
[    2.394585] systemd[1]: Finished Availability of block devices.
[    2.396075] systemd[1]: Finished Create list of static device nodes for the current kernel.
[    2.398057] systemd[1]: Finished update duration after shutdown or reboot.
[    2.398735] systemd[1]: Finished Uncomplicated firewall.
[    2.399284] calling  parport_default_proc_register+0x0/0xff0 [parport] @ 345
[    2.399683] initcall parport_default_proc_register+0x0/0xff0 [parport] returned 0 after 14 usecs
[    2.406488] calling  lp_init_module+0x0/0xff0 [lp] @ 345
[    2.409087] EXT4-fs (sda2): re-mounted 3516f70c-4dd9-4b0f-bac4-c41778d09bbb.
[    2.410918] systemd[1]: Finished Remount Root and Kernel File Systems.
[    2.413316] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
[    2.414069] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
[    2.414572] lp: driver loaded but no devices found
[    2.415041] initcall lp_init_module+0x0/0xff0 [lp] returned 0 after 8239 usecs
[    2.415236] systemd[1]: Starting Load/Save Random Seed...
[    2.416844] systemd[1]: Starting Create System Users...
[    2.417797] systemd[1]: Started Journal Service.
[    2.419588] calling  ppdev_init+0x0/0xff0 [ppdev] @ 345
[    2.421784] ppdev: user-space parallel port driver
[    2.422152] initcall ppdev_init+0x0/0xff0 [ppdev] returned 0 after 2190 usecs
[    2.424875] calling  parport_pc_init+0x0/0xef0 [parport_pc] @ 345
[    2.425382] probe of parport_pc.956 returned 0 after 7 usecs
[    2.425752] probe of parport0 returned 19 after 3 usecs
[    2.426253] probe of parport0 returned 19 after 20 usecs
[    2.426869] probe of parport_pc.888 returned 0 after 5 usecs
[    2.427376] probe of parport0 returned 19 after 13 usecs
[    2.427837] probe of parport0 returned 19 after 3 usecs
[    2.428452] probe of parport_pc.632 returned 0 after 12 usecs
[    2.428984] probe of parport0 returned 19 after 2 usecs
[    2.429442] probe of parport0 returned 19 after 4 usecs
[    2.430001] initcall parport_pc_init+0x0/0xef0 [parport_pc] returned 0 after 4674 usecs
[    2.450533] calling  vmw_pci_driver_init+0x0/0xff0 [vmwgfx] @ 345
[    2.450965] initcall vmw_pci_driver_init+0x0/0xff0 [vmwgfx] returned 0 after 24 usecs
[    2.454423] calling  usbip_core_init+0x0/0xff0 [usbip_core] @ 345
[    2.454854] initcall usbip_core_init+0x0/0xff0 [usbip_core] returned 0 after 44 usecs
[    2.457024] calling  vhci_hcd_init+0x0/0xff0 [vhci_hcd] @ 345
[    2.457477] probe of vhci_hcd.0 returned 0 after 12 usecs
[    2.457843] faux_driver vhci_hcd.0: USB/IP Virtual Host Controller
[    2.458353] faux_driver vhci_hcd.0: new USB bus registered, assigned bus number 3
[    2.458831] vhci_hcd: created sysfs vhci_hcd.0
[    2.459163] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.15
[    2.459620] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.460051] usb usb3: Product: USB/IP Virtual Host Controller
[    2.460327] usb usb3: Manufacturer: Linux 6.15.0-rc5+ vhci_hcd
[    2.460606] usb usb3: SerialNumber: vhci_hcd.0
[    2.460919] hub 3-0:1.0: USB hub found
[    2.461150] hub 3-0:1.0: 8 ports detected
[    2.461475] probe of 3-0:1.0 returned 0 after 559 usecs
[    2.461825] probe of usb3 returned 0 after 935 usecs
[    2.462149] faux_driver vhci_hcd.0: USB/IP Virtual Host Controller
[    2.462491] faux_driver vhci_hcd.0: new USB bus registered, assigned bus number 4
[    2.462897] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.463414] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.15
[    2.463903] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.464402] usb usb4: Product: USB/IP Virtual Host Controller
[    2.464847] usb usb4: Manufacturer: Linux 6.15.0-rc5+ vhci_hcd
[    2.465239] usb usb4: SerialNumber: vhci_hcd.0
[    2.465612] hub 4-0:1.0: USB hub found
[    2.465868] hub 4-0:1.0: 8 ports detected
[    2.466387] probe of 4-0:1.0 returned 0 after 777 usecs
[    2.466709] probe of usb4 returned 0 after 1116 usecs
[    2.467031] initcall vhci_hcd_init+0x0/0xff0 [vhci_hcd] returned 0 after 9587 usecs
[    2.496285] calling  fq_codel_module_init+0x0/0xff0 [sch_fq_codel] @ 375
[    2.496734] initcall fq_codel_module_init+0x0/0xff0 [sch_fq_codel] returned 0 after 1 usecs
[    2.600748] calling  failover_init+0x0/0xff0 [failover] @ 394
[    2.601285] initcall failover_init+0x0/0xff0 [failover] returned 0 after 4 usecs
[    2.603187] calling  net_failover_init+0x0/0xff0 [net_failover] @ 394
[    2.603719] initcall net_failover_init+0x0/0xff0 [net_failover] returned 0 after 0 usecs
[    2.606743] calling  fw_cfg_sysfs_init+0x0/0xff0 [qemu_fw_cfg] @ 384
[    2.608536] calling  smbalert_driver_init+0x0/0xff0 [i2c_smbus] @ 382
[    2.608552] calling  init_soundcore+0x0/0xff0 [soundcore] @ 392
[    2.609592] initcall init_soundcore+0x0/0xff0 [soundcore] returned 0 after 8 usecs
[    2.609602] initcall smbalert_driver_init+0x0/0xff0 [i2c_smbus] returned 0 after 18 usecs
[    2.612821] probe of QEMU0002:00 returned 0 after 5553 usecs
[    2.614920] initcall fw_cfg_sysfs_init+0x0/0xff0 [qemu_fw_cfg] returned 0 after 5335 usecs
[    2.616248] calling  virtio_net_driver_init+0x0/0xff0 [virtio_net] @ 394
[    2.618185] calling  virtio_input_driver_init+0x0/0xff0 [virtio_input] @ 377
[    2.618980] calling  piix4_driver_init+0x0/0xff0 [i2c_piix4] @ 382
[    2.622367] piix4_smbus 0000:00:01.3: SMBus Host Controller at 0x700, revision 0
[    2.627971] calling  joydev_init+0x0/0xff0 [joydev] @ 385
[    2.628352] initcall joydev_init+0x0/0xff0 [joydev] returned 0 after 1 usecs
[    2.634331] i2c i2c-0: Memory type 0x07 not supported yet, not instantiating SPD
[    2.635044] probe of 0000:00:01.3 returned 0 after 12720 usecs
[    2.635463] initcall piix4_driver_init+0x0/0xff0 [i2c_piix4] returned 0 after 7113 usecs
[    2.641012] calling  alsa_sound_init+0x0/0xa0 [snd] @ 404
[    2.645361] initcall alsa_sound_init+0x0/0xa0 [snd] returned 0 after 3917 usecs
[    2.651354] probe of virtio0 returned 0 after 34246 usecs
[    2.655730] input: QEMU Virtio Tablet as /devices/pci0000:00/0000:00:06.0/virtio1/input/input5
[    2.659081] initcall virtio_net_driver_init+0x0/0xff0 [virtio_net] returned 0 after 17637 usecs
[    2.661152] probe of virtio1 returned 0 after 42182 usecs
[    2.662434] initcall virtio_input_driver_init+0x0/0xff0 [virtio_input] returned 0 after 20991 usecs
[    2.675574] calling  alsa_timer_init+0x0/0xff0 [snd_timer] @ 411
[    2.732953] initcall alsa_timer_init+0x0/0xff0 [snd_timer] returned 0 after 56784 usecs
[    2.746893] virtio_net virtio0 ens3: renamed from eth0
[    2.759909] calling  alsa_seq_device_init+0x0/0xff0 [snd_seq_device] @ 411
[    2.760525] initcall alsa_seq_device_init+0x0/0xff0 [snd_seq_device] returned 0 after 29 usecs
[    2.769757] calling  alsa_seq_init+0x0/0x60 [snd_seq] @ 523
[    2.771196] initcall alsa_seq_init+0x0/0x60 [snd_seq] returned 0 after 821 usecs
[    2.772026] calling  cstate_pmu_init+0x0/0xff0 [intel_cstate] @ 388
[    2.772575] initcall cstate_pmu_init+0x0/0xff0 [intel_cstate] returned -19 after 0 usecs
[    2.780586] calling  alsa_rawmidi_init+0x0/0xff0 [snd_rawmidi] @ 557
[    2.781158] initcall alsa_rawmidi_init+0x0/0xff0 [snd_rawmidi] returned 0 after 70 usecs
[    2.793046] EXT4-fs (sdb): recovery complete
[    2.795431] EXT4-fs (sdb): mounted filesystem 1b1b0571-175b-4b83-9612-38293c03950b r/w with ordered data mode. Quota mode: none.
[    2.799711] calling  seq_midisynth_driver_init+0x0/0xff0 [snd_seq_midi] @ 560
[    2.800117] initcall seq_midisynth_driver_init+0x0/0xff0 [snd_seq_midi] returned 0 after 18 usecs
[    2.800686] EXT4-fs (sda1): warning: mounting fs with errors, running e2fsck is recommended
[    2.803007] EXT4-fs (sda1): recovery complete
[    2.804997] EXT4-fs (sda1): mounted filesystem cfaaa870-4d52-434c-8626-a398f6c7edd3 r/w with ordered data mode. Quota mode: none.
[    2.809971] calling  alsa_pcm_init+0x0/0xff0 [snd_pcm] @ 567
[    2.810382] initcall alsa_pcm_init+0x0/0xff0 [snd_pcm] returned 0 after 3 usecs
[    2.814757] calling  ac97_bus_init+0x0/0xff0 [ac97_bus] @ 392
[    2.815649] initcall ac97_bus_init+0x0/0xff0 [ac97_bus] returned 0 after 389 usecs
[    2.843447] calling  rapl_pmu_init+0x0/0xdb0 [rapl] @ 390
[    2.844012] RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer
[    2.844457] initcall rapl_pmu_init+0x0/0xdb0 [rapl] returned 0 after 486 usecs
[    2.846236] calling  intel8x0_driver_init+0x0/0xff0 [snd_intel8x0] @ 392
[    2.851421] calling  sha1_ssse3_mod_init+0x0/0xff0 [sha1_ssse3] @ 382
[    2.852005] initcall sha1_ssse3_mod_init+0x0/0xff0 [sha1_ssse3] returned 0 after 13 usecs
[    2.854467] calling  sha256_ssse3_mod_init+0x0/0xff0 [sha256_ssse3] @ 388
[    2.855044] initcall sha256_ssse3_mod_init+0x0/0xff0 [sha256_ssse3] returned 0 after 14 usecs
[    2.858262] calling  sha512_ssse3_mod_init+0x0/0xff0 [sha512_ssse3] @ 390
[    2.858987] initcall sha512_ssse3_mod_init+0x0/0xff0 [sha512_ssse3] returned 0 after 16 usecs
[    2.861198] calling  ghash_pclmulqdqni_mod_init+0x0/0xff0 [ghash_clmulni_intel] @ 382
[    2.861624] initcall ghash_pclmulqdqni_mod_init+0x0/0xff0 [ghash_clmulni_intel] returned 0 after 6 usecs
[    2.866948] ACPI: \_SB_.LNKA: Enabled at IRQ 11
[    2.867395] snd_intel8x0 0000:00:05.0: enable KVM optimization
[    2.908202] calling  kvm_x86_init+0x0/0x50 [kvm] @ 384
[    2.908559] initcall kvm_x86_init+0x0/0x50 [kvm] returned 0 after 16 usecs
[    2.921795] calling  vmx_init+0x0/0x1c0 [kvm_intel] @ 382
[    2.954887] initcall vmx_init+0x0/0x1c0 [kvm_intel] returned 0 after 32536 usecs
[    2.972687] calling  rapl_init+0x0/0xff0 [intel_rapl_common] @ 384
[    2.973337] initcall rapl_init+0x0/0xff0 [intel_rapl_common] returned 0 after 47 usecs
[    2.998750] calling  intel_rapl_msr_driver_init+0x0/0xff0 [intel_rapl_msr] @ 395
[    2.999252] intel_rapl_msr: PL4 support detected.
[    2.999873] probe of intel_rapl_msr.0 returned 19 after 625 usecs
[    2.999883] initcall intel_rapl_msr_driver_init+0x0/0xff0 [intel_rapl_msr] returned 0 after 650 usecs
[    3.132682] probe of 0000:00:05.0 returned 0 after 285695 usecs
[    3.133134] initcall intel8x0_driver_init+0x0/0xff0 [snd_intel8x0] returned 0 after 133901 usecs
[    3.449969] calling  pppox_init+0x0/0xff0 [pppox] @ 935
[    3.450518] NET: Registered PF_PPPOX protocol family
[    3.450992] initcall pppox_init+0x0/0xff0 [pppox] returned 0 after 474 usecs
[    3.478227] calling  udp_tunnel_nic_init_module+0x0/0xff0 [udp_tunnel] @ 947
[    3.478858] initcall udp_tunnel_nic_init_module+0x0/0xff0 [udp_tunnel] returned 0 after 8 usecs
[    3.514774] calling  l2tp_init+0x0/0xff0 [l2tp_core] @ 947
[    3.515168] l2tp_core: L2TP core driver, V2.0
[    3.515446] initcall l2tp_init+0x0/0xff0 [l2tp_core] returned 0 after 284 usecs
[    3.522006] calling  l2tp_nl_init+0x0/0xff0 [l2tp_netlink] @ 947
[    3.522599] l2tp_netlink: L2TP netlink interface
[    3.523070] initcall l2tp_nl_init+0x0/0xff0 [l2tp_netlink] returned 0 after 471 usecs
[    3.538162] calling  pppol2tp_init+0x0/0xff0 [l2tp_ppp] @ 947
[    3.540732] l2tp_ppp: PPPoL2TP kernel driver, V2.0
[    3.541213] initcall pppol2tp_init+0x0/0xff0 [l2tp_ppp] returned 0 after 2483 usecs
[    3.682127] calling  xfrm_user_init+0x0/0xff0 [xfrm_user] @ 1109
[    3.682654] Initializing XFRM netlink socket
[    3.683106] initcall xfrm_user_init+0x0/0xff0 [xfrm_user] returned 0 after 451 usecs
[    6.872474] ukui-settings-d[1523]: segfault at 8 ip 00007f72f23a08b5 sp 00007ffc60ccc8b0 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7f72f234d000+3c4000] likely on CPU 3 (core 0, socket 3)
[    6.873724] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[    7.259199] ukui-settings-d[1802]: segfault at 70 ip 00007fc9c0fa08c9 sp 00007ffc5da03530 error 4 in libQt5Widgets.so.5.12.8[1a08c9,7fc9c0f4d000+3c4000] likely on CPU 1 (core 0, socket 1)
[    7.260820] Code: 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 48 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 <48> 8b 45 70 48 85 c0 74 3b 48 8b 50 20 48 85 d2 0f 84 b1 00 00 00
[    8.574982] ukui-settings-d[2045]: segfault at 8 ip 00007efc787a08b5 sp 00007ffc8464e010 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7efc7874d000+3c4000] likely on CPU 0 (core 0, socket 0)
[    8.575913] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[    9.028004] ukui-settings-d[2796]: segfault at 91 ip 00007fdffefa08c9 sp 00007ffcd7f613f0 error 4 in libQt5Widgets.so.5.12.8[1a08c9,7fdffef4d000+3c4000] likely on CPU 1 (core 0, socket 1)
[    9.029787] Code: 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 48 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 <48> 8b 45 70 48 85 c0 74 3b 48 8b 50 20 48 85 d2 0f 84 b1 00 00 00
[    9.438208] ukui-settings-d[3377]: segfault at 8 ip 00007f39eaba08b5 sp 00007ffe94248710 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7f39eab4d000+3c4000] likely on CPU 2 (core 0, socket 2)
[    9.439562] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[    9.772473] ukui-settings-d[3870]: segfault at 8 ip 00007f66b0fa08b5 sp 00007fff0d1ca450 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7f66b0f4d000+3c4000] likely on CPU 1 (core 0, socket 1)
[    9.773817] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[   10.085247] ukui-settings-d[4360]: segfault at 8 ip 00007f223d1a08b5 sp 00007fff052656e0 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7f223d14d000+3c4000] likely on CPU 3 (core 0, socket 3)
[   10.086469] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[   10.410592] ukui-settings-d[4833]: segfault at e1 ip 00007fb6387a08c9 sp 00007ffffa6914b0 error 4 in libQt5Widgets.so.5.12.8[1a08c9,7fb63874d000+3c4000] likely on CPU 0 (core 0, socket 0)
[   10.411840] Code: 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 48 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 <48> 8b 45 70 48 85 c0 74 3b 48 8b 50 20 48 85 d2 0f 84 b1 00 00 00
[   10.771444] ukui-settings-d[4994]: segfault at 8 ip 00007f24d57a08b5 sp 00007fff081875a0 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7f24d574d000+3c4000] likely on CPU 1 (core 0, socket 1)
[   10.772988] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[   11.062210] ukui-settings-d[5015]: segfault at 89 ip 00007f58d21a08b5 sp 00007ffc1bf25ce0 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7f58d214d000+3c4000] likely on CPU 1 (core 0, socket 1)
[   11.063925] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[   61.050580] systemd-journald[337]: Received client request to flush runtime journal.
[   61.069208] systemd-journald[337]: File /var/log/journal/6730bfab70e74566a30d15657f16ea21/system.journal corrupted or uncleanly shut down, renaming and replacing.
[   69.041534] systemd-journald[337]: File /var/log/journal/6730bfab70e74566a30d15657f16ea21/user-1000.journal corrupted or uncleanly shut down, renaming and replacing.
[  290.712361][ T5826] faux_driver vhci_hcd.0: fdev(0) rhport(0) sockfd(3)
[  290.713312][ T5826] faux_driver vhci_hcd.0: devid(262147) speed(5) speed_str(super-speed)
[  290.714541][ T5826] faux_driver vhci_hcd.0: Device attached
[  290.961939][  T167] usb 4-1: SetAddress Request (2) to port 0
[  290.962995][  T167] usb 4-1: new SuperSpeed USB device number 2 using faux_driver
[  290.985436][  T167] usb 4-1: New USB device found, idVendor=0951, idProduct=1666, bcdDevice= 1.10
[  290.985908][  T167] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  290.986291][  T167] usb 4-1: Product: DataTraveler 3.0
[  290.986561][  T167] usb 4-1: Manufacturer: Kingston
[  290.986803][  T167] usb 4-1: SerialNumber: 4CEDFB74A335E611091101EF
[  290.989131][  T167] probe of 4-1 returned 0 after 1919 usecs
[  290.996432][ T5842] calling  usb_storage_driver_init+0x0/0xff0 [usb_storage] @ 5842
[  290.997041][ T5842] usb-storage 4-1:1.0: USB Mass Storage device detected
[  290.997970][ T5842] scsi host2: usb-storage 4-1:1.0
[  290.998426][ T5842] probe of 4-1:1.0 returned 0 after 1395 usecs
[  290.998890][ T5842] usbcore: registered new interface driver usb-storage
[  290.999417][ T5842] initcall usb_storage_driver_init+0x0/0xff0 [usb_storage] returned 0 after 2407 usecs
[  291.001475][ T5842] calling  uas_init+0x0/0xff0 [uas] @ 5842
[  291.001972][ T5842] usbcore: registered new interface driver uas
[  291.002436][ T5842] initcall uas_init+0x0/0xff0 [uas] returned 0 after 527 usecs
[  292.020747][  T365] scsi 2:0:0:0: Direct-Access     Kingston DataTraveler 3.0 PMAP PQ: 0 ANSI: 6
[  292.021476][  T365] probe of 2:0:0:0 returned 19 after 5 usecs
[  292.022474][  T365] sd 2:0:0:0: Attached scsi generic sg2 type 0
[  292.025094][  T944] sd 2:0:0:0: [sdc] 60530688 512-byte logical blocks: (31.0 GB/28.9 GiB)
[  292.026440][  T944] sd 2:0:0:0: [sdc] Write Protect is off
[  292.026781][  T944] sd 2:0:0:0: [sdc] Mode Sense: 45 00 00 00
[  292.027757][  T944] sd 2:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[  292.051146][  T944]  sdc:
[  292.051318][  T944] sd 2:0:0:0: [sdc] Attached SCSI removable disk
[  292.051654][  T944] probe of 2:0:0:0 returned 0 after 29795 usecs
[  292.271632][ T5869] calling  init_exfat_fs+0x0/0xff0 [exfat] @ 5869
[  292.272551][ T5869] initcall init_exfat_fs+0x0/0xff0 [exfat] returned 0 after 57 usecs
[  292.273807][ T5866] exfat: Deprecated parameter 'namecase'
[  292.275070][ T5866] exFAT-fs (sdc): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[  292.321304][ T1932] show_signal_msg: 2 callbacks suppressed
[  292.321307][ T1932] ukui-flash-disk[1932]: segfault at 0 ip 00005574407fedcb sp 00007ffe048ed5c0 error 4 in ukui-flash-disk[40dcb,5574407e5000+61000] likely on CPU 3 (core 0, socket 3)
[  292.323087][ T1932] Code: ff 85 c0 4c 89 ef 0f 95 84 24 e1 00 00 00 e8 1c 8d fe ff 48 8b b4 24 a0 00 00 00 48 89 ef 4c 8b 2d 7a 42 06 00 e8 65 77 ff ff <49> 8b 7d 00 48 89 ee e8 19 ec 00 00 48 89 ef 49 89 c5 e8 1e 64 ff
[  300.929686][ T6058] PM: suspend entry (s2idle)
[  300.974881][ T6058] Filesystems sync: 0.044 seconds
[  301.070534][ T6058] Freezing user space processes
[  301.074002][ T6058] Freezing user space processes completed (elapsed 0.002 seconds)
[  301.074822][ T6058] OOM killer disabled.
[  301.075219][ T6058] Freezing remaining freezable tasks
[  316.530051][    C3] EXT4-fs (sda1): error count since last fsck: 2
[  316.530998][    C3] EXT4-fs (sda1): initial error at time 1692063521: ext4_journal_check_start:61
[  316.532173][    C3] EXT4-fs (sda1): last error at time 1692063521: ext4_journal_check_start:61
[  321.082759][ T6058] Freezing remaining freezable tasks failed after 20.006 seconds (0 tasks refusing to freeze, wq_busy=1):
[  321.084272][ T6058] Showing freezable workqueues that are still busy:
[  321.085156][ T6058] workqueue events_freezable_pwr_efficient: flags=0x86
[  321.086061][ T6058]   pwq 18: cpus=0-3 node=0 flags=0x4 nice=0 active=1 refcnt=2
[  321.086072][ T6058]     in-flight: 95:disk_events_workfn
[  321.086134][ T6058] Restarting kernel threads ... done.
[  321.087986][ T6058] OOM killer enabled.
[  321.088324][ T6058] Restarting tasks ... done.
[  321.090741][ T6058] random: crng reseeded on system resumption
[  321.091296][ T6058] PM: suspend exit

[-- Attachment #3: dmesg-faux bus-device bound-black screen.log --]
[-- Type: text/x-log, Size: 222208 bytes --]

[    0.000000] Linux version 6.15.0-rc5+ (root@standardpc) (gcc (Ubuntu 9.3.0-10kylin2) 9.3.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #10 SMP PREEMPT_DYNAMIC Fri Jun 20 13:38:04 CST 2025
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-6.15.0-rc5+ root=UUID=3516f70c-4dd9-4b0f-bac4-c41778d09bbb ro quiet splash console=ttyS0 loglevel=7 initcall_debug no_console_suspend ignore_loglevel crashkernel=512M-:192M audit=0 security=kysec
[    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] 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-0x00000000bffdefff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bffdf000-0x00000000bfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable
[    0.000000] printk: debug: ignoring loglevel setting.
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] SMBIOS 2.8 present.
[    0.000000] DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.14.0-0-g155821a1990b-prebuilt.qemu.org 04/01/2014
[    0.000000] DMI: Memory slots populated: 1/1
[    0.000000] Hypervisor detected: KVM
[    0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[    0.000000] kvm-clock: using sched offset of 12051610094 cycles
[    0.000001] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    0.000004] tsc: Detected 2803.200 MHz processor
[    0.000545] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000546] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000550] last_pfn = 0x240000 max_arch_pfn = 0x400000000
[    0.000580] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs
[    0.000582] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000619] last_pfn = 0xbffdf max_arch_pfn = 0x400000000
[    0.004732] found SMP MP-table at [mem 0x000f5a40-0x000f5a4f]
[    0.004744] Using GB pages for direct mapping
[    0.004857] RAMDISK: [mem 0x2f169000-0x338abfff]
[    0.004860] ACPI: Early table checksum verification disabled
[    0.004864] ACPI: RSDP 0x00000000000F5A00 000014 (v00 BOCHS )
[    0.004867] ACPI: RSDT 0x00000000BFFE1639 000030 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.004871] ACPI: FACP 0x00000000BFFE150D 000074 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.004875] ACPI: DSDT 0x00000000BFFDFD80 00178D (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.004877] ACPI: FACS 0x00000000BFFDFD40 000040
[    0.004879] ACPI: APIC 0x00000000BFFE1581 000090 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.004880] ACPI: WAET 0x00000000BFFE1611 000028 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.004882] ACPI: Reserving FACP table memory at [mem 0xbffe150d-0xbffe1580]
[    0.004882] ACPI: Reserving DSDT table memory at [mem 0xbffdfd80-0xbffe150c]
[    0.004883] ACPI: Reserving FACS table memory at [mem 0xbffdfd40-0xbffdfd7f]
[    0.004883] ACPI: Reserving APIC table memory at [mem 0xbffe1581-0xbffe1610]
[    0.004884] ACPI: Reserving WAET table memory at [mem 0xbffe1611-0xbffe1638]
[    0.005066] No NUMA configuration found
[    0.005066] Faking a node at [mem 0x0000000000000000-0x000000023fffffff]
[    0.005071] NODE_DATA(0) allocated [mem 0x23ffd59c0-0x23fffffff]
[    0.005545] crashkernel reserved: 0x00000000b3000000 - 0x00000000bf000000 (192 MB)
[    0.005558] Zone ranges:
[    0.005559]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.005560]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.005561]   Normal   [mem 0x0000000100000000-0x000000023fffffff]
[    0.005562]   Device   empty
[    0.005562] Movable zone start for each node
[    0.005563] Early memory node ranges
[    0.005563]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.005564]   node   0: [mem 0x0000000000100000-0x00000000bffdefff]
[    0.005565]   node   0: [mem 0x0000000100000000-0x000000023fffffff]
[    0.005566] Initmem setup node 0 [mem 0x0000000000001000-0x000000023fffffff]
[    0.005824] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.005832] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.024431] On node 0, zone Normal: 33 pages in unavailable ranges
[    0.024697] ACPI: PM-Timer IO Port: 0x608
[    0.024711] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[    0.024739] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
[    0.024740] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.024742] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
[    0.024742] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.024743] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
[    0.024744] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
[    0.024746] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.024748] TSC deadline timer available
[    0.024750] CPU topo: Max. logical packages:   4
[    0.024751] CPU topo: Max. logical dies:       4
[    0.024751] CPU topo: Max. dies per package:   1
[    0.024754] CPU topo: Max. threads per core:   1
[    0.024754] CPU topo: Num. cores per package:     1
[    0.024754] CPU topo: Num. threads per package:   1
[    0.024755] CPU topo: Allowing 4 present CPUs plus 0 hotplug CPUs
[    0.024771] kvm-guest: APIC: eoi() replaced with kvm_guest_apic_eoi_write()
[    0.024783] kvm-guest: KVM setup pv remote TLB flush
[    0.024786] kvm-guest: setup PV sched yield
[    0.024791] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.024792] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[    0.024793] PM: hibernation: Registered nosave memory: [mem 0xbffdf000-0xffffffff]
[    0.024794] [mem 0xc0000000-0xfeffbfff] available for PCI devices
[    0.024795] Booting paravirtualized kernel on KVM
[    0.024797] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.024801] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.025145] percpu: Embedded 61 pages/cpu s212992 r8192 d28672 u524288
[    0.025149] pcpu-alloc: s212992 r8192 d28672 u524288 alloc=1*2097152
[    0.025150] pcpu-alloc: [0] 0 1 2 3 
[    0.025175] kvm-guest: PV spinlocks enabled
[    0.025176] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear)
[    0.025179] Kernel command line: BOOT_IMAGE=/vmlinuz-6.15.0-rc5+ root=UUID=3516f70c-4dd9-4b0f-bac4-c41778d09bbb ro quiet splash console=ttyS0 loglevel=7 initcall_debug no_console_suspend ignore_loglevel crashkernel=512M-:192M audit=0 security=kysec
[    0.025273] audit: disabled (until reboot)
[    0.025290] Unknown kernel command line parameters "splash BOOT_IMAGE=/vmlinuz-6.15.0-rc5+", will be passed to user space.
[    0.025314] random: crng init done
[    0.025314] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    0.026519] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.027092] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.027161] software IO TLB: area num 4.
[    0.041087] Fallback order for Node 0: 0 
[    0.041092] Built 1 zonelists, mobility grouping on.  Total pages: 2097021
[    0.041093] Policy zone: Normal
[    0.041094] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.052254] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.058952] ftrace: allocating 54134 entries in 212 pages
[    0.058954] ftrace: allocated 212 pages with 4 groups
[    0.059620] Dynamic Preempt: voluntary
[    0.059851] rcu: Preemptible hierarchical RCU implementation.
[    0.059852] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[    0.059854] 	Trampoline variant of Tasks RCU enabled.
[    0.059854] 	Rude variant of Tasks RCU enabled.
[    0.059854] 	Tracing variant of Tasks RCU enabled.
[    0.059855] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.059855] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.059859] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.059861] RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.059862] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.062701] NR_IRQS: 524544, nr_irqs: 456, preallocated irqs: 16
[    0.062882] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.062922] calling  con_init+0x0/0x270 @ 0
[    0.062933] Console: colour dummy device 80x25
[    0.062934] initcall con_init+0x0/0x270 returned 0 after 0 usecs
[    0.062935] calling  hvc_console_init+0x0/0x30 @ 0
[    0.062937] initcall hvc_console_init+0x0/0x30 returned 0 after 0 usecs
[    0.062938] calling  xen_cons_init+0x0/0x60 @ 0
[    0.062941] initcall xen_cons_init+0x0/0x60 returned 0 after 0 usecs
[    0.062942] calling  univ8250_console_init+0x0/0x40 @ 0
[    0.062977] printk: legacy console [ttyS0] enabled
[    0.131563] initcall univ8250_console_init+0x0/0x40 returned 0 after 0 usecs
[    0.132127] calling  kgdboc_earlycon_late_init+0x0/0x40 @ 0
[    0.132567] initcall kgdboc_earlycon_late_init+0x0/0x40 returned 0 after 0 usecs
[    0.133254] ACPI: Core revision 20240827
[    0.133684] APIC: Switch to symmetric I/O mode setup
[    0.134294] x2apic enabled
[    0.134740] APIC: Switched APIC routing to: physical x2apic
[    0.135189] kvm-guest: APIC: send_IPI_mask() replaced with kvm_send_ipi_mask()
[    0.135750] kvm-guest: APIC: send_IPI_mask_allbutself() replaced with kvm_send_ipi_mask_allbutself()
[    0.136440] kvm-guest: setup PV IPIs
[    0.137362] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x28680fa287f, max_idle_ns: 440795281151 ns
[    0.138209] Calibrating delay loop (skipped) preset value.. 5606.40 BogoMIPS (lpj=11212800)
[    0.138978] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.139563] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.139998] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.140476] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.141135] Spectre V2 : Spectre BHI mitigation: SW BHB clearing on syscall and VM exit
[    0.141717] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[    0.142144] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[    0.142205] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.142205] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.142205] GDS: Unknown: Dependent on hypervisor status
[    0.142205] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.142205] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.142205] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.142205] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    0.142205] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.142205] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    0.142205] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.142205] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.142205] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
[    0.142205] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    0.142205] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    0.142205] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    0.142205] x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
[    0.142205] Freeing SMP alternatives memory: 44K
[    0.142205] pid_max: default: 32768 minimum: 301
[    0.142205] LSM: initializing lsm=capability,ima,evm
[    0.142205] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.142205] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.142205] smpboot: CPU0: 11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz (family: 0x6, model: 0x8c, stepping: 0x1)
[    0.142205] calling  init_hw_perf_events+0x0/0x720 @ 1
[    0.142205] Performance Events: Icelake events, full-width counters, Intel PMU driver.
[    0.142205] ... version:                2
[    0.142205] ... bit width:              48
[    0.142205] ... generic registers:      8
[    0.142205] ... value mask:             0000ffffffffffff
[    0.142205] ... max period:             00007fffffffffff
[    0.142205] ... fixed-purpose events:   3
[    0.142209] ... event mask:             00000007000000ff
[    0.142675] initcall init_hw_perf_events+0x0/0x720 returned 0 after 4000 usecs
[    0.143216] calling  mc_debug_enable+0x0/0xa0 @ 1
[    0.143581] initcall mc_debug_enable+0x0/0xa0 returned 0 after 0 usecs
[    0.144064] calling  do_init_real_mode+0x0/0x20 @ 1
[    0.144455] initcall do_init_real_mode+0x0/0x20 returned 0 after 0 usecs
[    0.144974] calling  init_sigframe_size+0x0/0x50 @ 1
[    0.145354] signal: max sigframe size: 3632
[    0.145685] initcall init_sigframe_size+0x0/0x50 returned 0 after 0 usecs
[    0.146189] calling  trace_init_perf_perm_irq_work_exit+0x0/0x20 @ 1
[    0.146207] initcall trace_init_perf_perm_irq_work_exit+0x0/0x20 returned 0 after 0 usecs
[    0.146793] calling  cache_ap_register+0x0/0x70 @ 1
[    0.147173] initcall cache_ap_register+0x0/0x70 returned 0 after 0 usecs
[    0.147675] calling  bp_init_aperfmperf+0x0/0x2c0 @ 1
[    0.148059] initcall bp_init_aperfmperf+0x0/0x2c0 returned 0 after 0 usecs
[    0.148572] calling  save_builtin_microcode+0x0/0xe0 @ 1
[    0.148979] initcall save_builtin_microcode+0x0/0xe0 returned 0 after 0 usecs
[    0.149496] calling  save_microcode_in_initrd+0x0/0x110 @ 1
[    0.149914] initcall save_microcode_in_initrd+0x0/0x110 returned 0 after 0 usecs
[    0.150207] calling  register_nmi_cpu_backtrace_handler+0x0/0x30 @ 1
[    0.150678] initcall register_nmi_cpu_backtrace_handler+0x0/0x30 returned 0 after 0 usecs
[    0.151270] calling  numachip_system_init+0x0/0x80 @ 1
[    0.151666] initcall numachip_system_init+0x0/0x80 returned 0 after 0 usecs
[    0.152184] calling  kvm_setup_vsyscall_timeinfo+0x0/0x190 @ 1
[    0.152619] initcall kvm_setup_vsyscall_timeinfo+0x0/0x190 returned 0 after 0 usecs
[    0.153175] calling  spawn_ksoftirqd+0x0/0x60 @ 1
[    0.154210] initcall spawn_ksoftirqd+0x0/0x60 returned 0 after 4000 usecs
[    0.154733] calling  init_signal_sysctls+0x0/0x40 @ 1
[    0.155124] initcall init_signal_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.155628] calling  init_umh_sysctls+0x0/0x40 @ 1
[    0.155998] initcall init_umh_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.156564] calling  kthreads_init+0x0/0x40 @ 1
[    0.156924] initcall kthreads_init+0x0/0x40 returned 0 after 0 usecs
[    0.157399] calling  migration_init+0x0/0x40 @ 1
[    0.157764] initcall migration_init+0x0/0x40 returned 0 after 0 usecs
[    0.158208] calling  printk_set_kthreads_ready+0x0/0x50 @ 1
[    0.158633] initcall printk_set_kthreads_ready+0x0/0x50 returned 0 after 0 usecs
[    0.159173] calling  srcu_bootup_announce+0x0/0x90 @ 1
[    0.159564] rcu: Hierarchical SRCU implementation.
[    0.159939] rcu: 	Max phase no-delay instances is 1000.
[    0.160343] initcall srcu_bootup_announce+0x0/0x90 returned 0 after 0 usecs
[    0.160859] calling  rcu_spawn_gp_kthread+0x0/0x260 @ 1
[    0.162218] initcall rcu_spawn_gp_kthread+0x0/0x260 returned 0 after 4000 usecs
[    0.162769] calling  check_cpu_stall_init+0x0/0x30 @ 1
[    0.163162] initcall check_cpu_stall_init+0x0/0x30 returned 0 after 0 usecs
[    0.163676] calling  rcu_sysrq_init+0x0/0x40 @ 1
[    0.164049] initcall rcu_sysrq_init+0x0/0x40 returned 0 after 0 usecs
[    0.164528] calling  trace_init_flags_sys_enter+0x0/0x20 @ 1
[    0.164955] initcall trace_init_flags_sys_enter+0x0/0x20 returned 0 after 0 usecs
[    0.165551] calling  trace_init_flags_sys_exit+0x0/0x20 @ 1
[    0.165991] initcall trace_init_flags_sys_exit+0x0/0x20 returned 0 after 0 usecs
[    0.166210] calling  tmigr_init+0x0/0x190 @ 1
[    0.166564] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[    0.167260] initcall tmigr_init+0x0/0x190 returned 0 after 0 usecs
[    0.168188] calling  cpu_stop_init+0x0/0xa0 @ 1
[    0.170210] initcall cpu_stop_init+0x0/0xa0 returned 0 after 4000 usecs
[    0.170761] calling  init_kprobes+0x0/0x1e0 @ 1
[    0.171203] initcall init_kprobes+0x0/0x1e0 returned 0 after 0 usecs
[    0.171692] calling  init_trace_printk+0x0/0x20 @ 1
[    0.172072] initcall init_trace_printk+0x0/0x20 returned 0 after 0 usecs
[    0.172573] calling  event_trace_enable_again+0x0/0x60 @ 1
[    0.173045] initcall event_trace_enable_again+0x0/0x60 returned 0 after 0 usecs
[    0.173590] calling  irq_work_init_threads+0x0/0x10 @ 1
[    0.173993] initcall irq_work_init_threads+0x0/0x10 returned 0 after 0 usecs
[    0.174207] calling  static_call_init+0x0/0xe0 @ 1
[    0.174648] initcall static_call_init+0x0/0xe0 returned 0 after 0 usecs
[    0.175234] calling  jump_label_init_module+0x0/0x20 @ 1
[    0.175717] initcall jump_label_init_module+0x0/0x20 returned 0 after 0 usecs
[    0.176346] calling  init_zero_pfn+0x0/0x50 @ 1
[    0.176769] initcall init_zero_pfn+0x0/0x50 returned 0 after 0 usecs
[    0.177332] calling  init_fs_inode_sysctls+0x0/0x40 @ 1
[    0.177780] initcall init_fs_inode_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.178206] calling  init_fs_locks_sysctls+0x0/0x40 @ 1
[    0.178682] initcall init_fs_locks_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.179306] calling  init_fs_sysctls+0x0/0x40 @ 1
[    0.179741] initcall init_fs_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.180319] calling  init_security_keys_sysctls+0x0/0x40 @ 1
[    0.180831] initcall init_security_keys_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.181412] calling  dynamic_debug_init+0x0/0x2b0 @ 1
[    0.181866] initcall dynamic_debug_init+0x0/0x2b0 returned 0 after 0 usecs
[    0.182207] calling  unpopulated_init+0x0/0x70 @ 1
[    0.182657] initcall unpopulated_init+0x0/0x70 returned -19 after 0 usecs
[    0.183260] calling  efi_memreserve_root_init+0x0/0x40 @ 1
[    0.183753] initcall efi_memreserve_root_init+0x0/0x40 returned 0 after 0 usecs
[    0.184385] calling  efi_earlycon_remap_fb+0x0/0x70 @ 1
[    0.184857] initcall efi_earlycon_remap_fb+0x0/0x70 returned 0 after 0 usecs
[    0.185470] calling  idle_inject_init+0x0/0x20 @ 1
[    0.186211] initcall idle_inject_init+0x0/0x20 returned 0 after 4000 usecs
[    0.187161] smp: Bringing up secondary CPUs ...
[    0.190279] smpboot: x86: Booting SMP configuration:
[    0.190694] .... node  #0, CPUs:      #1 #2 #3
[    0.202241] smp: Brought up 1 node, 4 CPUs
[    0.202921] smpboot: Total of 4 processors activated (22425.60 BogoMIPS)
[    0.203694] Memory: 7856808K/8388084K available (17883K kernel code, 5975K rwdata, 7752K rodata, 4692K init, 5544K bss, 524124K reserved, 0K cma-reserved)
[    0.203694] devtmpfs: initialized
[    0.203694] x86/mm: Memory block size: 128MB
[    0.206771] calling  setup_split_lock_delayed_work+0x0/0xa0 @ 1
[    0.207230] initcall setup_split_lock_delayed_work+0x0/0xa0 returned 0 after 0 usecs
[    0.208152] calling  bpf_jit_charge_init+0x0/0x50 @ 1
[    0.208538] initcall bpf_jit_charge_init+0x0/0x50 returned 0 after 0 usecs
[    0.209043] calling  ipc_ns_init+0x0/0x50 @ 1
[    0.209395] initcall ipc_ns_init+0x0/0x50 returned 0 after 0 usecs
[    0.209863] calling  init_mmap_min_addr+0x0/0x50 @ 1
[    0.210210] initcall init_mmap_min_addr+0x0/0x50 returned 0 after 0 usecs
[    0.210716] calling  pci_realloc_setup_params+0x0/0x90 @ 1
[    0.211135] initcall pci_realloc_setup_params+0x0/0x90 returned 0 after 0 usecs
[    0.211676] calling  inet_frag_wq_init+0x0/0x50 @ 1
[    0.212074] initcall inet_frag_wq_init+0x0/0x50 returned 0 after 0 usecs
[    0.212074] calling  xen_pvh_gnttab_setup+0x0/0x50 @ 1
[    0.212074] initcall xen_pvh_gnttab_setup+0x0/0x50 returned -19 after 0 usecs
[    0.212074] calling  e820__register_nvs_regions+0x0/0x70 @ 1
[    0.212124] initcall e820__register_nvs_regions+0x0/0x70 returned 0 after 0 usecs
[    0.214208] calling  cpufreq_register_tsc_scaling+0x0/0x40 @ 1
[    0.214648] initcall cpufreq_register_tsc_scaling+0x0/0x40 returned 0 after 0 usecs
[    0.215216] calling  reboot_init+0x0/0x60 @ 1
[    0.215626] initcall reboot_init+0x0/0x60 returned 0 after 0 usecs
[    0.216176] calling  init_lapic_sysfs+0x0/0x40 @ 1
[    0.216618] initcall init_lapic_sysfs+0x0/0x40 returned 0 after 0 usecs
[    0.217217] calling  alloc_frozen_cpus+0x0/0x30 @ 1
[    0.217664] initcall alloc_frozen_cpus+0x0/0x30 returned 0 after 0 usecs
[    0.218208] calling  cpu_hotplug_pm_sync_init+0x0/0x30 @ 1
[    0.218702] initcall cpu_hotplug_pm_sync_init+0x0/0x30 returned 0 after 0 usecs
[    0.219337] calling  wq_sysfs_init+0x0/0x30 @ 1
[    0.219767] initcall wq_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[    0.220328] calling  ksysfs_init+0x0/0xd0 @ 1
[    0.220738] initcall ksysfs_init+0x0/0xd0 returned 0 after 0 usecs
[    0.221262] calling  schedutil_gov_init+0x0/0x20 @ 1
[    0.221645] initcall schedutil_gov_init+0x0/0x20 returned 0 after 0 usecs
[    0.222145] calling  pm_init+0x0/0x90 @ 1
[    0.222218] initcall pm_init+0x0/0x90 returned 0 after 0 usecs
[    0.222660] calling  pm_disk_init+0x0/0x30 @ 1
[    0.223012] initcall pm_disk_init+0x0/0x30 returned 0 after 0 usecs
[    0.223491] calling  swsusp_header_init+0x0/0x40 @ 1
[    0.223942] initcall swsusp_header_init+0x0/0x40 returned 0 after 0 usecs
[    0.224543] calling  rcu_set_runtime_mode+0x0/0x30 @ 1
[    0.224982] initcall rcu_set_runtime_mode+0x0/0x30 returned 0 after 0 usecs
[    0.225500] calling  rcu_init_tasks_generic+0x0/0x100 @ 1
[    0.225927] initcall rcu_init_tasks_generic+0x0/0x100 returned 0 after 0 usecs
[    0.226208] calling  init_jiffies_clocksource+0x0/0x30 @ 1
[    0.226627] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.227355] initcall init_jiffies_clocksource+0x0/0x30 returned 0 after 0 usecs
[    0.227942] calling  posixtimer_init+0x0/0xd0 @ 1
[    0.228381] posixtimers hash table entries: 2048 (order: 3, 32768 bytes, linear)
[    0.228945] initcall posixtimer_init+0x0/0xd0 returned 0 after 0 usecs
[    0.229430] calling  futex_init+0x0/0xe0 @ 1
[    0.229766] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.230213] initcall futex_init+0x0/0xe0 returned 0 after 4000 usecs
[    0.230687] calling  cgroup_wq_init+0x0/0x40 @ 1
[    0.231049] initcall cgroup_wq_init+0x0/0x40 returned 0 after 0 usecs
[    0.231529] calling  cgroup1_wq_init+0x0/0x40 @ 1
[    0.231895] initcall cgroup1_wq_init+0x0/0x40 returned 0 after 0 usecs
[    0.232402] calling  ftrace_mod_cmd_init+0x0/0x20 @ 1
[    0.232798] initcall ftrace_mod_cmd_init+0x0/0x20 returned 0 after 0 usecs
[    0.233314] calling  init_wakeup_tracer+0x0/0x40 @ 1
[    0.233702] initcall init_wakeup_tracer+0x0/0x40 returned 0 after 0 usecs
[    0.234207] calling  init_graph_trace+0x0/0x70 @ 1
[    0.234582] initcall init_graph_trace+0x0/0x70 returned 0 after 0 usecs
[    0.235076] calling  trace_events_eprobe_init_early+0x0/0x40 @ 1
[    0.235537] initcall trace_events_eprobe_init_early+0x0/0x40 returned 0 after 0 usecs
[    0.236426] calling  trace_events_synth_init_early+0x0/0x40 @ 1
[    0.236873] initcall trace_events_synth_init_early+0x0/0x40 returned 0 after 0 usecs
[    0.237447] calling  init_kprobe_trace_early+0x0/0x40 @ 1
[    0.237875] initcall init_kprobe_trace_early+0x0/0x40 returned 0 after 0 usecs
[    0.238207] calling  bpf_offload_init+0x0/0x30 @ 1
[    0.238583] initcall bpf_offload_init+0x0/0x30 returned 0 after 0 usecs
[    0.239079] calling  cgroup_bpf_wq_init+0x0/0x40 @ 1
[    0.239468] initcall cgroup_bpf_wq_init+0x0/0x40 returned 0 after 0 usecs
[    0.239981] calling  init_events_core_sysctls+0x0/0x40 @ 1
[    0.240408] initcall init_events_core_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.240951] calling  init_callchain_sysctls+0x0/0x40 @ 1
[    0.241358] initcall init_callchain_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.241883] calling  memory_failure_init+0x0/0xd0 @ 1
[    0.242209] initcall memory_failure_init+0x0/0xd0 returned 0 after 0 usecs
[    0.242715] calling  cma_init_reserved_areas+0x0/0x280 @ 1
[    0.243134] initcall cma_init_reserved_areas+0x0/0x280 returned 0 after 0 usecs
[    0.243674] calling  fsnotify_init+0x0/0xa0 @ 1
[    0.244042] initcall fsnotify_init+0x0/0xa0 returned 0 after 0 usecs
[    0.244525] calling  filelock_init+0x0/0x160 @ 1
[    0.244896] initcall filelock_init+0x0/0x160 returned 0 after 0 usecs
[    0.245374] calling  init_script_binfmt+0x0/0x30 @ 1
[    0.245755] initcall init_script_binfmt+0x0/0x30 returned 0 after 0 usecs
[    0.246207] calling  init_elf_binfmt+0x0/0x30 @ 1
[    0.246573] initcall init_elf_binfmt+0x0/0x30 returned 0 after 0 usecs
[    0.247062] calling  init_compat_elf_binfmt+0x0/0x30 @ 1
[    0.247471] initcall init_compat_elf_binfmt+0x0/0x30 returned 0 after 0 usecs
[    0.248008] calling  configfs_init+0x0/0x100 @ 1
[    0.248376] initcall configfs_init+0x0/0x100 returned 0 after 0 usecs
[    0.248858] calling  debugfs_init+0x0/0x110 @ 1
[    0.249214] initcall debugfs_init+0x0/0x110 returned 0 after 0 usecs
[    0.249687] calling  tracefs_init+0x0/0xc0 @ 1
[    0.250035] initcall tracefs_init+0x0/0xc0 returned 0 after 0 usecs
[    0.250206] calling  securityfs_init+0x0/0x90 @ 1
[    0.250587] initcall securityfs_init+0x0/0x90 returned 0 after 0 usecs
[    0.251073] calling  pinctrl_init+0x0/0xd0 @ 1
[    0.251430] pinctrl core: initialized pinctrl subsystem
[    0.251839] initcall pinctrl_init+0x0/0xd0 returned 0 after 0 usecs
[    0.252310] calling  gpiolib_dev_init+0x0/0x170 @ 1
[    0.252697] initcall gpiolib_dev_init+0x0/0x170 returned 0 after 0 usecs
[    0.253196] calling  virtio_init+0x0/0x40 @ 1
[    0.253544] initcall virtio_init+0x0/0x40 returned 0 after 0 usecs
[    0.254007] calling  regulator_init+0x0/0xc0 @ 1
[    0.254246] probe of reg-dummy returned 0 after 0 usecs
[    0.254645] initcall regulator_init+0x0/0xc0 returned 0 after 0 usecs
[    0.255123] calling  iommu_init+0x0/0x40 @ 1
[    0.255469] initcall iommu_init+0x0/0x40 returned 0 after 0 usecs
[    0.255926] calling  component_debug_init+0x0/0x30 @ 1
[    0.256321] initcall component_debug_init+0x0/0x30 returned 0 after 0 usecs
[    0.256840] calling  early_resume_init+0x0/0xe0 @ 1
[    0.257252] PM: RTC time: 06:12:25, date: 2025-06-23
[    0.257639] initcall early_resume_init+0x0/0xe0 returned 0 after 0 usecs
[    0.258140] calling  opp_debug_init+0x0/0x30 @ 1
[    0.258208] initcall opp_debug_init+0x0/0x30 returned 0 after 0 usecs
[    0.258685] calling  cpufreq_core_init+0x0/0x110 @ 1
[    0.259073] initcall cpufreq_core_init+0x0/0x110 returned 0 after 0 usecs
[    0.259582] calling  cpufreq_gov_performance_init+0x0/0x20 @ 1
[    0.260024] initcall cpufreq_gov_performance_init+0x0/0x20 returned 0 after 0 usecs
[    0.260586] calling  cpufreq_gov_powersave_init+0x0/0x20 @ 1
[    0.261017] initcall cpufreq_gov_powersave_init+0x0/0x20 returned 0 after 0 usecs
[    0.261564] calling  cpufreq_gov_userspace_init+0x0/0x20 @ 1
[    0.261993] initcall cpufreq_gov_userspace_init+0x0/0x20 returned 0 after 0 usecs
[    0.262208] calling  CPU_FREQ_GOV_ONDEMAND_init+0x0/0x20 @ 1
[    0.262643] initcall CPU_FREQ_GOV_ONDEMAND_init+0x0/0x20 returned 0 after 0 usecs
[    0.263200] calling  CPU_FREQ_GOV_CONSERVATIVE_init+0x0/0x20 @ 1
[    0.263663] initcall CPU_FREQ_GOV_CONSERVATIVE_init+0x0/0x20 returned 0 after 0 usecs
[    0.264236] calling  cpuidle_init+0x0/0x30 @ 1
[    0.264587] initcall cpuidle_init+0x0/0x30 returned 0 after 0 usecs
[    0.265292] calling  capsule_reboot_register+0x0/0x20 @ 1
[    0.265703] initcall capsule_reboot_register+0x0/0x20 returned 0 after 0 usecs
[    0.266207] calling  unaccepted_memory_init_kdump+0x0/0x30 @ 1
[    0.266658] initcall unaccepted_memory_init_kdump+0x0/0x30 returned 0 after 0 usecs
[    0.267223] calling  sock_init+0x0/0x100 @ 1
[    0.268194] initcall sock_init+0x0/0x100 returned 0 after 0 usecs
[    0.268676] calling  net_inuse_init+0x0/0x40 @ 1
[    0.269044] initcall net_inuse_init+0x0/0x40 returned 0 after 0 usecs
[    0.269534] calling  sock_struct_check+0x0/0x20 @ 1
[    0.269954] initcall sock_struct_check+0x0/0x20 returned 0 after 0 usecs
[    0.270208] calling  init_default_flow_dissectors+0x0/0x60 @ 1
[    0.270661] initcall init_default_flow_dissectors+0x0/0x60 returned 0 after 0 usecs
[    0.271224] calling  netlink_proto_init+0x0/0x170 @ 1
[    0.271625] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.272080] initcall netlink_proto_init+0x0/0x170 returned 0 after 0 usecs
[    0.272595] calling  genl_init+0x0/0x50 @ 1
[    0.272929] initcall genl_init+0x0/0x50 returned 0 after 0 usecs
[    0.273381] calling  bsp_pm_check_init+0x0/0x30 @ 1
[    0.273756] initcall bsp_pm_check_init+0x0/0x30 returned 0 after 0 usecs
[    0.274207] calling  __gnttab_init+0x0/0x50 @ 1
[    0.274568] initcall __gnttab_init+0x0/0x50 returned -19 after 0 usecs
[    0.275099] calling  irq_sysfs_init+0x0/0xc0 @ 1
[    0.275501] initcall irq_sysfs_init+0x0/0xc0 returned 0 after 0 usecs
[    0.275992] calling  dma_atomic_pool_init+0x0/0x170 @ 1
[    0.276396] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[    0.276932] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.277509] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.278110] initcall dma_atomic_pool_init+0x0/0x170 returned 0 after 0 usecs
[    0.278207] calling  audit_init+0x0/0x1d0 @ 1
[    0.278556] initcall audit_init+0x0/0x1d0 returned 0 after 0 usecs
[    0.279067] calling  bdi_class_init+0x0/0x50 @ 1
[    0.279434] initcall bdi_class_init+0x0/0x50 returned 0 after 0 usecs
[    0.279926] calling  mm_sysfs_init+0x0/0x40 @ 1
[    0.280293] initcall mm_sysfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.280767] calling  init_per_zone_wmark_min+0x0/0x40 @ 1
[    0.281184] initcall init_per_zone_wmark_min+0x0/0x40 returned 0 after 0 usecs
[    0.281717] calling  gpiolib_sysfs_init+0x0/0x40 @ 1
[    0.282113] initcall gpiolib_sysfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.282207] calling  acpi_gpio_setup_params+0x0/0xe0 @ 1
[    0.282621] initcall acpi_gpio_setup_params+0x0/0xe0 returned 0 after 0 usecs
[    0.283147] calling  pcibus_class_init+0x0/0x20 @ 1
[    0.283525] initcall pcibus_class_init+0x0/0x20 returned 0 after 0 usecs
[    0.284032] calling  pci_driver_init+0x0/0x40 @ 1
[    0.284410] initcall pci_driver_init+0x0/0x40 returned 0 after 0 usecs
[    0.284897] calling  rio_bus_init+0x0/0x50 @ 1
[    0.285246] initcall rio_bus_init+0x0/0x50 returned 0 after 0 usecs
[    0.285760] calling  backlight_class_init+0x0/0x80 @ 1
[    0.286156] initcall backlight_class_init+0x0/0x80 returned 0 after 0 usecs
[    0.286207] calling  xenbus_init+0x0/0x680 @ 1
[    0.286555] initcall xenbus_init+0x0/0x680 returned -19 after 0 usecs
[    0.287076] calling  tty_class_init+0x0/0x20 @ 1
[    0.287440] initcall tty_class_init+0x0/0x20 returned 0 after 0 usecs
[    0.287923] calling  vtconsole_class_init+0x0/0xc0 @ 1
[    0.288338] initcall vtconsole_class_init+0x0/0xc0 returned 0 after 0 usecs
[    0.288862] calling  serdev_init+0x0/0x30 @ 1
[    0.289218] initcall serdev_init+0x0/0x30 returned 0 after 0 usecs
[    0.289687] calling  iommu_dev_init+0x0/0x20 @ 1
[    0.290050] initcall iommu_dev_init+0x0/0x20 returned 0 after 0 usecs
[    0.290207] calling  mipi_dsi_bus_init+0x0/0x20 @ 1
[    0.290586] initcall mipi_dsi_bus_init+0x0/0x20 returned 0 after 0 usecs
[    0.291088] calling  devlink_class_init+0x0/0x50 @ 1
[    0.291471] initcall devlink_class_init+0x0/0x50 returned 0 after 0 usecs
[    0.291971] calling  software_node_init+0x0/0x40 @ 1
[    0.292351] initcall software_node_init+0x0/0x40 returned 0 after 0 usecs
[    0.293203] calling  wakeup_sources_debugfs_init+0x0/0x40 @ 1
[    0.293636] initcall wakeup_sources_debugfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.294197] calling  wakeup_sources_sysfs_init+0x0/0x40 @ 1
[    0.294209] initcall wakeup_sources_sysfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.294753] calling  isa_bus_init+0x0/0x50 @ 1
[    0.295112] initcall isa_bus_init+0x0/0x50 returned 0 after 0 usecs
[    0.295585] calling  regmap_initcall+0x0/0x20 @ 1
[    0.295951] initcall regmap_initcall+0x0/0x20 returned 0 after 0 usecs
[    0.296443] calling  sram_init+0x0/0x30 @ 1
[    0.296784] initcall sram_init+0x0/0x30 returned 0 after 0 usecs
[    0.297236] calling  spi_init+0x0/0xd0 @ 1
[    0.297567] initcall spi_init+0x0/0xd0 returned 0 after 0 usecs
[    0.298009] calling  i2c_init+0x0/0xc0 @ 1
[    0.298215] initcall i2c_init+0x0/0xc0 returned 0 after 0 usecs
[    0.298660] calling  thermal_init+0x0/0x180 @ 1
[    0.299022] thermal_sys: Registered thermal governor 'fair_share'
[    0.299023] thermal_sys: Registered thermal governor 'bang_bang'
[    0.299472] thermal_sys: Registered thermal governor 'step_wise'
[    0.299918] thermal_sys: Registered thermal governor 'user_space'
[    0.300395] initcall thermal_init+0x0/0x180 returned 0 after 0 usecs
[    0.301375] calling  init_ladder+0x0/0x40 @ 1
[    0.301744] cpuidle: using governor ladder
[    0.302075] initcall init_ladder+0x0/0x40 returned 0 after 0 usecs
[    0.302207] calling  init_menu+0x0/0x20 @ 1
[    0.302549] cpuidle: using governor menu
[    0.302867] initcall init_menu+0x0/0x20 returned 0 after 0 usecs
[    0.303328] calling  teo_governor_init+0x0/0x20 @ 1
[    0.303717] initcall teo_governor_init+0x0/0x20 returned 0 after 0 usecs
[    0.304217] calling  init_haltpoll+0x0/0x40 @ 1
[    0.304575] initcall init_haltpoll+0x0/0x40 returned 0 after 0 usecs
[    0.305051] calling  pcc_init+0x0/0xb0 @ 1
[    0.305380] initcall pcc_init+0x0/0xb0 returned -19 after 0 usecs
[    0.305840] calling  amd_postcore_init+0x0/0x130 @ 1
[    0.306207] initcall amd_postcore_init+0x0/0x130 returned 0 after 0 usecs
[    0.306712] calling  kobject_uevent_init+0x0/0x20 @ 1
[    0.307107] initcall kobject_uevent_init+0x0/0x20 returned 0 after 0 usecs
[    0.307660] calling  report_snp_info+0x0/0xe0 @ 1
[    0.308031] initcall report_snp_info+0x0/0xe0 returned 0 after 0 usecs
[    0.308521] calling  sev_sysfs_init+0x0/0xa0 @ 1
[    0.308883] initcall sev_sysfs_init+0x0/0xa0 returned -19 after 0 usecs
[    0.309374] calling  bts_init+0x0/0x100 @ 1
[    0.309705] initcall bts_init+0x0/0x100 returned -19 after 0 usecs
[    0.310173] calling  pt_init+0x0/0x3b0 @ 1
[    0.310207] initcall pt_init+0x0/0x3b0 returned -19 after 0 usecs
[    0.310669] calling  init_x86_sysctl+0x0/0x40 @ 1
[    0.311042] initcall init_x86_sysctl+0x0/0x40 returned 0 after 0 usecs
[    0.311548] calling  boot_params_ksysfs_init+0x0/0x320 @ 1
[    0.311978] initcall boot_params_ksysfs_init+0x0/0x320 returned 0 after 0 usecs
[    0.312521] calling  sbf_init+0x0/0xf0 @ 1
[    0.312850] initcall sbf_init+0x0/0xf0 returned 0 after 0 usecs
[    0.313298] calling  arch_kdebugfs_init+0x0/0x30 @ 1
[    0.313682] initcall arch_kdebugfs_init+0x0/0x30 returned 0 after 0 usecs
[    0.314186] calling  xfd_update_static_branch+0x0/0x40 @ 1
[    0.314207] initcall xfd_update_static_branch+0x0/0x40 returned 0 after 0 usecs
[    0.314745] calling  mtrr_if_init+0x0/0x70 @ 1
[    0.315100] initcall mtrr_if_init+0x0/0x70 returned 0 after 0 usecs
[    0.315564] calling  activate_jump_labels+0x0/0x50 @ 1
[    0.315979] initcall activate_jump_labels+0x0/0x50 returned 0 after 0 usecs
[    0.316508] calling  init_s4_sigcheck+0x0/0x40 @ 1
[    0.316910] initcall init_s4_sigcheck+0x0/0x40 returned 0 after 0 usecs
[    0.317408] calling  ffh_cstate_init+0x0/0x50 @ 1
[    0.317781] initcall ffh_cstate_init+0x0/0x50 returned 0 after 0 usecs
[    0.318207] calling  kvm_alloc_cpumask+0x0/0xd0 @ 1
[    0.318590] initcall kvm_alloc_cpumask+0x0/0xd0 returned 0 after 0 usecs
[    0.319102] calling  activate_jump_labels+0x0/0x50 @ 1
[    0.319525] initcall activate_jump_labels+0x0/0x50 returned 0 after 0 usecs
[    0.320030] calling  gigantic_pages_init+0x0/0x40 @ 1
[    0.320415] initcall gigantic_pages_init+0x0/0x40 returned 0 after 0 usecs
[    0.320923] calling  uv_rtc_setup_clock+0x0/0x330 @ 1
[    0.321614] initcall uv_rtc_setup_clock+0x0/0x330 returned -19 after 0 usecs
[    0.322126] calling  kcmp_cookies_init+0x0/0x50 @ 1
[    0.322209] initcall kcmp_cookies_init+0x0/0x50 returned 0 after 0 usecs
[    0.322709] calling  cryptomgr_init+0x0/0x20 @ 1
[    0.323066] initcall cryptomgr_init+0x0/0x20 returned 0 after 0 usecs
[    0.323552] calling  crc32_x86_init+0x0/0x100 @ 1
[    0.323964] initcall crc32_x86_init+0x0/0x100 returned 0 after 0 usecs
[    0.324452] calling  crc64_x86_init+0x0/0x170 @ 1
[    0.324865] initcall crc64_x86_init+0x0/0x170 returned 0 after 0 usecs
[    0.325361] calling  crc_t10dif_x86_init+0x0/0xd0 @ 1
[    0.325782] initcall crc_t10dif_x86_init+0x0/0xd0 returned 0 after 0 usecs
[    0.326206] calling  acpi_pci_init+0x0/0x70 @ 1
[    0.326572] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.327056] initcall acpi_pci_init+0x0/0x70 returned 0 after 0 usecs
[    0.327531] calling  dma_channel_table_init+0x0/0x110 @ 1
[    0.327946] initcall dma_channel_table_init+0x0/0x110 returned 0 after 0 usecs
[    0.328479] calling  dma_bus_init+0x0/0x160 @ 1
[    0.328860] initcall dma_bus_init+0x0/0x160 returned 0 after 0 usecs
[    0.329337] calling  register_xen_pci_notifier+0x0/0x40 @ 1
[    0.329765] initcall register_xen_pci_notifier+0x0/0x40 returned 0 after 0 usecs
[    0.330207] calling  xen_pcpu_init+0x0/0xf0 @ 1
[    0.330564] initcall xen_pcpu_init+0x0/0xf0 returned -19 after 0 usecs
[    0.331060] calling  serial_base_init+0x0/0x70 @ 1
[    0.331440] initcall serial_base_init+0x0/0x70 returned 0 after 0 usecs
[    0.331928] calling  iommu_dma_init+0x0/0x30 @ 1
[    0.332321] initcall iommu_dma_init+0x0/0x30 returned 0 after 0 usecs
[    0.332807] calling  dmi_id_init+0x0/0x400 @ 1
[    0.333178] initcall dmi_id_init+0x0/0x400 returned 0 after 0 usecs
[    0.333646] calling  numachip_timer_init+0x0/0x70 @ 1
[    0.334041] initcall numachip_timer_init+0x0/0x70 returned -19 after 0 usecs
[    0.334207] calling  ts_dmi_init+0x0/0xf0 @ 1
[    0.334557] initcall ts_dmi_init+0x0/0xf0 returned 0 after 0 usecs
[    0.335026] calling  pci_arch_init+0x0/0xa0 @ 1
[    0.335422] PCI: Using configuration type 1 for base access
[    0.335847] initcall pci_arch_init+0x0/0xa0 returned 0 after 0 usecs
[    0.336362] calling  init_vdso_image_64+0x0/0x20 @ 1
[    0.336754] initcall init_vdso_image_64+0x0/0x20 returned 0 after 0 usecs
[    0.337260] calling  init_vdso_image_32+0x0/0x20 @ 1
[    0.337651] initcall init_vdso_image_32+0x0/0x20 returned 0 after 0 usecs
[    0.338156] calling  fixup_ht_bug+0x0/0xe0 @ 1
[    0.338207] initcall fixup_ht_bug+0x0/0xe0 returned 0 after 0 usecs
[    0.338678] calling  mtrr_init_finalize+0x0/0x40 @ 1
[    0.339057] initcall mtrr_init_finalize+0x0/0x40 returned 0 after 0 usecs
[    0.339557] calling  blake2s_mod_init+0x0/0x90 @ 1
[    0.339977] initcall blake2s_mod_init+0x0/0x90 returned 0 after 0 usecs
[    0.340472] calling  uid_cache_init+0x0/0x110 @ 1
[    0.340844] initcall uid_cache_init+0x0/0x110 returned 0 after 0 usecs
[    0.341334] calling  pid_namespace_sysctl_init+0x0/0x30 @ 1
[    0.341765] initcall pid_namespace_sysctl_init+0x0/0x30 returned 0 after 0 usecs
[    0.342207] calling  param_sysfs_init+0x0/0x60 @ 1
[    0.342581] initcall param_sysfs_init+0x0/0x60 returned 0 after 0 usecs
[    0.343094] calling  user_namespace_sysctl_init+0x0/0xf0 @ 1
[    0.343535] initcall user_namespace_sysctl_init+0x0/0xf0 returned 0 after 0 usecs
[    0.344097] calling  proc_schedstat_init+0x0/0x40 @ 1
[    0.344493] initcall proc_schedstat_init+0x0/0x40 returned 0 after 0 usecs
[    0.345004] calling  pm_sysrq_init+0x0/0x30 @ 1
[    0.345369] initcall pm_sysrq_init+0x0/0x30 returned 0 after 0 usecs
[    0.345883] calling  create_proc_profile+0x0/0x60 @ 1
[    0.346207] initcall create_proc_profile+0x0/0x60 returned 0 after 0 usecs
[    0.346713] calling  crash_save_vmcoreinfo_init+0x0/0x6b0 @ 1
[    0.347165] initcall crash_save_vmcoreinfo_init+0x0/0x6b0 returned 0 after 0 usecs
[    0.347716] calling  crash_notes_memory_init+0x0/0x50 @ 1
[    0.348133] initcall crash_notes_memory_init+0x0/0x50 returned 0 after 0 usecs
[    0.348732] calling  crash_hotplug_init+0x0/0x50 @ 1
[    0.349121] initcall crash_hotplug_init+0x0/0x50 returned 66 after 0 usecs
[    0.349933] calling  cgroup_sysfs_init+0x0/0x30 @ 1
[    0.350210] initcall cgroup_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[    0.350717] calling  user_namespaces_init+0x0/0x90 @ 1
[    0.351125] initcall user_namespaces_init+0x0/0x90 returned 0 after 0 usecs
[    0.351643] calling  init_optprobes+0x0/0x50 @ 1
[    0.352008] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.352649] initcall init_optprobes+0x0/0x50 returned 0 after 0 usecs
[    0.353134] calling  hung_task_init+0x0/0x90 @ 1
[    0.353539] initcall hung_task_init+0x0/0x90 returned 0 after 0 usecs
[    0.353539] calling  ftrace_check_for_weak_functions+0x0/0x70 @ 1
[    0.354216] initcall ftrace_check_for_weak_functions+0x0/0x70 returned 0 after 0 usecs
[    0.354808] calling  trace_eval_init+0x0/0xc0 @ 1
[    0.355196] initcall trace_eval_init+0x0/0xc0 returned 0 after 0 usecs
[    0.355685] calling  send_signal_irq_work_init+0x0/0x70 @ 1
[    0.356109] initcall send_signal_irq_work_init+0x0/0x70 returned 0 after 0 usecs
[    0.356647] calling  dev_map_init+0x0/0x30 @ 1
[    0.356991] initcall dev_map_init+0x0/0x30 returned 0 after 0 usecs
[    0.357456] calling  netns_bpf_init+0x0/0x20 @ 1
[    0.357820] initcall netns_bpf_init+0x0/0x20 returned 0 after 0 usecs
[    0.358207] calling  oom_init+0x0/0x60 @ 1
[    0.362214] initcall oom_init+0x0/0x60 returned 0 after 4000 usecs
[    0.362690] calling  init_user_buckets+0x0/0x40 @ 1
[    0.363099] initcall init_user_buckets+0x0/0x40 returned 0 after 0 usecs
[    0.363598] calling  init_vm_util_sysctls+0x0/0x40 @ 1
[    0.363990] initcall init_vm_util_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.364499] calling  default_bdi_init+0x0/0x40 @ 1
[    0.364915] initcall default_bdi_init+0x0/0x40 returned 0 after 0 usecs
[    0.365443] calling  cgwb_init+0x0/0x40 @ 1
[    0.365824] initcall cgwb_init+0x0/0x40 returned 0 after 0 usecs
[    0.366207] calling  percpu_enable_async+0x0/0x20 @ 1
[    0.366788] initcall percpu_enable_async+0x0/0x20 returned 0 after 0 usecs
[    0.367560] calling  kcompactd_init+0x0/0xa0 @ 1
[    0.368128] initcall kcompactd_init+0x0/0xa0 returned 0 after 0 usecs
[    0.368128] calling  init_user_reserve+0x0/0x50 @ 1
[    0.368128] initcall init_user_reserve+0x0/0x50 returned 0 after 0 usecs
[    0.370208] calling  init_admin_reserve+0x0/0x50 @ 1
[    0.370795] initcall init_admin_reserve+0x0/0x50 returned 0 after 0 usecs
[    0.371565] calling  init_reserve_notifier+0x0/0x40 @ 1
[    0.372173] initcall init_reserve_notifier+0x0/0x40 returned 0 after 0 usecs
[    0.372970] calling  swap_init_sysfs+0x0/0x90 @ 1
[    0.373524] initcall swap_init_sysfs+0x0/0x90 returned 0 after 0 usecs
[    0.374207] calling  swapfile_init+0x0/0xe0 @ 1
[    0.374744] initcall swapfile_init+0x0/0xe0 returned 0 after 0 usecs
[    0.375470] calling  hugetlb_init+0x0/0x610 @ 1
[    0.376015] HugeTLB: allocation took 0ms with hugepage_allocation_threads=1
[    0.376822] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.377578] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.378207] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.379088] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.379589] initcall hugetlb_init+0x0/0x610 returned 0 after 4000 usecs
[    0.380082] calling  ksm_init+0x0/0x260 @ 1
[    0.380440] initcall ksm_init+0x0/0x260 returned 0 after 0 usecs
[    0.380440] calling  memory_tier_init+0x0/0xe0 @ 1
[    0.380440] initcall memory_tier_init+0x0/0xe0 returned 0 after 0 usecs
[    0.380440] calling  numa_init_sysfs+0x0/0x90 @ 1
[    0.382208] initcall numa_init_sysfs+0x0/0x90 returned 0 after 4000 usecs
[    0.382708] calling  hugepage_init+0x0/0x400 @ 1
[    0.383133] initcall hugepage_init+0x0/0x400 returned 0 after 0 usecs
[    0.383133] calling  mem_cgroup_init+0x0/0xb0 @ 1
[    0.383133] initcall mem_cgroup_init+0x0/0xb0 returned 0 after 0 usecs
[    0.383535] calling  mem_cgroup_swap_init+0x0/0x60 @ 1
[    0.383935] initcall mem_cgroup_swap_init+0x0/0x60 returned 0 after 0 usecs
[    0.384454] calling  page_idle_init+0x0/0x50 @ 1
[    0.384813] initcall page_idle_init+0x0/0x50 returned 0 after 0 usecs
[    0.386207] calling  init_msg_buckets+0x0/0x40 @ 1
[    0.386610] initcall init_msg_buckets+0x0/0x40 returned 0 after 0 usecs
[    0.387092] calling  seqiv_module_init+0x0/0x20 @ 1
[    0.387466] initcall seqiv_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.387959] calling  dh_init+0x0/0x60 @ 1
[    0.388277] initcall dh_init+0x0/0x60 returned 0 after 0 usecs
[    0.388717] calling  rsa_init+0x0/0x80 @ 1
[    0.389038] initcall rsa_init+0x0/0x80 returned 0 after 0 usecs
[    0.389483] calling  hmac_module_init+0x0/0x20 @ 1
[    0.389850] initcall hmac_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.390207] calling  crypto_null_mod_init+0x0/0x80 @ 1
[    0.390596] initcall crypto_null_mod_init+0x0/0x80 returned 0 after 0 usecs
[    0.391103] calling  md5_mod_init+0x0/0x20 @ 1
[    0.391446] initcall md5_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.391907] calling  sha1_generic_mod_init+0x0/0x20 @ 1
[    0.392303] initcall sha1_generic_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.392827] calling  sha256_generic_mod_init+0x0/0x30 @ 1
[    0.393244] initcall sha256_generic_mod_init+0x0/0x30 returned 0 after 0 usecs
[    0.393771] calling  sha512_generic_mod_init+0x0/0x30 @ 1
[    0.394180] initcall sha512_generic_mod_init+0x0/0x30 returned 0 after 0 usecs
[    0.394206] calling  sha3_generic_mod_init+0x0/0x30 @ 1
[    0.394601] initcall sha3_generic_mod_init+0x0/0x30 returned 0 after 0 usecs
[    0.395113] calling  crypto_ecb_module_init+0x0/0x20 @ 1
[    0.395511] initcall crypto_ecb_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.396032] calling  crypto_cbc_module_init+0x0/0x20 @ 1
[    0.396439] initcall crypto_cbc_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.396972] calling  crypto_cts_module_init+0x0/0x20 @ 1
[    0.397378] initcall crypto_cts_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.397929] calling  xts_module_init+0x0/0x20 @ 1
[    0.398207] initcall xts_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.398694] calling  crypto_ctr_module_init+0x0/0x30 @ 1
[    0.399098] initcall crypto_ctr_module_init+0x0/0x30 returned 0 after 0 usecs
[    0.399625] calling  crypto_gcm_module_init+0x0/0x90 @ 1
[    0.400034] initcall crypto_gcm_module_init+0x0/0x90 returned 0 after 0 usecs
[    0.400568] calling  aes_init+0x0/0x20 @ 1
[    0.400893] initcall aes_init+0x0/0x20 returned 0 after 0 usecs
[    0.401336] calling  crc32c_mod_init+0x0/0x40 @ 1
[    0.401698] initcall crc32c_mod_init+0x0/0x40 returned 0 after 0 usecs
[    0.402181] calling  lzo_mod_init+0x0/0x20 @ 1
[    0.402207] initcall lzo_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.402675] calling  lzorle_mod_init+0x0/0x20 @ 1
[    0.403038] initcall lzorle_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.403521] calling  drbg_init+0x0/0x220 @ 1
[    0.403873] initcall drbg_init+0x0/0x220 returned 0 after 0 usecs
[    0.404340] calling  ghash_mod_init+0x0/0x20 @ 1
[    0.404697] initcall ghash_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.405173] calling  ecdh_init+0x0/0x90 @ 1
[    0.405502] initcall ecdh_init+0x0/0x90 returned 0 after 0 usecs
[    0.405950] calling  init_bio+0x0/0xe0 @ 1
[    0.406219] initcall init_bio+0x0/0xe0 returned 0 after 0 usecs
[    0.406693] calling  blk_ioc_init+0x0/0x80 @ 1
[    0.407047] initcall blk_ioc_init+0x0/0x80 returned 0 after 0 usecs
[    0.407769] calling  blk_mq_init+0x0/0x130 @ 1
[    0.408115] initcall blk_mq_init+0x0/0x130 returned 0 after 0 usecs
[    0.408603] calling  genhd_device_init+0x0/0x60 @ 1
[    0.408998] initcall genhd_device_init+0x0/0x60 returned 0 after 0 usecs
[    0.408998] calling  blkcg_punt_bio_init+0x0/0x40 @ 1
[    0.408998] initcall blkcg_punt_bio_init+0x0/0x40 returned 0 after 0 usecs
[    0.410207] calling  blk_integrity_auto_init+0x0/0xe0 @ 1
[    0.410714] initcall blk_integrity_auto_init+0x0/0xe0 returned 0 after 0 usecs
[    0.410771] calling  io_wq_init+0x0/0x50 @ 1
[    0.411110] initcall io_wq_init+0x0/0x50 returned 0 after 0 usecs
[    0.411574] calling  sg_pool_init+0x0/0x110 @ 1
[    0.411933] initcall sg_pool_init+0x0/0x110 returned 0 after 0 usecs
[    0.412433] calling  irq_poll_setup+0x0/0x90 @ 1
[    0.412791] initcall irq_poll_setup+0x0/0x90 returned 0 after 0 usecs
[    0.413263] calling  sx150x_init+0x0/0x30 @ 1
[    0.413607] initcall sx150x_init+0x0/0x30 returned 0 after 0 usecs
[    0.414207] calling  byt_gpio_init+0x0/0x30 @ 1
[    0.414559] initcall byt_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.415035] calling  chv_pinctrl_init+0x0/0x30 @ 1
[    0.415403] initcall chv_pinctrl_init+0x0/0x30 returned 0 after 0 usecs
[    0.415899] calling  gpiolib_debugfs_init+0x0/0x40 @ 1
[    0.416299] initcall gpiolib_debugfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.416816] calling  palmas_gpio_init+0x0/0x30 @ 1
[    0.417188] initcall palmas_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.417678] calling  rc5t583_gpio_init+0x0/0x30 @ 1
[    0.418060] initcall rc5t583_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.418207] calling  tps6586x_gpio_init+0x0/0x30 @ 1
[    0.418597] initcall tps6586x_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.419098] calling  tps65910_gpio_init+0x0/0x30 @ 1
[    0.419486] initcall tps65910_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.419983] calling  pwm_init+0x0/0x70 @ 1
[    0.420307] initcall pwm_init+0x0/0x70 returned 0 after 0 usecs
[    0.420746] calling  leds_init+0x0/0x60 @ 1
[    0.421077] initcall leds_init+0x0/0x60 returned 0 after 0 usecs
[    0.421523] calling  pci_slot_init+0x0/0x60 @ 1
[    0.421879] initcall pci_slot_init+0x0/0x60 returned 0 after 0 usecs
[    0.422207] calling  fbmem_init+0x0/0x90 @ 1
[    0.422579] initcall fbmem_init+0x0/0x90 returned 0 after 0 usecs
[    0.423036] calling  scan_for_dmi_ipmi+0x0/0x300 @ 1
[    0.423413] initcall scan_for_dmi_ipmi+0x0/0x300 returned 0 after 0 usecs
[    0.423907] calling  acpi_init+0x0/0x540 @ 1
[    0.424255] ACPI: Added _OSI(Module Device)
[    0.424583] ACPI: Added _OSI(Processor Device)
[    0.424926] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.425284] ACPI: Added _OSI(Processor Aggregator Device)
[    0.426125] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    0.426727] ACPI: Interpreter enabled
[    0.426727] ACPI: PM: (supports S0 S5)
[    0.426917] ACPI: Using IOAPIC for interrupt routing
[    0.427312] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.427992] PCI: Using E820 reservations for host bridge windows
[    0.428522] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.431289] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.431766] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI HPX-Type3]
[    0.432333] acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    0.433035] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended configuration space under this bridge
[    0.434024] acpiphp: Slot [3] registered
[    0.434216] acpiphp: Slot [4] registered
[    0.434546] acpiphp: Slot [5] registered
[    0.434867] acpiphp: Slot [6] registered
[    0.435191] acpiphp: Slot [7] registered
[    0.435539] acpiphp: Slot [8] registered
[    0.436187] acpiphp: Slot [9] registered
[    0.436515] acpiphp: Slot [10] registered
[    0.436840] acpiphp: Slot [11] registered
[    0.437169] acpiphp: Slot [12] registered
[    0.437493] acpiphp: Slot [13] registered
[    0.437823] acpiphp: Slot [14] registered
[    0.438154] acpiphp: Slot [15] registered
[    0.438215] acpiphp: Slot [16] registered
[    0.438550] acpiphp: Slot [17] registered
[    0.438877] acpiphp: Slot [18] registered
[    0.439209] acpiphp: Slot [19] registered
[    0.439537] acpiphp: Slot [20] registered
[    0.439861] acpiphp: Slot [21] registered
[    0.440189] acpiphp: Slot [22] registered
[    0.440518] acpiphp: Slot [23] registered
[    0.440847] acpiphp: Slot [24] registered
[    0.441177] acpiphp: Slot [25] registered
[    0.441516] acpiphp: Slot [26] registered
[    0.441851] acpiphp: Slot [27] registered
[    0.442184] acpiphp: Slot [28] registered
[    0.442215] acpiphp: Slot [29] registered
[    0.442544] acpiphp: Slot [30] registered
[    0.442874] acpiphp: Slot [31] registered
[    0.443200] PCI host bridge to bus 0000:00
[    0.443528] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.444030] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.444606] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.445271] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]
[    0.445937] pci_bus 0000:00: root bus resource [mem 0x240000000-0x2bfffffff window]
[    0.446207] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.446656] pci 0000:00:00.0: calling  quirk_mmio_always_on+0x0/0x20 @ 1
[    0.447162] pci 0000:00:00.0: quirk_mmio_always_on+0x0/0x20 took 0 usecs
[    0.447663] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 conventional PCI endpoint
[    0.448424] pci 0000:00:00.0: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.448975] pci 0000:00:00.0: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.449807] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 conventional PCI endpoint
[    0.450374] pci 0000:00:01.0: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.450905] pci 0000:00:01.0: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.451509] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180 conventional PCI endpoint
[    0.452631] pci 0000:00:01.1: BAR 4 [io  0xc5a0-0xc5af]
[    0.453057] pci 0000:00:01.1: BAR 0 [io  0x01f0-0x01f7]: legacy IDE quirk
[    0.453570] pci 0000:00:01.1: BAR 1 [io  0x03f6]: legacy IDE quirk
[    0.454043] pci 0000:00:01.1: BAR 2 [io  0x0170-0x0177]: legacy IDE quirk
[    0.454208] pci 0000:00:01.1: BAR 3 [io  0x0376]: legacy IDE quirk
[    0.454772] pci 0000:00:01.1: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.455417] pci 0000:00:01.1: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.456046] pci 0000:00:01.3: calling  acpi_pm_check_blacklist+0x0/0x50 @ 1
[    0.456573] pci 0000:00:01.3: acpi_pm_check_blacklist+0x0/0x50 took 0 usecs
[    0.457094] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000 conventional PCI endpoint
[    0.457875] pci 0000:00:01.3: calling  quirk_piix4_acpi+0x0/0x180 @ 1
[    0.458211] pci 0000:00:01.3: quirk: [io  0x0600-0x063f] claimed by PIIX4 ACPI
[    0.458750] pci 0000:00:01.3: quirk: [io  0x0700-0x070f] claimed by PIIX4 SMB
[    0.459294] pci 0000:00:01.3: quirk_piix4_acpi+0x0/0x180 took 0 usecs
[    0.459775] pci 0000:00:01.3: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.460331] pci 0000:00:01.3: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.460877] pci 0000:00:01.3: calling  pci_fixup_piix4_acpi+0x0/0x20 @ 1
[    0.461377] pci 0000:00:01.3: pci_fixup_piix4_acpi+0x0/0x20 took 0 usecs
[    0.461955] pci 0000:00:02.0: [1b36:0100] type 00 class 0x030000 conventional PCI endpoint
[    0.465717] pci 0000:00:02.0: BAR 0 [mem 0xf4000000-0xf7ffffff]
[    0.466216] pci 0000:00:02.0: BAR 1 [mem 0xf8000000-0xfbffffff]
[    0.466916] pci 0000:00:02.0: BAR 2 [mem 0xfc054000-0xfc055fff]
[    0.467637] pci 0000:00:02.0: BAR 3 [io  0xc540-0xc55f]
[    0.468285] pci 0000:00:02.0: ROM [mem 0xfc040000-0xfc04ffff pref]
[    0.469046] pci 0000:00:02.0: calling  screen_info_fixup_lfb+0x0/0x170 @ 1
[    0.469842] pci 0000:00:02.0: screen_info_fixup_lfb+0x0/0x170 took 0 usecs
[    0.470208] pci 0000:00:02.0: calling  pci_fixup_video+0x0/0x120 @ 1
[    0.470958] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.471913] pci 0000:00:02.0: pci_fixup_video+0x0/0x120 took 0 usecs
[    0.473043] pci 0000:00:03.0: [1af4:1000] type 00 class 0x020000 conventional PCI endpoint
[    0.474949] pci 0000:00:03.0: BAR 0 [io  0xc560-0xc57f]
[    0.475573] pci 0000:00:03.0: BAR 1 [mem 0xfc056000-0xfc056fff]
[    0.476291] pci 0000:00:03.0: BAR 4 [mem 0xfebf0000-0xfebf3fff 64bit pref]
[    0.477088] pci 0000:00:03.0: ROM [mem 0xfc000000-0xfc03ffff pref]
[    0.478306] pci 0000:00:04.0: [1b36:000d] type 00 class 0x0c0330 conventional PCI endpoint
[    0.479610] pci 0000:00:04.0: BAR 0 [mem 0xfc050000-0xfc053fff 64bit]
[    0.480702] pci 0000:00:05.0: [8086:2415] type 00 class 0x040100 conventional PCI endpoint
[    0.482212] pci 0000:00:05.0: BAR 0 [io  0xc000-0xc3ff]
[    0.482837] pci 0000:00:05.0: BAR 1 [io  0xc400-0xc4ff]
[    0.483480] pci 0000:00:05.0: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.484321] pci 0000:00:05.0: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.485748] pci 0000:00:06.0: [1af4:1052] type 00 class 0x098000 conventional PCI endpoint
[    0.486739] pci 0000:00:06.0: BAR 1 [mem 0xfc057000-0xfc057fff]
[    0.487466] pci 0000:00:06.0: BAR 4 [mem 0xfebf4000-0xfebf7fff 64bit pref]
[    0.488783] pci 0000:00:07.0: [1af4:1003] type 00 class 0x078000 conventional PCI endpoint
[    0.490517] pci 0000:00:07.0: BAR 0 [io  0xc500-0xc53f]
[    0.491165] pci 0000:00:07.0: BAR 1 [mem 0xfc058000-0xfc058fff]
[    0.491872] pci 0000:00:07.0: BAR 4 [mem 0xfebf8000-0xfebfbfff 64bit pref]
[    0.493717] pci 0000:00:08.0: [1af4:1002] type 00 class 0x00ff00 conventional PCI endpoint
[    0.494749] pci 0000:00:08.0: BAR 0 [io  0xc580-0xc59f]
[    0.495171] pci 0000:00:08.0: BAR 4 [mem 0xfebfc000-0xfebfffff 64bit pref]
[    0.501265] ACPI: PCI: Interrupt link LNKA configured for IRQ 10
[    0.501782] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[    0.502265] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[    0.502765] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[    0.503241] ACPI: PCI: Interrupt link LNKS configured for IRQ 9
[    0.503857] initcall acpi_init+0x0/0x540 returned 0 after 80000 usecs
[    0.504354] calling  adxl_init+0x0/0x1b0 @ 1
[    0.504691] initcall adxl_init+0x0/0x1b0 returned -19 after 0 usecs
[    0.505159] calling  hmat_init+0x0/0x3d0 @ 1
[    0.505494] initcall hmat_init+0x0/0x3d0 returned 0 after 0 usecs
[    0.505957] calling  acpi_hed_driver_init+0x0/0x30 @ 1
[    0.506214] initcall acpi_hed_driver_init+0x0/0x30 returned 0 after 0 usecs
[    0.506736] calling  pnp_init+0x0/0x20 @ 1
[    0.507070] initcall pnp_init+0x0/0x20 returned 0 after 0 usecs
[    0.507536] calling  balloon_init+0x0/0x2d0 @ 1
[    0.507892] initcall balloon_init+0x0/0x2d0 returned -19 after 0 usecs
[    0.508377] calling  xen_setup_shutdown_event+0x0/0x50 @ 1
[    0.508796] initcall xen_setup_shutdown_event+0x0/0x50 returned -19 after 0 usecs
[    0.509344] calling  xenbus_probe_backend_init+0x0/0xa0 @ 1
[    0.509849] initcall xenbus_probe_backend_init+0x0/0xa0 returned 0 after 0 usecs
[    0.510207] calling  xenbus_probe_frontend_init+0x0/0x60 @ 1
[    0.510727] initcall xenbus_probe_frontend_init+0x0/0x60 returned 0 after 0 usecs
[    0.511394] calling  xen_acpi_pad_init+0x0/0x60 @ 1
[    0.511849] initcall xen_acpi_pad_init+0x0/0x60 returned -19 after 0 usecs
[    0.512462] calling  misc_init+0x0/0xb0 @ 1
[    0.512858] initcall misc_init+0x0/0xb0 returned 0 after 0 usecs
[    0.513320] calling  tpm_init+0x0/0xe0 @ 1
[    0.513722] initcall tpm_init+0x0/0xe0 returned 0 after 0 usecs
[    0.514208] calling  iommu_subsys_init+0x0/0x170 @ 1
[    0.514666] iommu: Default domain type: Translated
[    0.515113] iommu: DMA domain TLB invalidation policy: lazy mode
[    0.515658] initcall iommu_subsys_init+0x0/0x170 returned 0 after 0 usecs
[    0.516265] calling  cn_init+0x0/0xf0 @ 1
[    0.516660] initcall cn_init+0x0/0xf0 returned 0 after 0 usecs
[    0.517193] calling  pm860x_i2c_init+0x0/0x50 @ 1
[    0.517639] initcall pm860x_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.518207] calling  wm8400_driver_init+0x0/0x50 @ 1
[    0.518614] initcall wm8400_driver_init+0x0/0x50 returned 0 after 0 usecs
[    0.519118] calling  wm831x_i2c_init+0x0/0x50 @ 1
[    0.519485] initcall wm831x_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.519972] calling  wm831x_spi_init+0x0/0x40 @ 1
[    0.520341] initcall wm831x_spi_init+0x0/0x40 returned 0 after 0 usecs
[    0.520830] calling  wm8350_i2c_init+0x0/0x30 @ 1
[    0.521204] initcall wm8350_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.521694] calling  tps65910_i2c_init+0x0/0x30 @ 1
[    0.522211] initcall tps65910_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.522820] calling  ezx_pcap_init+0x0/0x30 @ 1
[    0.523251] initcall ezx_pcap_init+0x0/0x30 returned 0 after 0 usecs
[    0.523750] calling  da903x_init+0x0/0x30 @ 1
[    0.524168] initcall da903x_init+0x0/0x30 returned 0 after 0 usecs
[    0.524735] calling  da9052_spi_init+0x0/0x50 @ 1
[    0.525181] initcall da9052_spi_init+0x0/0x50 returned 0 after 0 usecs
[    0.525775] calling  da9052_i2c_init+0x0/0x50 @ 1
[    0.526211] initcall da9052_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.526799] calling  lp8788_init+0x0/0x30 @ 1
[    0.527215] initcall lp8788_init+0x0/0x30 returned 0 after 0 usecs
[    0.527774] calling  da9055_i2c_init+0x0/0x50 @ 1
[    0.528216] initcall da9055_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.528810] calling  max77843_i2c_init+0x0/0x30 @ 1
[    0.529267] initcall max77843_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.529870] calling  max8925_i2c_init+0x0/0x50 @ 1
[    0.530209] initcall max8925_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.530810] calling  max8997_i2c_init+0x0/0x30 @ 1
[    0.531267] initcall max8997_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.531862] calling  max8998_i2c_init+0x0/0x30 @ 1
[    0.532315] initcall max8998_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.532915] calling  tps6586x_init+0x0/0x30 @ 1
[    0.533345] initcall tps6586x_init+0x0/0x30 returned 0 after 0 usecs
[    0.533922] calling  tps65090_init+0x0/0x30 @ 1
[    0.534208] initcall tps65090_init+0x0/0x30 returned 0 after 0 usecs
[    0.534787] calling  aat2870_init+0x0/0x30 @ 1
[    0.535211] initcall aat2870_init+0x0/0x30 returned 0 after 0 usecs
[    0.535779] calling  palmas_i2c_init+0x0/0x30 @ 1
[    0.536225] initcall palmas_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.536819] calling  rc5t583_i2c_init+0x0/0x30 @ 1
[    0.537273] initcall rc5t583_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.537875] calling  as3711_i2c_init+0x0/0x30 @ 1
[    0.538208] initcall as3711_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.538799] calling  libnvdimm_init+0x0/0x70 @ 1
[    0.539256] initcall libnvdimm_init+0x0/0x70 returned 0 after 0 usecs
[    0.539839] calling  dax_core_init+0x0/0x110 @ 1
[    0.540301] initcall dax_core_init+0x0/0x110 returned 0 after 0 usecs
[    0.540885] calling  dma_buf_init+0x0/0xb0 @ 1
[    0.541319] initcall dma_buf_init+0x0/0xb0 returned 0 after 0 usecs
[    0.541892] calling  init_scsi+0x0/0xa0 @ 1
[    0.542235] SCSI subsystem initialized
[    0.542598] initcall init_scsi+0x0/0xa0 returned 0 after 0 usecs
[    0.543150] calling  ata_init+0x0/0x410 @ 1
[    0.543583] libata version 3.00 loaded.
[    0.543583] initcall ata_init+0x0/0x410 returned 0 after 0 usecs
[    0.543583] calling  phy_init+0x0/0x2b0 @ 1
[    0.543583] initcall phy_init+0x0/0x2b0 returned 0 after 0 usecs
[    0.544099] calling  usb_common_init+0x0/0x30 @ 1
[    0.544546] initcall usb_common_init+0x0/0x30 returned 0 after 0 usecs
[    0.546208] calling  usb_init+0x0/0x190 @ 1
[    0.546609] ACPI: bus type USB registered
[    0.547004] usbcore: registered new interface driver usbfs
[    0.547512] usbcore: registered new interface driver hub
[    0.548011] usbcore: registered new device driver usb
[    0.548478] initcall usb_init+0x0/0x190 returned 0 after 0 usecs
[    0.549025] calling  xdbc_init+0x0/0x1e0 @ 1
[    0.549435] initcall xdbc_init+0x0/0x1e0 returned 0 after 0 usecs
[    0.549991] calling  usb_roles_init+0x0/0x20 @ 1
[    0.550208] initcall usb_roles_init+0x0/0x20 returned 0 after 0 usecs
[    0.551127] calling  serio_init+0x0/0x50 @ 1
[    0.551542] initcall serio_init+0x0/0x50 returned 0 after 0 usecs
[    0.552030] calling  input_init+0x0/0x130 @ 1
[    0.552381] initcall input_init+0x0/0x130 returned 0 after 0 usecs
[    0.553061] calling  rtc_init+0x0/0x40 @ 1
[    0.553458] initcall rtc_init+0x0/0x40 returned 0 after 0 usecs
[    0.554005] calling  dw_i2c_init_driver+0x0/0x30 @ 1
[    0.554213] initcall dw_i2c_init_driver+0x0/0x30 returned 0 after 0 usecs
[    0.554823] calling  pps_init+0x0/0xc0 @ 1
[    0.555216] pps_core: LinuxPPS API ver. 1 registered
[    0.555682] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.556485] initcall pps_init+0x0/0xc0 returned 0 after 0 usecs
[    0.557029] calling  ptp_init+0x0/0xa0 @ 1
[    0.557427] PTP clock support registered
[    0.557808] initcall ptp_init+0x0/0xa0 returned 0 after 0 usecs
[    0.558207] calling  power_supply_class_init+0x0/0x30 @ 1
[    0.558707] initcall power_supply_class_init+0x0/0x30 returned 0 after 0 usecs
[    0.559356] calling  hwmon_init+0x0/0x110 @ 1
[    0.559771] initcall hwmon_init+0x0/0x110 returned 0 after 0 usecs
[    0.560331] calling  intel_tcc_init+0x0/0x40 @ 1
[    0.560766] initcall intel_tcc_init+0x0/0x40 returned 0 after 0 usecs
[    0.561295] calling  md_init+0x0/0x190 @ 1
[    0.561646] initcall md_init+0x0/0x190 returned 0 after 0 usecs
[    0.562209] calling  edac_init+0x0/0x90 @ 1
[    0.562684] EDAC MC: Ver: 3.0.0
[    0.563121] initcall edac_init+0x0/0x90 returned 0 after 0 usecs
[    0.563121] calling  mmc_init+0x0/0x50 @ 1
[    0.563168] initcall mmc_init+0x0/0x50 returned 0 after 0 usecs
[    0.563708] calling  dmi_init+0x0/0x140 @ 1
[    0.564118] initcall dmi_init+0x0/0x140 returned 0 after 0 usecs
[    0.564669] calling  efisubsys_init+0x0/0x610 @ 1
[    0.565114] initcall efisubsys_init+0x0/0x610 returned 0 after 0 usecs
[    0.566207] calling  vme_init+0x0/0x20 @ 1
[    0.566608] initcall vme_init+0x0/0x20 returned 0 after 0 usecs
[    0.567151] calling  remoteproc_init+0x0/0x80 @ 1
[    0.567598] initcall remoteproc_init+0x0/0x80 returned 0 after 0 usecs
[    0.568184] calling  devfreq_init+0x0/0xe0 @ 1
[    0.568624] initcall devfreq_init+0x0/0xe0 returned 0 after 0 usecs
[    0.568624] calling  devfreq_event_init+0x0/0x60 @ 1
[    0.568624] initcall devfreq_event_init+0x0/0x60 returned 0 after 0 usecs
[    0.570207] calling  devfreq_simple_ondemand_init+0x0/0x20 @ 1
[    0.570744] initcall devfreq_simple_ondemand_init+0x0/0x20 returned 0 after 0 usecs
[    0.571423] calling  devfreq_performance_init+0x0/0x20 @ 1
[    0.571927] initcall devfreq_performance_init+0x0/0x20 returned 0 after 0 usecs
[    0.572579] calling  devfreq_powersave_init+0x0/0x20 @ 1
[    0.573070] initcall devfreq_powersave_init+0x0/0x20 returned 0 after 0 usecs
[    0.573644] calling  devfreq_userspace_init+0x0/0x20 @ 1
[    0.574095] initcall devfreq_userspace_init+0x0/0x20 returned 0 after 0 usecs
[    0.574207] calling  devfreq_passive_init+0x0/0x20 @ 1
[    0.574687] initcall devfreq_passive_init+0x0/0x20 returned 0 after 0 usecs
[    0.575315] calling  ras_init+0x0/0x20 @ 1
[    0.575712] initcall ras_init+0x0/0x20 returned 0 after 0 usecs
[    0.576255] calling  nvmem_init+0x0/0x20 @ 1
[    0.576670] initcall nvmem_init+0x0/0x20 returned 0 after 0 usecs
[    0.577228] calling  dpll_init+0x0/0x20 @ 1
[    0.577638] initcall dpll_init+0x0/0x20 returned 0 after 0 usecs
[    0.578192] calling  proto_init+0x0/0x20 @ 1
[    0.578208] initcall proto_init+0x0/0x20 returned 0 after 0 usecs
[    0.579075] calling  net_dev_init+0x0/0x3a0 @ 1
[    0.579575] initcall net_dev_init+0x0/0x3a0 returned 0 after 0 usecs
[    0.580152] calling  neigh_init+0x0/0x30 @ 1
[    0.580560] initcall neigh_init+0x0/0x30 returned 0 after 0 usecs
[    0.581112] calling  fib_notifier_init+0x0/0x20 @ 1
[    0.581568] initcall fib_notifier_init+0x0/0x20 returned 0 after 0 usecs
[    0.582173] calling  netdev_genl_init+0x0/0x50 @ 1
[    0.582212] initcall netdev_genl_init+0x0/0x50 returned 0 after 0 usecs
[    0.582810] calling  page_pool_user_init+0x0/0x20 @ 1
[    0.583281] initcall page_pool_user_init+0x0/0x20 returned 0 after 0 usecs
[    0.583898] calling  fib_rules_init+0x0/0x80 @ 1
[    0.584333] initcall fib_rules_init+0x0/0x80 returned 0 after 0 usecs
[    0.584912] calling  init_cgroup_netprio+0x0/0x30 @ 1
[    0.585395] initcall init_cgroup_netprio+0x0/0x30 returned 0 after 0 usecs
[    0.586012] calling  bpf_lwt_init+0x0/0x30 @ 1
[    0.586207] initcall bpf_lwt_init+0x0/0x30 returned 0 after 0 usecs
[    0.586778] calling  pktsched_init+0x0/0xc0 @ 1
[    0.587242] initcall pktsched_init+0x0/0xc0 returned 0 after 0 usecs
[    0.587816] calling  tc_filter_init+0x0/0xa0 @ 1
[    0.588257] initcall tc_filter_init+0x0/0xa0 returned 0 after 0 usecs
[    0.588842] calling  tc_action_init+0x0/0x30 @ 1
[    0.589284] initcall tc_action_init+0x0/0x30 returned 0 after 0 usecs
[    0.589863] calling  ethnl_init+0x0/0x80 @ 1
[    0.590225] initcall ethnl_init+0x0/0x80 returned 0 after 0 usecs
[    0.590778] calling  nexthop_init+0x0/0x40 @ 1
[    0.591205] initcall nexthop_init+0x0/0x40 returned 0 after 0 usecs
[    0.591770] calling  devlink_init+0x0/0x70 @ 1
[    0.592207] initcall devlink_init+0x0/0x70 returned 0 after 0 usecs
[    0.592775] calling  wireless_nlevent_init+0x0/0x50 @ 1
[    0.593262] initcall wireless_nlevent_init+0x0/0x50 returned 0 after 0 usecs
[    0.593890] calling  rfkill_init+0x0/0x130 @ 1
[    0.594239] initcall rfkill_init+0x0/0x130 returned 0 after 0 usecs
[    0.594786] calling  ncsi_init_netlink+0x0/0x20 @ 1
[    0.595243] initcall ncsi_init_netlink+0x0/0x20 returned 0 after 0 usecs
[    0.595841] calling  shaper_init+0x0/0x20 @ 1
[    0.596253] initcall shaper_init+0x0/0x20 returned 0 after 0 usecs
[    0.596814] calling  pci_subsys_init+0x0/0x80 @ 1
[    0.597254] PCI: Using ACPI for IRQ routing
[    0.597651] PCI: pci_cache_line_size set to 64 bytes
[    0.598269] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    0.598816] e820: reserve RAM buffer [mem 0xbffdf000-0xbfffffff]
[    0.599347] initcall pci_subsys_init+0x0/0x80 returned 0 after 4000 usecs
[    0.599863] calling  vsprintf_init_hashval+0x0/0x20 @ 1
[    0.600276] initcall vsprintf_init_hashval+0x0/0x20 returned 0 after 0 usecs
[    0.600812] calling  efi_runtime_map_init+0x0/0x260 @ 1
[    0.601216] initcall efi_runtime_map_init+0x0/0x260 returned 0 after 0 usecs
[    0.601734] calling  vga_arb_device_init+0x0/0xa0 @ 1
[    0.602132] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.602132] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.602132] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.602208] vgaarb: loaded
[    0.602441] initcall vga_arb_device_init+0x0/0xa0 returned 0 after 4000 usecs
[    0.602967] calling  watchdog_init+0x0/0xb0 @ 1
[    0.603341] initcall watchdog_init+0x0/0xb0 returned 0 after 0 usecs
[    0.603341] calling  nmi_warning_debugfs+0x0/0x40 @ 1
[    0.603341] initcall nmi_warning_debugfs+0x0/0x40 returned 0 after 0 usecs
[    0.603664] calling  hpet_late_init+0x0/0x420 @ 1
[    0.604038] initcall hpet_late_init+0x0/0x420 returned -19 after 0 usecs
[    0.604549] calling  init_amd_nbs+0x0/0x340 @ 1
[    0.604976] initcall init_amd_nbs+0x0/0x340 returned 0 after 0 usecs
[    0.606207] calling  amd_smn_init+0x0/0x200 @ 1
[    0.606587] initcall amd_smn_init+0x0/0x200 returned 0 after 0 usecs
[    0.607061] calling  iomem_init_inode+0x0/0xa0 @ 1
[    0.607475] initcall iomem_init_inode+0x0/0xa0 returned 0 after 0 usecs
[    0.608071] calling  clocksource_done_booting+0x0/0x50 @ 1
[    0.608636] clocksource: Switched to clocksource kvm-clock
[    0.609144] initcall clocksource_done_booting+0x0/0x50 returned 0 after 511 usecs
[    0.609817] calling  tracer_init_tracefs+0x0/0xd0 @ 1
[    0.609817] initcall tracer_init_tracefs+0x0/0xd0 returned 0 after 5 usecs
[    0.609817] calling  init_trace_printk_function_export+0x0/0x40 @ 1
[    0.609817] initcall init_trace_printk_function_export+0x0/0x40 returned 0 after 11 usecs
[    0.609817] calling  init_graph_tracefs+0x0/0x40 @ 1
[    0.610277] initcall init_graph_tracefs+0x0/0x40 returned 0 after 1 usecs
[    0.610887] calling  trace_events_synth_init+0x0/0x60 @ 1
[    0.611860] initcall trace_events_synth_init+0x0/0x60 returned 0 after 463 usecs
[    0.612530] calling  bpf_event_init+0x0/0x20 @ 1
[    0.612966] initcall bpf_event_init+0x0/0x20 returned 0 after 0 usecs
[    0.613549] calling  init_kprobe_trace+0x0/0x1e0 @ 1
[    0.614012] initcall init_kprobe_trace+0x0/0x1e0 returned 0 after 1 usecs
[    0.614624] calling  init_dynamic_event+0x0/0x40 @ 1
[    0.615087] initcall init_dynamic_event+0x0/0x40 returned 0 after 0 usecs
[    0.615626] calling  init_uprobe_trace+0x0/0x80 @ 1
[    0.616010] initcall init_uprobe_trace+0x0/0x80 returned 0 after 3 usecs
[    0.616519] calling  bpf_init+0x0/0x60 @ 1
[    0.616851] initcall bpf_init+0x0/0x60 returned 0 after 3 usecs
[    0.617306] calling  secretmem_init+0x0/0x60 @ 1
[    0.617675] initcall secretmem_init+0x0/0x60 returned 0 after 6 usecs
[    0.618209] calling  init_fs_stat_sysctls+0x0/0x40 @ 1
[    0.618694] initcall init_fs_stat_sysctls+0x0/0x40 returned 0 after 4 usecs
[    0.619321] calling  init_fs_exec_sysctls+0x0/0x40 @ 1
[    0.619748] initcall init_fs_exec_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.620313] calling  init_pipe_fs+0x0/0x80 @ 1
[    0.620676] initcall init_pipe_fs+0x0/0x80 returned 0 after 7 usecs
[    0.621153] calling  init_fs_namei_sysctls+0x0/0x40 @ 1
[    0.621563] initcall init_fs_namei_sysctls+0x0/0x40 returned 0 after 1 usecs
[    0.622092] calling  init_fs_dcache_sysctls+0x0/0x60 @ 1
[    0.622542] initcall init_fs_dcache_sysctls+0x0/0x60 returned 0 after 3 usecs
[    0.623179] calling  init_fs_namespace_sysctls+0x0/0x40 @ 1
[    0.623619] initcall init_fs_namespace_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.624174] calling  cgroup_writeback_init+0x0/0x40 @ 1
[    0.624583] initcall cgroup_writeback_init+0x0/0x40 returned 0 after 1 usecs
[    0.625111] calling  inotify_user_setup+0x0/0x140 @ 1
[    0.625511] initcall inotify_user_setup+0x0/0x140 returned 0 after 4 usecs
[    0.626028] calling  eventpoll_init+0x0/0x190 @ 1
[    0.626413] initcall eventpoll_init+0x0/0x190 returned 0 after 15 usecs
[    0.626909] calling  anon_inode_init+0x0/0x70 @ 1
[    0.627283] initcall anon_inode_init+0x0/0x70 returned 0 after 3 usecs
[    0.627774] calling  init_dax_wait_table+0x0/0x50 @ 1
[    0.628213] initcall init_dax_wait_table+0x0/0x50 returned 0 after 10 usecs
[    0.628836] calling  proc_locks_init+0x0/0x40 @ 1
[    0.629280] initcall proc_locks_init+0x0/0x40 returned 0 after 1 usecs
[    0.629869] calling  backing_aio_init+0x0/0x90 @ 1
[    0.630319] initcall backing_aio_init+0x0/0x90 returned 0 after 1 usecs
[    0.630914] calling  init_fs_coredump_sysctls+0x0/0x40 @ 1
[    0.631420] initcall init_fs_coredump_sysctls+0x0/0x40 returned 0 after 2 usecs
[    0.631967] calling  init_vm_drop_caches_sysctls+0x0/0x40 @ 1
[    0.632415] initcall init_vm_drop_caches_sysctls+0x0/0x40 returned 0 after 1 usecs
[    0.633093] calling  iomap_dio_init+0x0/0x40 @ 1
[    0.633789] initcall iomap_dio_init+0x0/0x40 returned 0 after 5 usecs
[    0.634277] calling  iomap_ioend_init+0x0/0x30 @ 1
[    0.634665] initcall iomap_ioend_init+0x0/0x30 returned 0 after 12 usecs
[    0.635167] calling  dquot_init+0x0/0x190 @ 1
[    0.635520] VFS: Disk quotas dquot_6.6.0
[    0.635846] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.636364] initcall dquot_init+0x0/0x190 returned 0 after 844 usecs
[    0.636842] calling  quota_init+0x0/0x40 @ 1
[    0.637185] initcall quota_init+0x0/0x40 returned 0 after 6 usecs
[    0.637708] calling  proc_cmdline_init+0x0/0x50 @ 1
[    0.638163] initcall proc_cmdline_init+0x0/0x50 returned 0 after 1 usecs
[    0.638762] calling  proc_consoles_init+0x0/0x40 @ 1
[    0.639224] initcall proc_consoles_init+0x0/0x40 returned 0 after 0 usecs
[    0.639835] calling  proc_cpuinfo_init+0x0/0x30 @ 1
[    0.640293] initcall proc_cpuinfo_init+0x0/0x30 returned 0 after 0 usecs
[    0.640898] calling  proc_devices_init+0x0/0x40 @ 1
[    0.641354] initcall proc_devices_init+0x0/0x40 returned 0 after 0 usecs
[    0.641957] calling  proc_interrupts_init+0x0/0x40 @ 1
[    0.642436] initcall proc_interrupts_init+0x0/0x40 returned 0 after 0 usecs
[    0.643063] calling  proc_loadavg_init+0x0/0x40 @ 1
[    0.643523] initcall proc_loadavg_init+0x0/0x40 returned 0 after 0 usecs
[    0.644132] calling  proc_meminfo_init+0x0/0x40 @ 1
[    0.644589] initcall proc_meminfo_init+0x0/0x40 returned 0 after 0 usecs
[    0.645190] calling  proc_stat_init+0x0/0x30 @ 1
[    0.645628] initcall proc_stat_init+0x0/0x30 returned 0 after 1 usecs
[    0.646208] calling  proc_uptime_init+0x0/0x40 @ 1
[    0.646660] initcall proc_uptime_init+0x0/0x40 returned 0 after 1 usecs
[    0.647259] calling  proc_version_init+0x0/0x40 @ 1
[    0.647726] initcall proc_version_init+0x0/0x40 returned 0 after 0 usecs
[    0.648333] calling  proc_softirqs_init+0x0/0x40 @ 1
[    0.648763] initcall proc_softirqs_init+0x0/0x40 returned 0 after 0 usecs
[    0.649266] calling  proc_kcore_init+0x0/0x170 @ 1
[    0.649656] initcall proc_kcore_init+0x0/0x170 returned 0 after 15 usecs
[    0.650151] calling  vmcore_init+0x0/0x920 @ 1
[    0.650497] initcall vmcore_init+0x0/0x920 returned 0 after 0 usecs
[    0.650962] calling  proc_kmsg_init+0x0/0x30 @ 1
[    0.651331] initcall proc_kmsg_init+0x0/0x30 returned 0 after 3 usecs
[    0.651814] calling  proc_page_init+0x0/0x70 @ 1
[    0.652183] initcall proc_page_init+0x0/0x70 returned 0 after 2 usecs
[    0.652666] calling  init_ramfs_fs+0x0/0x20 @ 1
[    0.653023] initcall init_ramfs_fs+0x0/0x20 returned 0 after 1 usecs
[    0.653502] calling  init_hugetlbfs_fs+0x0/0x1c0 @ 1
[    0.653907] initcall init_hugetlbfs_fs+0x0/0x1c0 returned 0 after 18 usecs
[    0.654484] calling  aa_create_aafs+0x0/0x3c0 @ 1
[    0.654926] initcall aa_create_aafs+0x0/0x3c0 returned 0 after 0 usecs
[    0.655520] calling  dynamic_debug_init_control+0x0/0xa0 @ 1
[    0.656045] initcall dynamic_debug_init_control+0x0/0xa0 returned 0 after 4 usecs
[    0.656691] calling  acpi_event_init+0x0/0x50 @ 1
[    0.657066] initcall acpi_event_init+0x0/0x50 returned 0 after 3 usecs
[    0.657563] calling  pnp_system_init+0x0/0x20 @ 1
[    0.657948] initcall pnp_system_init+0x0/0x20 returned 0 after 11 usecs
[    0.658445] calling  pnpacpi_init+0x0/0x80 @ 1
[    0.658798] pnp: PnP ACPI init
[    0.659137] pnp 00:03: [dma 2]
[    0.659562] pnp: PnP ACPI: found 5 devices
[    0.659956] initcall pnpacpi_init+0x0/0x80 returned 0 after 1158 usecs
[    0.660549] calling  chr_dev_init+0x0/0xb0 @ 1
[    0.662241] initcall chr_dev_init+0x0/0xb0 returned 0 after 1268 usecs
[    0.662839] calling  hwrng_modinit+0x0/0xc0 @ 1
[    0.663651] initcall hwrng_modinit+0x0/0xc0 returned 0 after 53 usecs
[    0.664139] calling  firmware_class_init+0x0/0x120 @ 1
[    0.664547] initcall firmware_class_init+0x0/0x120 returned 0 after 8 usecs
[    0.665124] calling  map_properties+0x0/0x670 @ 1
[    0.665567] initcall map_properties+0x0/0x670 returned 0 after 0 usecs
[    0.666156] calling  init_acpi_pm_clocksource+0x0/0x110 @ 1
[    0.671170] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.671948] initcall init_acpi_pm_clocksource+0x0/0x110 returned 0 after 5282 usecs
[    0.672628] calling  powercap_init+0x0/0x290 @ 1
[    0.673070] initcall powercap_init+0x0/0x290 returned 0 after 13 usecs
[    0.673650] calling  sysctl_core_init+0x0/0x40 @ 1
[    0.674106] initcall sysctl_core_init+0x0/0x40 returned 0 after 11 usecs
[    0.674620] calling  eth_offload_init+0x0/0x30 @ 1
[    0.674997] initcall eth_offload_init+0x0/0x30 returned 0 after 0 usecs
[    0.675504] calling  ipv4_offload_init+0x0/0xe0 @ 1
[    0.675945] initcall ipv4_offload_init+0x0/0xe0 returned 0 after 0 usecs
[    0.676545] calling  inet_init+0x0/0x360 @ 1
[    0.676964] NET: Registered PF_INET protocol family
[    0.677715] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.679327] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.679996] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.680588] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.681280] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.682345] TCP: Hash tables configured (established 65536 bind 65536)
[    0.682955] UDP hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.683602] UDP-Lite hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.684309] initcall inet_init+0x0/0x360 returned 0 after 7359 usecs
[    0.684899] calling  af_unix_init+0x0/0x120 @ 1
[    0.685328] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.685848] initcall af_unix_init+0x0/0x120 returned 0 after 522 usecs
[    0.686433] calling  ipv6_offload_init+0x0/0xf0 @ 1
[    0.686887] initcall ipv6_offload_init+0x0/0xf0 returned 0 after 1 usecs
[    0.687492] calling  vlan_offload_init+0x0/0x30 @ 1
[    0.687946] initcall vlan_offload_init+0x0/0x30 returned 0 after 0 usecs
[    0.688501] calling  xsk_init+0x0/0xa0 @ 1
[    0.688836] NET: Registered PF_XDP protocol family
[    0.689215] initcall xsk_init+0x0/0xa0 returned 0 after 378 usecs
[    0.689680] calling  pcibios_assign_resources+0x0/0xe0 @ 1
[    0.690115] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.690587] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.691053] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.691567] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfebfffff window]
[    0.692151] pci_bus 0000:00: resource 8 [mem 0x240000000-0x2bfffffff window]
[    0.692796] initcall pcibios_assign_resources+0x0/0xe0 returned 0 after 2691 usecs
[    0.693786] calling  pci_apply_final_quirks+0x0/0x160 @ 1
[    0.694207] pci 0000:00:00.0: calling  quirk_passive_release+0x0/0xb0 @ 1
[    0.694722] pci 0000:00:01.0: PIIX3: Enabling Passive Release
[    0.695165] pci 0000:00:00.0: quirk_passive_release+0x0/0xb0 took 439 usecs
[    0.695694] pci 0000:00:00.0: calling  quirk_natoma+0x0/0x40 @ 1
[    0.696167] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    0.696621] pci 0000:00:00.0: quirk_natoma+0x0/0x40 took 443 usecs
[    0.697122] pci 0000:00:04.0: calling  quirk_usb_early_handoff+0x0/0x6d0 @ 1
[    0.708337] ACPI: \_SB_.LNKD: Enabled at IRQ 11
[    0.718792] pci 0000:00:04.0: quirk_usb_early_handoff+0x0/0x6d0 took 20647 usecs
[    0.719379] PCI: CLS 0 bytes, default 64
[    0.719698] initcall pci_apply_final_quirks+0x0/0x160 returned 0 after 25493 usecs
[    0.720272] calling  acpi_reserve_resources+0x0/0x120 @ 1
[    0.720695] initcall acpi_reserve_resources+0x0/0x120 returned 0 after 2 usecs
[    0.721239] calling  p2sb_fs_init+0x0/0x160 @ 1
[    0.721622] initcall p2sb_fs_init+0x0/0x160 returned -2 after 20 usecs
[    0.722118] calling  populate_rootfs+0x0/0x60 @ 1
[    0.722581] Trying to unpack rootfs image as initramfs...
[    0.723537] initcall populate_rootfs+0x0/0x60 returned 0 after 994 usecs
[    0.724210] calling  pci_iommu_init+0x0/0x50 @ 1
[    0.724570] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.725046] software IO TLB: mapped [mem 0x00000000af000000-0x00000000b3000000] (64MB)
[    0.725620] initcall pci_iommu_init+0x0/0x50 returned 0 after 1050 usecs
[    0.726117] calling  ir_dev_scope_init+0x0/0x50 @ 1
[    0.726494] initcall ir_dev_scope_init+0x0/0x50 returned 0 after 0 usecs
[    0.727036] calling  snp_init_platform_device+0x0/0x50 @ 1
[    0.727467] initcall snp_init_platform_device+0x0/0x50 returned -19 after 0 usecs
[    0.728021] calling  ia32_binfmt_init+0x0/0x30 @ 1
[    0.728415] initcall ia32_binfmt_init+0x0/0x30 returned 0 after 5 usecs
[    0.728950] calling  amd_ibs_init+0x0/0x370 @ 1
[    0.729303] initcall amd_ibs_init+0x0/0x370 returned -19 after 0 usecs
[    0.729787] calling  amd_uncore_init+0x0/0x1c0 @ 1
[    0.730157] initcall amd_uncore_init+0x0/0x1c0 returned -19 after 0 usecs
[    0.730655] calling  amd_iommu_pc_init+0x0/0x280 @ 1
[    0.731039] initcall amd_iommu_pc_init+0x0/0x280 returned -19 after 0 usecs
[    0.731557] calling  msr_init+0x0/0x70 @ 1
[    0.731966] initcall msr_init+0x0/0x70 returned 0 after 19 usecs
[    0.732443] calling  intel_uncore_init+0x0/0x5b0 @ 1
[    0.732824] initcall intel_uncore_init+0x0/0x5b0 returned -19 after 0 usecs
[    0.733333] calling  register_kernel_offset_dumper+0x0/0x30 @ 1
[    0.734039] initcall register_kernel_offset_dumper+0x0/0x30 returned 0 after 1 usecs
[    0.734931] calling  i8259A_init_ops+0x0/0x40 @ 1
[    0.735513] initcall i8259A_init_ops+0x0/0x40 returned 0 after 0 usecs
[    0.736278] calling  init_tsc_clocksource+0x0/0xe0 @ 1
[    0.736898] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x28680fa287f, max_idle_ns: 440795281151 ns
[    0.738023] initcall init_tsc_clocksource+0x0/0xe0 returned 0 after 1125 usecs
[    0.738843] calling  add_rtc_cmos+0x0/0xc0 @ 1
[    0.739400] initcall add_rtc_cmos+0x0/0xc0 returned 0 after 1 usecs
[    0.740122] calling  i8237A_init_ops+0x0/0x60 @ 1
[    0.740687] initcall i8237A_init_ops+0x0/0x60 returned 0 after 5 usecs
[    0.741431] calling  umwait_init+0x0/0xb0 @ 1
[    0.741955] initcall umwait_init+0x0/0xb0 returned -19 after 0 usecs
[    0.742689] calling  ioapic_init_ops+0x0/0x30 @ 1
[    0.743250] initcall ioapic_init_ops+0x0/0x30 returned 0 after 0 usecs
[    0.744022] calling  register_e820_pmem+0x0/0x90 @ 1
[    0.744636] initcall register_e820_pmem+0x0/0x90 returned 0 after 3 usecs
[    0.745432] calling  add_pcspkr+0x0/0x80 @ 1
[    0.745999] initcall add_pcspkr+0x0/0x80 returned 0 after 34 usecs
[    0.746748] calling  start_periodic_check_for_corruption+0x0/0x60 @ 1
[    0.747500] initcall start_periodic_check_for_corruption+0x0/0x60 returned 0 after 0 usecs
[    0.748434] calling  audit_classes_init+0x0/0xc0 @ 1
[    0.749033] initcall audit_classes_init+0x0/0xc0 returned 0 after 1 usecs
[    0.749815] calling  pt_dump_init+0x0/0x50 @ 1
[    0.750351] initcall pt_dump_init+0x0/0x50 returned 0 after 0 usecs
[    0.751084] calling  iosf_mbi_init+0x0/0xc0 @ 1
[    0.751670] initcall iosf_mbi_init+0x0/0xc0 returned 0 after 26 usecs
[    0.752415] calling  proc_execdomains_init+0x0/0x30 @ 1
[    0.753035] initcall proc_execdomains_init+0x0/0x30 returned 0 after 5 usecs
[    0.754340] calling  register_warn_debugfs+0x0/0x40 @ 1
[    0.754976] initcall register_warn_debugfs+0x0/0x40 returned 0 after 1 usecs
[    0.755798] calling  cpuhp_sysfs_init+0x0/0x100 @ 1
[    0.756401] initcall cpuhp_sysfs_init+0x0/0x100 returned 0 after 13 usecs
[    0.757184] calling  ioresources_init+0x0/0x60 @ 1
[    0.757789] initcall ioresources_init+0x0/0x60 returned 0 after 2 usecs
[    0.758566] calling  psi_proc_init+0x0/0x90 @ 1
[    0.759145] initcall psi_proc_init+0x0/0x90 returned 0 after 2 usecs
[    0.759975] calling  snapshot_device_init+0x0/0x20 @ 1
[    0.760638] initcall snapshot_device_init+0x0/0x20 returned 0 after 40 usecs
[    0.761441] calling  irq_gc_init_ops+0x0/0x30 @ 1
[    0.762013] initcall irq_gc_init_ops+0x0/0x30 returned 0 after 0 usecs
[    0.762779] calling  irq_pm_init_ops+0x0/0x30 @ 1
[    0.763373] initcall irq_pm_init_ops+0x0/0x30 returned 0 after 7 usecs
[    0.764129] calling  klp_init+0x0/0x40 @ 1
[    0.764642] initcall klp_init+0x0/0x40 returned 0 after 3 usecs
[    0.765337] calling  proc_modules_init+0x0/0x30 @ 1
[    0.765935] initcall proc_modules_init+0x0/0x30 returned 0 after 2 usecs
[    0.766736] calling  timer_sysctl_init+0x0/0x30 @ 1
[    0.767341] initcall timer_sysctl_init+0x0/0x30 returned 0 after 3 usecs
[    0.768114] calling  timekeeping_init_ops+0x0/0x30 @ 1
[    0.768737] initcall timekeeping_init_ops+0x0/0x30 returned 0 after 0 usecs
[    0.769549] calling  init_clocksource_sysfs+0x0/0x40 @ 1
[    0.770218] initcall init_clocksource_sysfs+0x0/0x40 returned 0 after 31 usecs
[    0.771047] calling  init_timer_list_procfs+0x0/0x40 @ 1
[    0.771714] initcall init_timer_list_procfs+0x0/0x40 returned 0 after 9 usecs
[    0.772533] calling  alarmtimer_init+0x0/0xf0 @ 1
[    0.773124] initcall alarmtimer_init+0x0/0xf0 returned 0 after 12 usecs
[    0.773918] calling  init_posix_timers+0x0/0x90 @ 1
[    0.774522] initcall init_posix_timers+0x0/0x90 returned 0 after 4 usecs
[    0.775331] calling  clockevents_init_sysfs+0x0/0xe0 @ 1
[    0.776007] initcall clockevents_init_sysfs+0x0/0xe0 returned 0 after 41 usecs
[    0.776824] calling  proc_dma_init+0x0/0x30 @ 1
[    0.777368] initcall proc_dma_init+0x0/0x30 returned 0 after 1 usecs
[    0.778109] calling  kallsyms_init+0x0/0x30 @ 1
[    0.778668] initcall kallsyms_init+0x0/0x30 returned 0 after 1 usecs
[    0.779422] calling  pid_namespaces_init+0x0/0xc0 @ 1
[    0.780041] initcall pid_namespaces_init+0x0/0xc0 returned 0 after 27 usecs
[    0.780849] calling  ikconfig_init+0x0/0x60 @ 1
[    0.781403] initcall ikconfig_init+0x0/0x60 returned 0 after 1 usecs
[    0.782141] calling  audit_watch_init+0x0/0x60 @ 1
[    0.782709] initcall audit_watch_init+0x0/0x60 returned 0 after 0 usecs
[    0.784001] calling  audit_fsnotify_init+0x0/0x60 @ 1
[    0.784610] initcall audit_fsnotify_init+0x0/0x60 returned 0 after 0 usecs
[    0.785396] calling  audit_tree_init+0x0/0xd0 @ 1
[    0.785963] initcall audit_tree_init+0x0/0xd0 returned 0 after 2 usecs
[    0.786706] calling  seccomp_sysctl_init+0x0/0x40 @ 1
[    0.787340] initcall seccomp_sysctl_init+0x0/0x40 returned 0 after 9 usecs
[    0.788147] calling  utsname_sysctl_init+0x0/0x30 @ 1
[    0.788757] initcall utsname_sysctl_init+0x0/0x30 returned 0 after 7 usecs
[    0.789530] calling  init_tracepoints+0x0/0x50 @ 1
[    0.790109] initcall init_tracepoints+0x0/0x50 returned 0 after 1 usecs
[    0.790873] calling  stack_trace_init+0x0/0xc0 @ 1
[    0.791474] initcall stack_trace_init+0x0/0xc0 returned 0 after 9 usecs
[    0.792187] calling  init_mmio_trace+0x0/0x20 @ 1
[    0.792555] initcall init_mmio_trace+0x0/0x20 returned 0 after 2 usecs
[    0.793039] calling  init_blk_tracer+0x0/0x70 @ 1
[    0.793410] initcall init_blk_tracer+0x0/0x70 returned 0 after 4 usecs
[    0.793894] calling  perf_event_sysfs_init+0x0/0xb0 @ 1
[    0.794365] initcall perf_event_sysfs_init+0x0/0xb0 returned 0 after 77 usecs
[    0.794896] calling  system_trusted_keyring_init+0x0/0x110 @ 1
[    0.795371] Initialise system trusted keyrings
[    0.795726] initcall system_trusted_keyring_init+0x0/0x110 returned 0 after 355 usecs
[    0.796313] calling  blacklist_init+0x0/0x100 @ 1
[    0.796681] Key type blacklist registered
[    0.796999] initcall blacklist_init+0x0/0x100 returned 0 after 319 usecs
[    0.797498] calling  kswapd_init+0x0/0xa0 @ 1
[    0.797924] initcall kswapd_init+0x0/0xa0 returned 0 after 84 usecs
[    0.798640] calling  extfrag_debug_init+0x0/0x70 @ 1
[    0.799235] initcall extfrag_debug_init+0x0/0x70 returned 0 after 5 usecs
[    0.800041] calling  mm_compute_batch_init+0x0/0x30 @ 1
[    0.800696] initcall mm_compute_batch_init+0x0/0x30 returned 0 after 11 usecs
[    0.801521] calling  slab_proc_init+0x0/0x30 @ 1
[    0.802102] initcall slab_proc_init+0x0/0x30 returned 0 after 2 usecs
[    0.802862] calling  workingset_init+0x0/0xd0 @ 1
[    0.803446] workingset: timestamp_bits=36 max_order=21 bucket_order=0
[    0.804152] initcall workingset_init+0x0/0xd0 returned 0 after 706 usecs
[    0.804729] calling  proc_vmalloc_init+0x0/0x50 @ 1
[    0.805187] initcall proc_vmalloc_init+0x0/0x50 returned 0 after 1 usecs
[    0.805786] calling  slab_debugfs_init+0x0/0x70 @ 1
[    0.806252] initcall slab_debugfs_init+0x0/0x70 returned 0 after 9 usecs
[    0.806765] calling  procswaps_init+0x0/0x30 @ 1
[    0.807122] initcall procswaps_init+0x0/0x30 returned 0 after 1 usecs
[    0.807607] calling  zs_init+0x0/0x30 @ 1
[    0.807925] initcall zs_init+0x0/0x30 returned 0 after 0 usecs
[    0.808433] calling  ptdump_debugfs_init+0x0/0x40 @ 1
[    0.808910] initcall ptdump_debugfs_init+0x0/0x40 returned 0 after 7 usecs
[    0.809522] calling  fcntl_init+0x0/0x80 @ 1
[    0.809929] initcall fcntl_init+0x0/0x80 returned 0 after 3 usecs
[    0.810479] calling  proc_filesystems_init+0x0/0x30 @ 1
[    0.810956] initcall proc_filesystems_init+0x0/0x30 returned 0 after 0 usecs
[    0.811589] calling  start_dirtytime_writeback+0x0/0x60 @ 1
[    0.812103] initcall start_dirtytime_writeback+0x0/0x60 returned 0 after 3 usecs
[    0.812754] calling  dio_init+0x0/0x90 @ 1
[    0.813673] initcall dio_init+0x0/0x90 returned 0 after 1 usecs
[    0.814121] calling  dnotify_init+0x0/0x120 @ 1
[    0.814488] initcall dnotify_init+0x0/0x120 returned 0 after 11 usecs
[    0.814973] calling  fanotify_user_setup+0x0/0x250 @ 1
[    0.815386] initcall fanotify_user_setup+0x0/0x250 returned 0 after 7 usecs
[    0.815942] calling  userfaultfd_init+0x0/0xc0 @ 1
[    0.816360] initcall userfaultfd_init+0x0/0xc0 returned 0 after 44 usecs
[    0.816865] calling  aio_setup+0x0/0x120 @ 1
[    0.817217] initcall aio_setup+0x0/0x120 returned 0 after 17 usecs
[    0.817676] calling  mbcache_init+0x0/0x90 @ 1
[    0.818025] initcall mbcache_init+0x0/0x90 returned 0 after 3 usecs
[    0.818496] calling  init_devpts_fs+0x0/0x50 @ 1
[    0.818859] initcall init_devpts_fs+0x0/0x50 returned 0 after 6 usecs
[    0.819354] calling  ext4_init_fs+0x0/0x210 @ 1
[    0.819777] initcall ext4_init_fs+0x0/0x210 returned 0 after 58 usecs
[    0.820257] calling  journal_init+0x0/0x1f0 @ 1
[    0.820620] initcall journal_init+0x0/0x1f0 returned 0 after 11 usecs
[    0.821098] calling  init_squashfs_fs+0x0/0xd0 @ 1
[    0.821468] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.821906] initcall init_squashfs_fs+0x0/0xd0 returned 0 after 439 usecs
[    0.822403] calling  init_fat_fs+0x0/0xb0 @ 1
[    0.822745] initcall init_fat_fs+0x0/0xb0 returned 0 after 3 usecs
[    0.823203] calling  init_vfat_fs+0x0/0x20 @ 1
[    0.823558] initcall init_vfat_fs+0x0/0x20 returned 0 after 1 usecs
[    0.824030] calling  ecryptfs_init+0x0/0x230 @ 1
[    0.824518] initcall ecryptfs_init+0x0/0x230 returned 0 after 126 usecs
[    0.825018] calling  init_nls_cp437+0x0/0x30 @ 1
[    0.825380] initcall init_nls_cp437+0x0/0x30 returned 0 after 0 usecs
[    0.825856] calling  fuse_init+0x0/0x250 @ 1
[    0.826195] fuse: init (API version 7.43)
[    0.826543] initcall fuse_init+0x0/0x250 returned 0 after 347 usecs
[    0.827010] calling  efivarfs_init+0x0/0x20 @ 1
[    0.827371] initcall efivarfs_init+0x0/0x20 returned 0 after 0 usecs
[    0.827846] calling  ipc_init+0x0/0x40 @ 1
[    0.828226] initcall ipc_init+0x0/0x40 returned 0 after 6 usecs
[    0.828679] calling  ipc_sysctl_init+0x0/0x40 @ 1
[    0.829057] initcall ipc_sysctl_init+0x0/0x40 returned 0 after 9 usecs
[    0.829543] calling  init_mqueue_fs+0x0/0x160 @ 1
[    0.829929] initcall init_mqueue_fs+0x0/0x160 returned 0 after 17 usecs
[    0.830436] calling  key_proc_init+0x0/0x80 @ 1
[    0.830790] initcall key_proc_init+0x0/0x80 returned 0 after 1 usecs
[    0.831262] calling  selinux_nf_ip_init+0x0/0x60 @ 1
[    0.831661] initcall selinux_nf_ip_init+0x0/0x60 returned 0 after 0 usecs
[    0.832192] calling  init_sel_fs+0x0/0x140 @ 1
[    0.832429] Freeing initrd memory: 72972K
[    0.832614] initcall init_sel_fs+0x0/0x140 returned 0 after 0 usecs
[    0.833517] calling  selnl_init+0x0/0xa0 @ 1
[    0.833930] initcall selnl_init+0x0/0xa0 returned 0 after 7 usecs
[    0.834481] calling  sel_netif_init+0x0/0x50 @ 1
[    0.834915] initcall sel_netif_init+0x0/0x50 returned 0 after 0 usecs
[    0.835497] calling  sel_netnode_init+0x0/0x40 @ 1
[    0.835946] initcall sel_netnode_init+0x0/0x40 returned 0 after 0 usecs
[    0.836546] calling  sel_netport_init+0x0/0x40 @ 1
[    0.836993] initcall sel_netport_init+0x0/0x40 returned 0 after 0 usecs
[    0.837583] calling  aurule_init+0x0/0x40 @ 1
[    0.837994] initcall aurule_init+0x0/0x40 returned 0 after 0 usecs
[    0.838549] calling  apparmor_nf_ip_init+0x0/0x50 @ 1
[    0.839013] initcall apparmor_nf_ip_init+0x0/0x50 returned 0 after 0 usecs
[    0.839625] calling  bpf_crypto_skcipher_init+0x0/0x20 @ 1
[    0.840127] initcall bpf_crypto_skcipher_init+0x0/0x20 returned 0 after 0 usecs
[    0.840767] calling  crypto_hkdf_module_init+0x0/0x20 @ 1
[    0.841260] initcall crypto_hkdf_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.841911] calling  jent_mod_init+0x0/0xf0 @ 1
[    0.847731] initcall jent_mod_init+0x0/0xf0 returned 0 after 5464 usecs
[    0.848273] calling  asymmetric_key_init+0x0/0x20 @ 1
[    0.848826] Key type asymmetric registered
[    0.849334] initcall asymmetric_key_init+0x0/0x20 returned 0 after 508 usecs
[    0.850129] calling  x509_key_init+0x0/0x20 @ 1
[    0.850675] Asymmetric key parser 'x509' registered
[    0.851250] initcall x509_key_init+0x0/0x20 returned 0 after 575 usecs
[    0.851994] calling  crypto_kdf108_init+0x0/0x20 @ 1
[    0.852626] initcall crypto_kdf108_init+0x0/0x20 returned 0 after 0 usecs
[    0.853395] calling  blkdev_init+0x0/0x30 @ 1
[    0.853946] initcall blkdev_init+0x0/0x30 returned 0 after 14 usecs
[    0.854679] calling  proc_genhd_init+0x0/0x50 @ 1
[    0.855103] initcall proc_genhd_init+0x0/0x50 returned 0 after 2 usecs
[    0.855690] calling  bsg_init+0x0/0xa0 @ 1
[    0.856092] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    0.856634] initcall bsg_init+0x0/0xa0 returned 0 after 549 usecs
[    0.857174] calling  throtl_init+0x0/0x50 @ 1
[    0.857910] initcall throtl_init+0x0/0x50 returned 0 after 328 usecs
[    0.858492] calling  ioc_init+0x0/0x20 @ 1
[    0.858827] initcall ioc_init+0x0/0x20 returned 0 after 4 usecs
[    0.859267] calling  deadline_init+0x0/0x20 @ 1
[    0.859622] io scheduler mq-deadline registered
[    0.860028] initcall deadline_init+0x0/0x20 returned 0 after 406 usecs
[    0.860610] calling  bfq_init+0x0/0xf0 @ 1
[    0.861020] io scheduler bfq registered
[    0.861388] initcall bfq_init+0x0/0xf0 returned 0 after 384 usecs
[    0.861937] calling  io_uring_init+0x0/0xe0 @ 1
[    0.862370] initcall io_uring_init+0x0/0xe0 returned 0 after 10 usecs
[    0.862948] calling  blake2s_mod_init+0x0/0x20 @ 1
[    0.863394] initcall blake2s_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.863984] calling  btree_module_init+0x0/0x80 @ 1
[    0.864439] initcall btree_module_init+0x0/0x80 returned 0 after 0 usecs
[    0.865031] calling  percpu_counter_startup+0x0/0x70 @ 1
[    0.865625] initcall percpu_counter_startup+0x0/0x70 returned 0 after 108 usecs
[    0.866275] calling  digsig_init+0x0/0x50 @ 1
[    0.866690] initcall digsig_init+0x0/0x50 returned 0 after 3 usecs
[    0.867235] calling  phy_core_init+0x0/0x60 @ 1
[    0.867677] initcall phy_core_init+0x0/0x60 returned 0 after 13 usecs
[    0.868261] calling  amd_gpio_driver_init+0x0/0x30 @ 1
[    0.868744] initcall amd_gpio_driver_init+0x0/0x30 returned 0 after 11 usecs
[    0.869370] calling  crystalcove_pwm_driver_init+0x0/0x30 @ 1
[    0.869891] initcall crystalcove_pwm_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.870555] calling  pwm_lpss_driver_pci_init+0x0/0x30 @ 1
[    0.871066] initcall pwm_lpss_driver_pci_init+0x0/0x30 returned 0 after 12 usecs
[    0.871717] calling  pwm_lpss_driver_platform_init+0x0/0x30 @ 1
[    0.872257] initcall pwm_lpss_driver_platform_init+0x0/0x30 returned 0 after 3 usecs
[    0.872938] calling  ledtrig_disk_init+0x0/0x50 @ 1
[    0.873732] initcall ledtrig_disk_init+0x0/0x50 returned 0 after 2 usecs
[    0.874330] calling  ledtrig_mtd_init+0x0/0x40 @ 1
[    0.874779] initcall ledtrig_mtd_init+0x0/0x40 returned 0 after 1 usecs
[    0.875373] calling  ledtrig_cpu_init+0x0/0x100 @ 1
[    0.875906] ledtrig-cpu: registered to indicate activity on CPUs
[    0.876453] initcall ledtrig_cpu_init+0x0/0x100 returned 0 after 625 usecs
[    0.877031] calling  ledtrig_panic_init+0x0/0x60 @ 1
[    0.877414] initcall ledtrig_panic_init+0x0/0x60 returned 0 after 1 usecs
[    0.877914] calling  pcie_portdrv_init+0x0/0x60 @ 1
[    0.878305] initcall pcie_portdrv_init+0x0/0x60 returned 0 after 17 usecs
[    0.878805] calling  pci_proc_init+0x0/0x80 @ 1
[    0.879163] initcall pci_proc_init+0x0/0x80 returned 0 after 7 usecs
[    0.879638] calling  pci_hotplug_init+0x0/0x50 @ 1
[    0.880006] initcall pci_hotplug_init+0x0/0x50 returned 0 after 0 usecs
[    0.880553] calling  shpcd_init+0x0/0x30 @ 1
[    0.880963] initcall shpcd_init+0x0/0x30 returned 0 after 5 usecs
[    0.881509] calling  pci_ep_cfs_init+0x0/0x100 @ 1
[    0.881970] initcall pci_ep_cfs_init+0x0/0x100 returned 0 after 14 usecs
[    0.882568] calling  pci_epc_init+0x0/0x20 @ 1
[    0.882984] initcall pci_epc_init+0x0/0x20 returned 0 after 2 usecs
[    0.883548] calling  pci_epf_init+0x0/0x50 @ 1
[    0.883969] initcall pci_epf_init+0x0/0x50 returned 0 after 6 usecs
[    0.884481] calling  dw_plat_pcie_driver_init+0x0/0x30 @ 1
[    0.884937] initcall dw_plat_pcie_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.885577] calling  imsttfb_init+0x0/0x150 @ 1
[    0.886007] initcall imsttfb_init+0x0/0x150 returned 0 after 5 usecs
[    0.886576] calling  asiliantfb_init+0x0/0x60 @ 1
[    0.887013] initcall asiliantfb_init+0x0/0x60 returned 0 after 5 usecs
[    0.887500] calling  vesafb_driver_init+0x0/0x30 @ 1
[    0.887884] initcall vesafb_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.888471] calling  efifb_driver_init+0x0/0x30 @ 1
[    0.888926] initcall efifb_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.889525] calling  simplefb_driver_init+0x0/0x30 @ 1
[    0.890003] initcall simplefb_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.890622] calling  intel_idle_init+0x0/0xd90 @ 1
[    0.891068] initcall intel_idle_init+0x0/0xd90 returned -19 after 0 usecs
[    0.891674] calling  ged_driver_init+0x0/0x30 @ 1
[    0.892109] initcall ged_driver_init+0x0/0x30 returned 0 after 3 usecs
[    0.892602] calling  acpi_ac_init+0x0/0x60 @ 1
[    0.892970] initcall acpi_ac_init+0x0/0x60 returned 0 after 20 usecs
[    0.893445] calling  acpi_button_driver_init+0x0/0x70 @ 1
[    0.893902] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    0.894562] ACPI: button: Power Button [PWRF]
[    0.894912] probe of LNXPWRBN:00 returned 0 after 1048 usecs
[    0.895353] initcall acpi_button_driver_init+0x0/0x70 returned 0 after 1495 usecs
[    0.895904] calling  acpi_fan_driver_init+0x0/0x30 @ 1
[    0.896309] initcall acpi_fan_driver_init+0x0/0x30 returned 0 after 3 usecs
[    0.896825] calling  acpi_processor_driver_init+0x0/0xd0 @ 1
[    0.897269] probe of cpu0 returned 0 after 12 usecs
[    0.897652] probe of cpu1 returned 0 after 8 usecs
[    0.898027] probe of cpu2 returned 0 after 8 usecs
[    0.898402] probe of cpu3 returned 0 after 8 usecs
[    0.899192] initcall acpi_processor_driver_init+0x0/0xd0 returned 0 after 1938 usecs
[    0.899771] calling  acpi_thermal_init+0x0/0xa0 @ 1
[    0.900192] initcall acpi_thermal_init+0x0/0xa0 returned 0 after 40 usecs
[    0.900698] calling  acpi_battery_init+0x0/0x60 @ 1
[    0.901086] initcall acpi_battery_init+0x0/0x60 returned 0 after 10 usecs
[    0.901591] calling  bgrt_init+0x0/0xe0 @ 1
[    0.901922] initcall bgrt_init+0x0/0xe0 returned -19 after 0 usecs
[    0.902384] calling  acpi_aml_init+0x0/0xe0 @ 1
[    0.902742] initcall acpi_aml_init+0x0/0xe0 returned 0 after 3 usecs
[    0.903536] calling  erst_init+0x0/0x350 @ 1
[    0.903871] initcall erst_init+0x0/0x350 returned 0 after 0 usecs
[    0.904342] calling  gpio_clk_driver_init+0x0/0x30 @ 1
[    0.904738] initcall gpio_clk_driver_init+0x0/0x30 returned 0 after 4 usecs
[    0.905253] calling  gated_fixed_clk_driver_init+0x0/0x30 @ 1
[    0.905682] initcall gated_fixed_clk_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.906229] calling  fch_clk_driver_init+0x0/0x30 @ 1
[    0.906613] initcall fch_clk_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.907120] calling  plt_clk_driver_init+0x0/0x30 @ 1
[    0.907515] initcall plt_clk_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.908018] calling  virtio_mmio_init+0x0/0x30 @ 1
[    0.908394] initcall virtio_mmio_init+0x0/0x30 returned 0 after 3 usecs
[    0.908879] calling  virtio_pci_driver_init+0x0/0x30 @ 1
[    0.919894] ACPI: \_SB_.LNKC: Enabled at IRQ 10
[    0.920949] probe of 0000:00:03.0 returned 0 after 11666 usecs
[    0.931557] ACPI: \_SB_.LNKB: Enabled at IRQ 10
[    0.932490] probe of 0000:00:06.0 returned 0 after 11094 usecs
[    0.945079] probe of 0000:00:07.0 returned 0 after 11474 usecs
[    0.957060] probe of 0000:00:08.0 returned 0 after 11299 usecs
[    0.957771] initcall virtio_pci_driver_init+0x0/0x30 returned 0 after 48491 usecs
[    0.958625] calling  virtio_balloon_driver_init+0x0/0x30 @ 1
[    0.959548] probe of virtio3 returned 0 after 265 usecs
[    0.960167] initcall virtio_balloon_driver_init+0x0/0x30 returned 0 after 887 usecs
[    0.961051] calling  xenbus_probe_initcall+0x0/0xb0 @ 1
[    0.961691] initcall xenbus_probe_initcall+0x0/0xb0 returned -19 after 0 usecs
[    0.962522] calling  xenbus_init+0x0/0x60 @ 1
[    0.963058] initcall xenbus_init+0x0/0x60 returned -19 after 0 usecs
[    0.964166] calling  xenbus_backend_init+0x0/0x60 @ 1
[    0.964795] initcall xenbus_backend_init+0x0/0x60 returned -19 after 0 usecs
[    0.965613] calling  hyper_sysfs_init+0x0/0x250 @ 1
[    0.966207] initcall hyper_sysfs_init+0x0/0x250 returned -19 after 0 usecs
[    0.967007] calling  hypervisor_subsys_init+0x0/0x40 @ 1
[    0.967653] initcall hypervisor_subsys_init+0x0/0x40 returned -19 after 0 usecs
[    0.968502] calling  platform_driver_init+0x0/0x30 @ 1
[    0.969115] initcall platform_driver_init+0x0/0x30 returned 0 after 14 usecs
[    0.969932] calling  xen_late_init_mcelog+0x0/0x90 @ 1
[    0.970572] initcall xen_late_init_mcelog+0x0/0x90 returned -19 after 0 usecs
[    0.971382] calling  xen_acpi_processor_init+0x0/0x200 @ 1
[    0.972149] initcall xen_acpi_processor_init+0x0/0x200 returned -19 after 0 usecs
[    0.973013] calling  n_null_init+0x0/0x30 @ 1
[    0.973552] initcall n_null_init+0x0/0x30 returned 0 after 0 usecs
[    0.974276] calling  pty_init+0x0/0x400 @ 1
[    0.974838] initcall pty_init+0x0/0x400 returned 0 after 46 usecs
[    0.975563] calling  sysrq_init+0x0/0x90 @ 1
[    0.976125] initcall sysrq_init+0x0/0x90 returned 0 after 3 usecs
[    0.976840] calling  xen_hvc_init+0x0/0x200 @ 1
[    0.977394] initcall xen_hvc_init+0x0/0x200 returned -19 after 0 usecs
[    0.978138] calling  serial8250_init+0x0/0x130 @ 1
[    0.978720] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.979504] probe of 00:00:0 returned 0 after 2 usecs
[    0.980121] probe of 00:00:0.0 returned 0 after 2 usecs
[    0.980883] 00:00: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.981786] probe of 00:00 returned 0 after 2300 usecs
[    0.982467] probe of serial8250:0 returned 0 after 2 usecs
[    0.983119] probe of serial8250:0.1 returned 0 after 2 usecs
[    0.983881] probe of serial8250:0.2 returned 0 after 1 usecs
[    0.984593] probe of serial8250:0.3 returned 0 after 1 usecs
[    0.985306] probe of serial8250:0.4 returned 0 after 1 usecs
[    0.986021] probe of serial8250:0.5 returned 0 after 1 usecs
[    0.986713] probe of serial8250:0.6 returned 0 after 1 usecs
[    0.987413] probe of serial8250:0.7 returned 0 after 1 usecs
[    0.988116] probe of serial8250:0.8 returned 0 after 2 usecs
[    0.988672] probe of serial8250:0.9 returned 0 after 1 usecs
[    0.989217] probe of serial8250:0.10 returned 0 after 1 usecs
[    0.989769] probe of serial8250:0.11 returned 0 after 2 usecs
[    0.990327] probe of serial8250:0.12 returned 0 after 1 usecs
[    0.990875] probe of serial8250:0.13 returned 0 after 1 usecs
[    0.991447] probe of serial8250:0.14 returned 0 after 1 usecs
[    0.991998] probe of serial8250:0.15 returned 0 after 1 usecs
[    0.992497] probe of serial8250:0.16 returned 0 after 1 usecs
[    0.992966] probe of serial8250:0.17 returned 0 after 1 usecs
[    0.993819] probe of serial8250:0.18 returned 0 after 1 usecs
[    0.994369] probe of serial8250:0.19 returned 0 after 1 usecs
[    0.994921] probe of serial8250:0.20 returned 0 after 1 usecs
[    0.995477] probe of serial8250:0.21 returned 0 after 1 usecs
[    0.996025] probe of serial8250:0.22 returned 0 after 1 usecs
[    0.996580] probe of serial8250:0.23 returned 0 after 1 usecs
[    0.997130] probe of serial8250:0.24 returned 0 after 2 usecs
[    0.997676] probe of serial8250:0.25 returned 0 after 1 usecs
[    0.998229] probe of serial8250:0.26 returned 0 after 1 usecs
[    0.998781] probe of serial8250:0.27 returned 0 after 1 usecs
[    0.999341] probe of serial8250:0.28 returned 0 after 1 usecs
[    0.999893] probe of serial8250:0.29 returned 0 after 1 usecs
[    1.000446] probe of serial8250:0.30 returned 0 after 1 usecs
[    1.000989] probe of serial8250:0.31 returned 0 after 1 usecs
[    1.001541] probe of serial8250 returned 0 after 3 usecs
[    1.002027] initcall serial8250_init+0x0/0x130 returned 0 after 23308 usecs
[    1.002644] calling  serial_pci_driver_init+0x0/0x30 @ 1
[    1.003141] initcall serial_pci_driver_init+0x0/0x30 returned 0 after 13 usecs
[    1.003774] calling  pericom8250_pci_driver_init+0x0/0x30 @ 1
[    1.004300] initcall pericom8250_pci_driver_init+0x0/0x30 returned 0 after 6 usecs
[    1.004970] calling  max310x_uart_init+0x0/0x80 @ 1
[    1.005433] initcall max310x_uart_init+0x0/0x80 returned 0 after 12 usecs
[    1.006038] calling  sccnxp_uart_driver_init+0x0/0x30 @ 1
[    1.006530] initcall sccnxp_uart_driver_init+0x0/0x30 returned 0 after 3 usecs
[    1.007166] calling  init_kgdboc+0x0/0x90 @ 1
[    1.007598] probe of kgdboc returned 0 after 2 usecs
[    1.008058] initcall init_kgdboc+0x0/0x90 returned 0 after 474 usecs
[    1.008629] calling  random_sysctls_init+0x0/0x40 @ 1
[    1.009097] initcall random_sysctls_init+0x0/0x40 returned 0 after 4 usecs
[    1.009706] calling  ttyprintk_init+0x0/0x140 @ 1
[    1.010135] initcall ttyprintk_init+0x0/0x140 returned 0 after 14 usecs
[    1.010635] calling  virtio_console_init+0x0/0xf0 @ 1
[    1.033935] probe of virtio2 returned 0 after 22904 usecs
[    1.034381] initcall virtio_console_init+0x0/0xf0 returned 0 after 23359 usecs
[    1.035033] calling  hpet_init+0x0/0xa0 @ 1
[    1.035416] initcall hpet_init+0x0/0xa0 returned 0 after 41 usecs
[    1.035975] calling  agp_init+0x0/0x40 @ 1
[    1.036362] Linux agpgart interface v0.103
[    1.036687] initcall agp_init+0x0/0x40 returned 0 after 325 usecs
[    1.037146] calling  agp_amd64_mod_init+0x0/0x40 @ 1
[    1.037582] initcall agp_amd64_mod_init+0x0/0x40 returned -19 after 13 usecs
[    1.038209] calling  agp_intel_init+0x0/0x40 @ 1
[    1.038668] probe of 0000:00:00.0 returned 19 after 25 usecs
[    1.039191] initcall agp_intel_init+0x0/0x40 returned 0 after 550 usecs
[    1.039850] calling  agp_via_init+0x0/0x40 @ 1
[    1.040218] initcall agp_via_init+0x0/0x40 returned 0 after 8 usecs
[    1.040690] calling  init_tis+0x0/0xf0 @ 1
[    1.041027] initcall init_tis+0x0/0xf0 returned 0 after 12 usecs
[    1.041478] calling  crb_acpi_driver_init+0x0/0x30 @ 1
[    1.041885] initcall crb_acpi_driver_init+0x0/0x30 returned 0 after 12 usecs
[    1.042409] calling  cn_proc_init+0x0/0x60 @ 1
[    1.042763] initcall cn_proc_init+0x0/0x60 returned 0 after 0 usecs
[    1.043227] calling  topology_sysfs_init+0x0/0x40 @ 1
[    1.043739] initcall topology_sysfs_init+0x0/0x40 returned 0 after 53 usecs
[    1.044317] calling  cacheinfo_sysfs_init+0x0/0x40 @ 1
[    1.044883] initcall cacheinfo_sysfs_init+0x0/0x40 returned 0 after 171 usecs
[    1.045493] calling  devcoredump_init+0x0/0x20 @ 1
[    1.045880] initcall devcoredump_init+0x0/0x20 returned 0 after 4 usecs
[    1.046374] calling  loop_init+0x0/0x100 @ 1
[    1.047811] loop: module loaded
[    1.048106] initcall loop_init+0x0/0x100 returned 0 after 1394 usecs
[    1.048581] calling  xlblk_init+0x0/0x190 @ 1
[    1.048922] initcall xlblk_init+0x0/0x190 returned -19 after 0 usecs
[    1.049479] calling  tps65912_i2c_driver_init+0x0/0x30 @ 1
[    1.049979] initcall tps65912_i2c_driver_init+0x0/0x30 returned 0 after 7 usecs
[    1.050632] calling  tps65912_spi_driver_init+0x0/0x30 @ 1
[    1.051140] initcall tps65912_spi_driver_init+0x0/0x30 returned 0 after 3 usecs
[    1.051748] calling  twl_driver_init+0x0/0x30 @ 1
[    1.052119] initcall twl_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.052610] calling  twl4030_audio_driver_init+0x0/0x30 @ 1
[    1.053043] initcall twl4030_audio_driver_init+0x0/0x30 returned 0 after 5 usecs
[    1.053595] calling  twl6040_driver_init+0x0/0x30 @ 1
[    1.053993] initcall twl6040_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.054567] calling  da9063_i2c_driver_init+0x0/0x30 @ 1
[    1.054976] initcall da9063_i2c_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.055520] calling  max14577_i2c_init+0x0/0x30 @ 1
[    1.055913] initcall max14577_i2c_init+0x0/0x30 returned 0 after 2 usecs
[    1.056420] calling  max77693_i2c_driver_init+0x0/0x30 @ 1
[    1.056840] initcall max77693_i2c_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.057375] calling  adp5520_driver_init+0x0/0x30 @ 1
[    1.057761] initcall adp5520_driver_init+0x0/0x30 returned 0 after 1 usecs
[    1.058273] calling  crystal_cove_i2c_driver_init+0x0/0x30 @ 1
[    1.058712] initcall crystal_cove_i2c_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.059298] calling  cht_wc_driver_init+0x0/0x30 @ 1
[    1.059763] initcall cht_wc_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.060370] calling  e820_pmem_driver_init+0x0/0x30 @ 1
[    1.060779] initcall e820_pmem_driver_init+0x0/0x30 returned 0 after 3 usecs
[    1.061302] calling  hmem_init+0x0/0x40 @ 1
[    1.061662] initcall hmem_init+0x0/0x40 returned 0 after 3 usecs
[    1.062123] calling  udmabuf_dev_init+0x0/0xc0 @ 1
[    1.062539] initcall udmabuf_dev_init+0x0/0xc0 returned 0 after 39 usecs
[    1.063042] calling  init_sd+0x0/0x140 @ 1
[    1.063783] initcall init_sd+0x0/0x140 returned 0 after 9 usecs
[    1.064235] calling  init_sr+0x0/0x60 @ 1
[    1.064555] initcall init_sr+0x0/0x60 returned 0 after 2 usecs
[    1.064990] calling  init_sg+0x0/0x200 @ 1
[    1.065323] initcall init_sg+0x0/0x200 returned 0 after 8 usecs
[    1.065773] calling  piix_init+0x0/0x40 @ 1
[    1.066170] ata_piix 0000:00:01.1: version 2.13
[    1.067202] scsi host0: ata_piix
[    1.067654] scsi host1: ata_piix
[    1.067995] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc5a0 irq 14 lpm-pol 0
[    1.068577] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc5a8 irq 15 lpm-pol 0
[    1.069138] probe of 0000:00:01.1 returned 0 after 2973 usecs
[    1.069574] initcall piix_init+0x0/0x40 returned 0 after 3415 usecs
[    1.070044] calling  sis_pci_driver_init+0x0/0x30 @ 1
[    1.070438] initcall sis_pci_driver_init+0x0/0x30 returned 0 after 7 usecs
[    1.070941] calling  ata_generic_pci_driver_init+0x0/0x30 @ 1
[    1.071388] initcall ata_generic_pci_driver_init+0x0/0x30 returned 0 after 11 usecs
[    1.071956] calling  blackhole_netdev_init+0x0/0x80 @ 1
[    1.072378] initcall blackhole_netdev_init+0x0/0x80 returned 0 after 14 usecs
[    1.073082] calling  fixed_mdio_bus_init+0x0/0xe0 @ 1
[    1.073560] probe of Fixed MDIO bus returned 0 after 2 usecs
[    1.074114] initcall fixed_mdio_bus_init+0x0/0xe0 returned 0 after 563 usecs
[    1.074738] calling  tun_init+0x0/0xd0 @ 1
[    1.075060] tun: Universal TUN/TAP device driver, 1.6
[    1.075509] initcall tun_init+0x0/0xd0 returned 0 after 449 usecs
[    1.075969] calling  ppp_init+0x0/0x120 @ 1
[    1.076305] PPP generic driver version 2.4.2
[    1.076670] initcall ppp_init+0x0/0x120 returned 0 after 365 usecs
[    1.077178] calling  netif_init+0x0/0x80 @ 1
[    1.077513] initcall netif_init+0x0/0x80 returned -19 after 0 usecs
[    1.077983] calling  vfio_init+0x0/0xa0 @ 1
[    1.078438] VFIO - User Level meta-driver version: 0.3
[    1.078840] initcall vfio_init+0x0/0xa0 returned 0 after 523 usecs
[    1.079305] calling  vfio_iommu_type1_init+0x0/0x20 @ 1
[    1.079718] initcall vfio_iommu_type1_init+0x0/0x20 returned 0 after 0 usecs
[    1.080276] calling  vfio_pci_core_init+0x0/0x20 @ 1
[    1.080658] initcall vfio_pci_core_init+0x0/0x20 returned 0 after 0 usecs
[    1.081162] calling  vfio_pci_init+0x0/0x1c0 @ 1
[    1.081528] initcall vfio_pci_init+0x0/0x1c0 returned 0 after 11 usecs
[    1.082022] calling  cdrom_init+0x0/0x20 @ 1
[    1.082418] initcall cdrom_init+0x0/0x20 returned 0 after 3 usecs
[    1.082977] calling  dwc2_platform_driver_init+0x0/0x30 @ 1
[    1.083528] initcall dwc2_platform_driver_init+0x0/0x30 returned 0 after 11 usecs
[    1.084091] calling  ehci_hcd_init+0x0/0x100 @ 1
[    1.084453] initcall ehci_hcd_init+0x0/0x100 returned 0 after 3 usecs
[    1.084933] calling  ehci_pci_init+0x0/0x70 @ 1
[    1.085299] initcall ehci_pci_init+0x0/0x70 returned 0 after 9 usecs
[    1.085783] calling  ehci_platform_init+0x0/0x50 @ 1
[    1.086163] initcall ehci_platform_init+0x0/0x50 returned 0 after 3 usecs
[    1.086661] calling  ohci_hcd_mod_init+0x0/0x80 @ 1
[    1.087038] initcall ohci_hcd_mod_init+0x0/0x80 returned 0 after 1 usecs
[    1.087538] calling  ohci_pci_init+0x0/0x70 @ 1
[    1.087895] initcall ohci_pci_init+0x0/0x70 returned 0 after 7 usecs
[    1.088371] calling  ohci_platform_init+0x0/0x50 @ 1
[    1.088758] initcall ohci_platform_init+0x0/0x50 returned 0 after 2 usecs
[    1.089266] calling  uhci_hcd_init+0x0/0x140 @ 1
[    1.089633] initcall uhci_hcd_init+0x0/0x140 returned 0 after 8 usecs
[    1.090109] calling  xhci_hcd_init+0x0/0x40 @ 1
[    1.090471] initcall xhci_hcd_init+0x0/0x40 returned 0 after 2 usecs
[    1.090943] calling  xhci_pci_init+0x0/0x80 @ 1
[    1.102542] xhci_hcd 0000:00:04.0: xHCI Host Controller
[    1.102935] xhci_hcd 0000:00:04.0: new USB bus registered, assigned bus number 1
[    1.103635] xhci_hcd 0000:00:04.0: hcc params 0x00087001 hci version 0x100 quirks 0x0000000000000010
[    1.104681] xhci_hcd 0000:00:04.0: xHCI Host Controller
[    1.105145] xhci_hcd 0000:00:04.0: new USB bus registered, assigned bus number 2
[    1.105769] xhci_hcd 0000:00:04.0: Host supports USB 3.0 SuperSpeed
[    1.106323] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.15
[    1.106932] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.107521] usb usb1: Product: xHCI Host Controller
[    1.107897] usb usb1: Manufacturer: Linux 6.15.0-rc5+ xhci-hcd
[    1.108348] usb usb1: SerialNumber: 0000:00:04.0
[    1.108897] hub 1-0:1.0: USB hub found
[    1.109301] hub 1-0:1.0: 15 ports detected
[    1.109972] probe of 1-0:1.0 returned 0 after 1078 usecs
[    1.110478] probe of usb1 returned 0 after 1601 usecs
[    1.110897] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.111550] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.15
[    1.112278] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.112914] usb usb2: Product: xHCI Host Controller
[    1.113363] usb usb2: Manufacturer: Linux 6.15.0-rc5+ xhci-hcd
[    1.113889] usb usb2: SerialNumber: 0000:00:04.0
[    1.114391] hub 2-0:1.0: USB hub found
[    1.114794] hub 2-0:1.0: 15 ports detected
[    1.115502] probe of 2-0:1.0 returned 0 after 1112 usecs
[    1.115995] probe of usb2 returned 0 after 1617 usecs
[    1.116477] probe of 0000:00:04.0 returned 0 after 25181 usecs
[    1.117014] initcall xhci_pci_init+0x0/0x80 returned 0 after 25720 usecs
[    1.117613] calling  kgdbdbgp_start_thread+0x0/0x70 @ 1
[    1.118093] initcall kgdbdbgp_start_thread+0x0/0x70 returned 0 after 0 usecs
[    1.118714] calling  i8042_init+0x0/0x750 @ 1
[    1.119140] probe of 00:01 returned 0 after 5 usecs
[    1.119606] probe of 00:02 returned 0 after 3 usecs
[    1.120057] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[    1.121250] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.121714] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.122209] probe of i8042 returned 0 after 1426 usecs
[    1.122684] initcall i8042_init+0x0/0x750 returned 0 after 3560 usecs
[    1.123648] calling  mousedev_init+0x0/0xa0 @ 1
[    1.124139] mousedev: PS/2 mouse device common for all mice
[    1.124643] initcall mousedev_init+0x0/0xa0 returned 0 after 554 usecs
[    1.125222] calling  evdev_init+0x0/0x20 @ 1
[    1.125646] initcall evdev_init+0x0/0x20 returned 0 after 40 usecs
[    1.126117] calling  atkbd_init+0x0/0x40 @ 1
[    1.126463] initcall atkbd_init+0x0/0x40 returned 0 after 9 usecs
[    1.126918] calling  elants_i2c_driver_init+0x0/0x30 @ 1
[    1.127344] initcall elants_i2c_driver_init+0x0/0x30 returned 0 after 17 usecs
[    1.127891] calling  uinput_misc_init+0x0/0x20 @ 1
[    1.128315] initcall uinput_misc_init+0x0/0x20 returned 0 after 49 usecs
[    1.128819] calling  cmos_init+0x0/0x90 @ 1
[    1.129170] rtc_cmos 00:04: RTC can wake from S4
[    1.129783] probe of alarmtimer.0.auto returned 0 after 3 usecs
[    1.130243] rtc_cmos 00:04: registered as rtc0
[    1.130639] rtc_cmos 00:04: setting system clock to 2025-06-23T06:12:26 UTC (1750659146)
[    1.131267] rtc_cmos 00:04: alarms up to one day, y3k, 242 bytes nvram
[    1.131761] probe of 00:04 returned 0 after 2594 usecs
[    1.132366] initcall cmos_init+0x0/0x90 returned 0 after 3216 usecs
[    1.132970] calling  i2c_dev_init+0x0/0xc0 @ 1
[    1.133323] i2c_dev: i2c /dev entries driver
[    1.133659] initcall i2c_dev_init+0x0/0xc0 returned 0 after 335 usecs
[    1.134134] calling  restart_poweroff_driver_init+0x0/0x30 @ 1
[    1.134578] initcall restart_poweroff_driver_init+0x0/0x30 returned 0 after 7 usecs
[    1.135132] calling  thermal_throttle_init_device+0x0/0x60 @ 1
[    1.135578] initcall thermal_throttle_init_device+0x0/0x60 returned 0 after 0 usecs
[    1.136143] calling  watchdog_gov_noop_register+0x0/0x20 @ 1
[    1.136576] initcall watchdog_gov_noop_register+0x0/0x20 returned 0 after 10 usecs
[    1.137140] calling  dm_init+0x0/0x90 @ 1
[    1.137464] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    1.138354] device-mapper: uevent: version 1.0.3
[    1.138753] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    1.139390] device-mapper: ioctl: 4.49.0-ioctl (2025-01-17) initialised: dm-devel@lists.linux.dev
[    1.140129] initcall dm_init+0x0/0x90 returned 0 after 2664 usecs
[    1.140592] calling  ghes_edac_init+0x0/0x470 @ 1
[    1.140961] initcall ghes_edac_init+0x0/0x470 returned -19 after 1 usecs
[    1.141462] calling  amd_pstate_init+0x0/0x330 @ 1
[    1.141835] initcall amd_pstate_init+0x0/0x330 returned -19 after 0 usecs
[    1.142349] calling  intel_pstate_init+0x0/0x8e0 @ 1
[    1.142778] intel_pstate: CPU model not supported
[    1.143148] initcall intel_pstate_init+0x0/0x8e0 returned -19 after 371 usecs
[    1.143366] probe of serio0 returned 0 after 16036 usecs
[    1.143681] calling  sysfb_init+0x0/0x110 @ 1
[    1.144518] vesafb: mode is 640x480x32, linelength=2560, pages=0
[    1.144588] probe of serio1 returned 19 after 494 usecs
[    1.144985] vesafb: scrolling: redraw
[    1.144985] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.146116] vesafb: framebuffer at 0xf4000000, mapped to 0x0000000026bb97b9, using 1216k, total 1216k
[    1.147333] Console: switching to colour frame buffer device 80x30
[    1.147911] fb0: VESA VGA frame buffer device
[    1.148271] probe of vesa-framebuffer.0 returned 0 after 3756 usecs
[    1.148750] initcall sysfb_init+0x0/0x110 returned 0 after 4267 usecs
[    1.149266] calling  esrt_sysfs_init+0x0/0x330 @ 1
[    1.149642] initcall esrt_sysfs_init+0x0/0x330 returned -38 after 0 usecs
[    1.150159] calling  pmc_atom_init+0x0/0x2b0 @ 1
[    1.150525] initcall pmc_atom_init+0x0/0x2b0 returned -19 after 4 usecs
[    1.151019] calling  rproc_virtio_driver_init+0x0/0x30 @ 1
[    1.151453] initcall rproc_virtio_driver_init+0x0/0x30 returned 0 after 7 usecs
[    1.151994] calling  vmgenid_plaform_driver_init+0x0/0x30 @ 1
[    1.152444] initcall vmgenid_plaform_driver_init+0x0/0x30 returned 0 after 3 usecs
[    1.153009] calling  extcon_class_init+0x0/0x60 @ 1
[    1.153987] initcall extcon_class_init+0x0/0x60 returned 0 after 5 usecs
[    1.154498] calling  binder_init+0x0/0x280 @ 1
[    1.154940] initcall binder_init+0x0/0x280 returned 0 after 87 usecs
[    1.155462] calling  sock_diag_init+0x0/0x40 @ 1
[    1.155950] initcall sock_diag_init+0x0/0x40 returned 0 after 10 usecs
[    1.156457] calling  init_net_drop_monitor+0x0/0x120 @ 1
[    1.156914] drop_monitor: Initializing network drop monitor service
[    1.157388] initcall init_net_drop_monitor+0x0/0x120 returned 0 after 474 usecs
[    1.157953] calling  blackhole_init+0x0/0x20 @ 1
[    1.158312] initcall blackhole_init+0x0/0x20 returned 0 after 0 usecs
[    1.158792] calling  gre_offload_init+0x0/0x70 @ 1
[    1.159164] initcall gre_offload_init+0x0/0x70 returned 0 after 0 usecs
[    1.159669] calling  sysctl_ipv4_init+0x0/0x80 @ 1
[    1.160084] initcall sysctl_ipv4_init+0x0/0x80 returned 0 after 43 usecs
[    1.160598] calling  cubictcp_register+0x0/0x90 @ 1
[    1.160987] initcall cubictcp_register+0x0/0x90 returned 0 after 1 usecs
[    1.161499] calling  inet6_init+0x0/0x3f0 @ 1
[    1.161988] NET: Registered PF_INET6 protocol family
[    1.166037] Segment Routing with IPv6
[    1.166385] In-situ OAM (IOAM) with IPv6
[    1.166779] initcall inet6_init+0x0/0x3f0 returned 0 after 4817 usecs
[    1.167272] calling  packet_init+0x0/0xa0 @ 1
[    1.167632] NET: Registered PF_PACKET protocol family
[    1.168041] initcall packet_init+0x0/0xa0 returned 0 after 411 usecs
[    1.168624] calling  strp_dev_init+0x0/0x40 @ 1
[    1.169110] initcall strp_dev_init+0x0/0x40 returned 0 after 59 usecs
[    1.169605] calling  dcbnl_init+0x0/0x40 @ 1
[    1.170012] initcall dcbnl_init+0x0/0x40 returned 0 after 1 usecs
[    1.170471] calling  init_dns_resolver+0x0/0x100 @ 1
[    1.170858] Key type dns_resolver registered
[    1.171193] initcall init_dns_resolver+0x0/0x100 returned 0 after 340 usecs
[    1.171729] calling  handshake_init+0x0/0xb0 @ 1
[    1.172105] initcall handshake_init+0x0/0xb0 returned 0 after 8 usecs
[    1.172590] calling  pm_check_save_msr+0x0/0xd0 @ 1
[    1.172979] initcall pm_check_save_msr+0x0/0xd0 returned 0 after 8 usecs
[    1.173482] calling  mcheck_init_device+0x0/0x160 @ 1
[    1.174062] initcall mcheck_init_device+0x0/0x160 returned 0 after 187 usecs
[    1.174599] calling  dev_mcelog_init_device+0x0/0x100 @ 1
[    1.175047] initcall dev_mcelog_init_device+0x0/0x100 returned 0 after 37 usecs
[    1.175638] calling  kernel_do_mounts_initrd_sysctls_init+0x0/0x40 @ 1
[    1.176142] initcall kernel_do_mounts_initrd_sysctls_init+0x0/0x40 returned 0 after 3 usecs
[    1.176762] calling  tboot_late_init+0x0/0x330 @ 1
[    1.177143] initcall tboot_late_init+0x0/0x330 returned 0 after 0 usecs
[    1.177644] calling  intel_epb_init+0x0/0xa0 @ 1
[    1.178011] initcall intel_epb_init+0x0/0xa0 returned -19 after 0 usecs
[    1.178517] calling  mcheck_late_init+0x0/0x90 @ 1
[    1.178900] initcall mcheck_late_init+0x0/0x90 returned 0 after 6 usecs
[    1.179409] calling  severities_debugfs_init+0x0/0x40 @ 1
[    1.179824] initcall severities_debugfs_init+0x0/0x40 returned 0 after 1 usecs
[    1.180365] calling  microcode_init+0x0/0x1f0 @ 1
[    1.180746] initcall microcode_init+0x0/0x1f0 returned -22 after 0 usecs
[    1.181247] calling  resctrl_arch_late_init+0x0/0x5c0 @ 1
[    1.181662] initcall resctrl_arch_late_init+0x0/0x5c0 returned -19 after 0 usecs
[    1.182207] calling  cpu_init_debugfs+0x0/0xf0 @ 1
[    1.182595] initcall cpu_init_debugfs+0x0/0xf0 returned 0 after 6 usecs
[    1.183092] calling  sld_mitigate_sysctl_init+0x0/0x40 @ 1
[    1.183945] initcall sld_mitigate_sysctl_init+0x0/0x40 returned 0 after 2 usecs
[    1.184488] calling  hpet_insert_resource+0x0/0x40 @ 1
[    1.184880] initcall hpet_insert_resource+0x0/0x40 returned 1 after 0 usecs
[    1.185391] calling  start_sync_check_timer+0x0/0x70 @ 1
[    1.185797] initcall start_sync_check_timer+0x0/0x70 returned 0 after 0 usecs
[    1.186321] calling  update_mp_table+0x0/0x610 @ 1
[    1.186690] initcall update_mp_table+0x0/0x610 returned 0 after 0 usecs
[    1.187179] calling  lapic_insert_resource+0x0/0x60 @ 1
[    1.187586] initcall lapic_insert_resource+0x0/0x60 returned 0 after 0 usecs
[    1.188110] calling  print_ipi_mode+0x0/0x40 @ 1
[    1.188466] IPI shorthand broadcast: enabled
[    1.188805] initcall print_ipi_mode+0x0/0x40 returned 0 after 339 usecs
[    1.189303] calling  print_ICs+0x0/0x1e0 @ 1
[    1.189641] initcall print_ICs+0x0/0x1e0 returned 0 after 0 usecs
[    1.190099] calling  setup_efi_kvm_sev_migration+0x0/0x1c0 @ 1
[    1.190542] initcall setup_efi_kvm_sev_migration+0x0/0x1c0 returned 0 after 0 usecs
[    1.191100] calling  create_tlb_single_page_flush_ceiling+0x0/0x40 @ 1
[    1.191620] initcall create_tlb_single_page_flush_ceiling+0x0/0x40 returned 0 after 1 usecs
[    1.192245] calling  pat_memtype_list_init+0x0/0x50 @ 1
[    1.192655] initcall pat_memtype_list_init+0x0/0x50 returned 0 after 1 usecs
[    1.193184] calling  create_init_pkru_value+0x0/0x50 @ 1
[    1.193600] initcall create_init_pkru_value+0x0/0x50 returned 0 after 1 usecs
[    1.194131] calling  kernel_panic_sysctls_init+0x0/0x40 @ 1
[    1.194559] initcall kernel_panic_sysctls_init+0x0/0x40 returned 0 after 2 usecs
[    1.195107] calling  kernel_panic_sysfs_init+0x0/0x30 @ 1
[    1.195530] initcall kernel_panic_sysfs_init+0x0/0x30 returned 0 after 2 usecs
[    1.196063] calling  kernel_exit_sysctls_init+0x0/0x40 @ 1
[    1.196494] initcall kernel_exit_sysctls_init+0x0/0x40 returned 0 after 1 usecs
[    1.197032] calling  kernel_exit_sysfs_init+0x0/0x30 @ 1
[    1.197439] initcall kernel_exit_sysfs_init+0x0/0x30 returned 0 after 1 usecs
[    1.197968] calling  param_sysfs_builtin_init+0x0/0x200 @ 1
[    1.199436] initcall param_sysfs_builtin_init+0x0/0x200 returned 0 after 1046 usecs
[    1.200017] calling  reboot_ksysfs_init+0x0/0x90 @ 1
[    1.200413] initcall reboot_ksysfs_init+0x0/0x90 returned 0 after 6 usecs
[    1.200918] calling  sched_core_sysctl_init+0x0/0x40 @ 1
[    1.201328] initcall sched_core_sysctl_init+0x0/0x40 returned 0 after 2 usecs
[    1.201853] calling  sched_fair_sysctl_init+0x0/0x40 @ 1
[    1.202256] initcall sched_fair_sysctl_init+0x0/0x40 returned 0 after 1 usecs
[    1.202780] calling  sched_rt_sysctl_init+0x0/0x40 @ 1
[    1.203169] initcall sched_rt_sysctl_init+0x0/0x40 returned 0 after 1 usecs
[    1.203687] calling  sched_dl_sysctl_init+0x0/0x40 @ 1
[    1.204084] initcall sched_dl_sysctl_init+0x0/0x40 returned 0 after 1 usecs
[    1.204599] calling  sched_clock_init_late+0x0/0xb0 @ 1
[    1.205007] sched_clock: Marking stable (1128366657, 75317796)->(1316903746, -113219293)
[    1.205675] initcall sched_clock_init_late+0x0/0xb0 returned 0 after 668 usecs
[    1.206222] calling  sched_init_debug+0x0/0x330 @ 1
[    1.206634] initcall sched_init_debug+0x0/0x330 returned 0 after 26 usecs
[    1.207136] calling  cpu_latency_qos_init+0x0/0x60 @ 1
[    1.207595] initcall cpu_latency_qos_init+0x0/0x60 returned 0 after 48 usecs
[    1.208131] calling  pm_debugfs_init+0x0/0x40 @ 1
[    1.208497] initcall pm_debugfs_init+0x0/0x40 returned 0 after 1 usecs
[    1.208989] calling  printk_late_init+0x0/0x180 @ 1
[    1.209371] initcall printk_late_init+0x0/0x180 returned 0 after 6 usecs
[    1.209868] calling  init_srcu_module_notifier+0x0/0x50 @ 1
[    1.210293] initcall init_srcu_module_notifier+0x0/0x50 returned 0 after 1 usecs
[    1.210852] calling  swiotlb_create_default_debugfs+0x0/0xb0 @ 1
[    1.211307] initcall swiotlb_create_default_debugfs+0x0/0xb0 returned 0 after 3 usecs
[    1.211897] calling  tk_debug_sleep_time_init+0x0/0x40 @ 1
[    1.212326] initcall tk_debug_sleep_time_init+0x0/0x40 returned 0 after 1 usecs
[    1.212866] calling  bpf_ksym_iter_register+0x0/0x30 @ 1
[    1.213627] initcall bpf_ksym_iter_register+0x0/0x30 returned 0 after 0 usecs
[    1.214151] calling  kernel_acct_sysctls_init+0x0/0x40 @ 1
[    1.214568] initcall kernel_acct_sysctls_init+0x0/0x40 returned 0 after 1 usecs
[    1.215106] calling  kexec_core_sysctl_init+0x0/0x40 @ 1
[    1.215523] initcall kexec_core_sysctl_init+0x0/0x40 returned 0 after 1 usecs
[    1.216057] calling  bpf_rstat_kfunc_init+0x0/0x30 @ 1
[    1.216537] initcall bpf_rstat_kfunc_init+0x0/0x30 returned 0 after 0 usecs
[    1.217052] calling  debugfs_kprobe_init+0x0/0x90 @ 1
[    1.217442] initcall debugfs_kprobe_init+0x0/0x90 returned 0 after 3 usecs
[    1.217945] calling  kernel_delayacct_sysctls_init+0x0/0x40 @ 1
[    1.218390] initcall kernel_delayacct_sysctls_init+0x0/0x40 returned 0 after 0 usecs
[    1.218951] calling  taskstats_init+0x0/0x50 @ 1
[    1.219327] registered taskstats version 1
[    1.219824] initcall taskstats_init+0x0/0x50 returned 0 after 510 usecs
[    1.220481] calling  ftrace_sysctl_init+0x0/0x30 @ 1
[    1.220902] initcall ftrace_sysctl_init+0x0/0x30 returned 0 after 1 usecs
[    1.221408] calling  init_hwlat_tracer+0x0/0x130 @ 1
[    1.221871] initcall init_hwlat_tracer+0x0/0x130 returned 0 after 78 usecs
[    1.222388] calling  bpf_key_sig_kfuncs_init+0x0/0x20 @ 1
[    1.222801] initcall bpf_key_sig_kfuncs_init+0x0/0x20 returned 0 after 0 usecs
[    1.223341] calling  bpf_kprobe_multi_kfuncs_init+0x0/0x20 @ 1
[    1.223782] initcall bpf_kprobe_multi_kfuncs_init+0x0/0x20 returned 0 after 0 usecs
[    1.224352] calling  kdb_ftrace_register+0x0/0x20 @ 1
[    1.224745] initcall kdb_ftrace_register+0x0/0x20 returned 0 after 1 usecs
[    1.225257] calling  bpf_global_ma_init+0x0/0x30 @ 1
[    1.225666] initcall bpf_global_ma_init+0x0/0x30 returned 0 after 23 usecs
[    1.226184] calling  bpf_syscall_sysctl_init+0x0/0x40 @ 1
[    1.226601] initcall bpf_syscall_sysctl_init+0x0/0x40 returned 0 after 1 usecs
[    1.227134] calling  unbound_reg_init+0x0/0x30 @ 1
[    1.227517] initcall unbound_reg_init+0x0/0x30 returned 0 after 0 usecs
[    1.228009] calling  kfunc_init+0x0/0x100 @ 1
[    1.228357] initcall kfunc_init+0x0/0x100 returned 0 after 0 usecs
[    1.228819] calling  bpf_map_iter_init+0x0/0x50 @ 1
[    1.229298] initcall bpf_map_iter_init+0x0/0x50 returned 0 after 99 usecs
[    1.229801] calling  init_subsystem+0x0/0x30 @ 1
[    1.230160] initcall init_subsystem+0x0/0x30 returned 0 after 0 usecs
[    1.230634] calling  task_iter_init+0x0/0xe0 @ 1
[    1.231014] initcall task_iter_init+0x0/0xe0 returned 0 after 0 usecs
[    1.231630] calling  bpf_prog_iter_init+0x0/0x30 @ 1
[    1.232268] initcall bpf_prog_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.232318] ata1.00: ATA-7: QEMU HARDDISK, 2.5+, max UDMA/100
[    1.232936] calling  bpf_link_iter_init+0x0/0x30 @ 1
[    1.233481] ata1.00: 83886080 sectors, multi 16: LBA48 
[    1.233964] initcall bpf_link_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.234457] ata1.01: ATA-7: QEMU HARDDISK, 2.5+, max UDMA/100
[    1.235094] calling  init_trampolines+0x0/0x30 @ 1
[    1.235642] ata1.01: 104857600 sectors, multi 16: LBA48 
[    1.236116] initcall init_trampolines+0x0/0x30 returned 0 after 1 usecs
[    1.237422] calling  rqspinlock_register_kfuncs+0x0/0x30 @ 1
[    1.238101] initcall rqspinlock_register_kfuncs+0x0/0x30 returned 0 after 0 usecs
[    1.238446] scsi 0:0:0:0: Direct-Access     ATA      QEMU HARDDISK    2.5+ PQ: 0 ANSI: 5
[    1.238689] calling  kfunc_init+0x0/0x30 @ 1
[    1.239510] probe of 0:0:0:0 returned 19 after 6 usecs
[    1.239756] initcall kfunc_init+0x0/0x30 returned 0 after 0 usecs
[    1.240310] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.240704] calling  bpf_cgroup_iter_init+0x0/0x30 @ 1
[    1.241221] sd 0:0:0:0: [sda] 83886080 512-byte logical blocks: (42.9 GB/40.0 GiB)
[    1.241587] initcall bpf_cgroup_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.242267] sd 0:0:0:0: [sda] Write Protect is off
[    1.242770] calling  cpumask_kfunc_init+0x0/0xb0 @ 1
[    1.243562] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.243588] scsi 0:0:1:0: Direct-Access     ATA      QEMU HARDDISK    2.5+ PQ: 0 ANSI: 5
[    1.243966] initcall cpumask_kfunc_init+0x0/0xb0 returned 0 after 8 usecs
[    1.244522] probe of 0:0:1:0 returned 19 after 2 usecs
[    1.245030] calling  crypto_kfunc_init+0x0/0xb0 @ 1
[    1.245665] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.246032] initcall crypto_kfunc_init+0x0/0xb0 returned 0 after 0 usecs
[    1.246460] scsi 0:0:1:0: Attached scsi generic sg1 type 0
[    1.247121] calling  bpf_kmem_cache_iter_init+0x0/0x30 @ 1
[    1.247663] sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[    1.248051] initcall bpf_kmem_cache_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.248512] sd 0:0:1:0: [sdb] 104857600 512-byte logical blocks: (53.7 GB/50.0 GiB)
[    1.248949] calling  load_system_certificate_list+0x0/0x40 @ 1
[    1.249666] sd 0:0:1:0: [sdb] Write Protect is off
[    1.250119] Loading compiled-in X.509 certificates
[    1.250592] sd 0:0:1:0: [sdb] Mode Sense: 00 3a 00 00
[    1.251478] Loaded X.509 cert 'Build time autogenerated kernel key: 63dcfa1705afed8feebbcaee12f1a32f27ca64ce'
[    1.251941] sd 0:0:1:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.252653] initcall load_system_certificate_list+0x0/0x40 returned 0 after 2534 usecs
[    1.253461] sd 0:0:1:0: [sdb] Preferred minimum I/O size 512 bytes
[    1.254020] calling  vmstat_late_init+0x0/0x30 @ 1
[    1.255153] initcall vmstat_late_init+0x0/0x30 returned 0 after 1 usecs
[    1.255935] calling  fault_around_debugfs+0x0/0x40 @ 1
[    1.256573] initcall fault_around_debugfs+0x0/0x40 returned 0 after 6 usecs
[    1.257362] calling  slab_sysfs_init+0x0/0x110 @ 1
[    1.259176] initcall slab_sysfs_init+0x0/0x110 returned 0 after 1213 usecs
[    1.259712] calling  max_swapfiles_check+0x0/0x20 @ 1
[    1.260108] initcall max_swapfiles_check+0x0/0x20 returned 0 after 0 usecs
[    1.260629] calling  zswap_init+0x0/0x30 @ 1
[    1.260968] initcall zswap_init+0x0/0x30 returned 0 after 0 usecs
[    1.261433] calling  hugetlb_vmemmap_init+0x0/0x90 @ 1
[    1.261831] initcall hugetlb_vmemmap_init+0x0/0x90 returned 0 after 3 usecs
[    1.262347] calling  mempolicy_sysfs_init+0x0/0x2b0 @ 1
[    1.262750] initcall mempolicy_sysfs_init+0x0/0x2b0 returned 0 after 3 usecs
[    1.263273] calling  memory_tier_late_init+0x0/0xc0 @ 1
[    1.263717] Demotion targets for Node 0: null
[    1.264061] initcall memory_tier_late_init+0x0/0xc0 returned 0 after 376 usecs
[    1.264597] calling  split_huge_pages_debugfs+0x0/0x40 @ 1
[    1.265025] initcall split_huge_pages_debugfs+0x0/0x40 returned 0 after 1 usecs
[    1.265561] calling  check_early_ioremap_leak+0x0/0x60 @ 1
[    1.265980] initcall check_early_ioremap_leak+0x0/0x60 returned 0 after 0 usecs
[    1.266622] calling  set_hardened_usercopy+0x0/0x40 @ 1
[    1.267029] initcall set_hardened_usercopy+0x0/0x40 returned 1 after 0 usecs
[    1.267717] calling  mg_debugfs_init+0x0/0x40 @ 1
[    1.268240] initcall mg_debugfs_init+0x0/0x40 returned 0 after 1 usecs
[    1.268810] calling  fscrypt_init+0x0/0xf0 @ 1
[    1.269308] Key type .fscrypt registered
[    1.269622] Key type fscrypt-provisioning registered
[    1.269999] initcall fscrypt_init+0x0/0xf0 returned 0 after 841 usecs
[    1.270474] calling  pstore_init+0x0/0x40 @ 1
[    1.270818] initcall pstore_init+0x0/0x40 returned 0 after 5 usecs
[    1.271275] calling  init_root_keyring+0x0/0x20 @ 1
[    1.271663] initcall init_root_keyring+0x0/0x20 returned 0 after 6 usecs
[    1.272163] calling  init_trusted+0x0/0x1c0 @ 1
[    1.272518] initcall init_trusted+0x0/0x1c0 returned 0 after 0 usecs
[    1.272993] calling  init_encrypted+0x0/0x100 @ 1
[    1.277310] calling  cryptd_init+0x0/0xff0 [cryptd] @ 110
[    1.277959] cryptd: max_cpu_qlen set to 1000
[    1.278484] initcall cryptd_init+0x0/0xff0 [cryptd] returned 0 after 566 usecs
[    1.283934]  sda: sda1 sda2
[    1.284339] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.284789] probe of 0:0:0:0 returned 0 after 44525 usecs
[    1.292399] sd 0:0:1:0: [sdb] Attached SCSI disk
[    1.292852] probe of 0:0:1:0 returned 0 after 45217 usecs
[    1.295209] calling  aesni_init+0x0/0xff0 [aesni_intel] @ 110
[    1.296047] initcall aesni_init+0x0/0xff0 [aesni_intel] returned 0 after 157 usecs
[    1.303044] Key type encrypted registered
[    1.303965] initcall init_encrypted+0x0/0x100 returned 0 after 8074 usecs
[    1.304780] calling  init_profile_hash+0x0/0xa0 @ 1
[    1.305370] initcall init_profile_hash+0x0/0xa0 returned 0 after 0 usecs
[    1.306132] calling  integrity_fs_init+0x0/0x70 @ 1
[    1.306730] initcall integrity_fs_init+0x0/0x70 returned 0 after 8 usecs
[    1.307514] calling  init_ima+0x0/0xf0 @ 1
[    1.308052] ima: No TPM chip found, activating TPM-bypass!
[    1.308711] ima: Allocated hash algorithm: sha1
[    1.309260] ima: No architecture policies found
[    1.309813] initcall init_ima+0x0/0xf0 returned 0 after 1763 usecs
[    1.310530] calling  init_evm+0x0/0x140 @ 1
[    1.311045] evm: Initialising EVM extended attributes:
[    1.311678] evm: security.selinux
[    1.312100] evm: security.SMACK64 (disabled)
[    1.312613] evm: security.SMACK64EXEC (disabled)
[    1.313161] evm: security.SMACK64TRANSMUTE (disabled)
[    1.313770] evm: security.SMACK64MMAP (disabled)
[    1.314333] evm: security.apparmor
[    1.314770] evm: security.ima
[    1.315160] evm: security.capability
[    1.315616] evm: HMAC attrs: 0x1
[    1.316039] initcall init_evm+0x0/0x140 returned 0 after 4993 usecs
[    1.316765] calling  crypto_algapi_init+0x0/0x20 @ 1
[    1.317374] initcall crypto_algapi_init+0x0/0x20 returned 0 after 4 usecs
[    1.318143] calling  blk_timeout_init+0x0/0x20 @ 1
[    1.318710] initcall blk_timeout_init+0x0/0x20 returned 0 after 0 usecs
[    1.319489] calling  sed_opal_init+0x0/0xa0 @ 1
[    1.320037] initcall sed_opal_init+0x0/0xa0 returned 0 after 7 usecs
[    1.320786] calling  init_error_injection+0x0/0x80 @ 1
[    1.321528] initcall init_error_injection+0x0/0x80 returned 0 after 140 usecs
[    1.322337] calling  depot_debugfs_init+0x0/0x50 @ 1
[    1.322927] initcall depot_debugfs_init+0x0/0x50 returned 0 after 2 usecs
[    1.323764] calling  pci_resource_alignment_sysfs_init+0x0/0x30 @ 1
[    1.324520] initcall pci_resource_alignment_sysfs_init+0x0/0x30 returned 0 after 6 usecs
[    1.325454] calling  pci_sysfs_init+0x0/0xb0 @ 1
[    1.326055] initcall pci_sysfs_init+0x0/0xb0 returned 0 after 34 usecs
[    1.326797] calling  bert_init+0x0/0x2c0 @ 1
[    1.327338] initcall bert_init+0x0/0x2c0 returned 0 after 1 usecs
[    1.328116] calling  clk_debug_init+0x0/0x130 @ 1
[    1.328701] initcall clk_debug_init+0x0/0x130 returned 0 after 7 usecs
[    1.329449] calling  genpd_debug_init+0x0/0x80 @ 1
[    1.330029] initcall genpd_debug_init+0x0/0x80 returned 0 after 6 usecs
[    1.330782] calling  setup_vcpu_hotplug_event+0x0/0x40 @ 1
[    1.331429] initcall setup_vcpu_hotplug_event+0x0/0x40 returned -19 after 0 usecs
[    1.332302] calling  boot_wait_for_devices+0x0/0x40 @ 1
[    1.332916] initcall boot_wait_for_devices+0x0/0x40 returned -19 after 0 usecs
[    1.334209] calling  dmar_free_unused_resources+0x0/0xd0 @ 1
[    1.334888] initcall dmar_free_unused_resources+0x0/0xd0 returned 0 after 0 usecs
[    1.335756] calling  sync_state_resume_initcall+0x0/0x20 @ 1
[    1.336430] initcall sync_state_resume_initcall+0x0/0x20 returned 0 after 0 usecs
[    1.337293] calling  deferred_probe_initcall+0x0/0xa0 @ 1
[    1.337942] initcall deferred_probe_initcall+0x0/0xa0 returned 0 after 17 usecs
[    1.338767] calling  late_resume_init+0x0/0x1b0 @ 1
[    1.339373] PM:   Magic number: 13:530:216
[    1.339981] initcall late_resume_init+0x0/0x1b0 returned 0 after 608 usecs
[    1.340781] calling  sync_debugfs_init+0x0/0x70 @ 1
[    1.341362] initcall sync_debugfs_init+0x0/0x70 returned 0 after 5 usecs
[    1.342125] calling  charger_manager_init+0x0/0xb0 @ 1
[    1.342855] initcall charger_manager_init+0x0/0xb0 returned 0 after 105 usecs
[    1.343726] calling  dm_init_init+0x0/0x780 @ 1
[    1.344273] initcall dm_init_init+0x0/0x780 returned 0 after 0 usecs
[    1.345002] calling  acpi_cpufreq_init+0x0/0x30 @ 1
[    1.345616] initcall acpi_cpufreq_init+0x0/0x30 returned -19 after 13 usecs
[    1.346401] calling  powernowk8_init+0x0/0x1e0 @ 1
[    1.346971] initcall powernowk8_init+0x0/0x1e0 returned -19 after 0 usecs
[    1.347770] calling  pcc_cpufreq_init+0x0/0x30 @ 1
[    1.348357] initcall pcc_cpufreq_init+0x0/0x30 returned -19 after 7 usecs
[    1.349124] calling  centrino_init+0x0/0x40 @ 1
[    1.349685] initcall centrino_init+0x0/0x40 returned -19 after 0 usecs
[    1.350430] calling  edd_init+0x0/0x320 @ 1
[    1.350943] initcall edd_init+0x0/0x320 returned -19 after 0 usecs
[    1.351656] calling  firmware_memmap_init+0x0/0x50 @ 1
[    1.352296] initcall firmware_memmap_init+0x0/0x50 returned 0 after 16 usecs
[    1.353139] calling  register_update_efi_random_seed+0x0/0x30 @ 1
[    1.353837] initcall register_update_efi_random_seed+0x0/0x30 returned 0 after 0 usecs
[    1.354743] calling  efi_shutdown_init+0x0/0x60 @ 1
[    1.355324] initcall efi_shutdown_init+0x0/0x60 returned -19 after 0 usecs
[    1.356186] calling  efi_rci2_sysfs_init+0x0/0x2c0 @ 1
[    1.356806] initcall efi_rci2_sysfs_init+0x0/0x2c0 returned 0 after 0 usecs
[    1.357626] calling  efi_earlycon_unmap_fb+0x0/0x50 @ 1
[    1.358264] initcall efi_earlycon_unmap_fb+0x0/0x50 returned 0 after 0 usecs
[    1.359061] calling  itmt_legacy_init+0x0/0x60 @ 1
[    1.359639] initcall itmt_legacy_init+0x0/0x60 returned -19 after 0 usecs
[    1.360428] calling  cec_init+0x0/0x1e0 @ 1
[    1.360953] RAS: Correctable Errors collector initialized.
[    1.361614] initcall cec_init+0x0/0x1e0 returned 0 after 669 usecs
[    1.362329] calling  bpf_kfunc_init+0x0/0x170 @ 1
[    1.362906] initcall bpf_kfunc_init+0x0/0x170 returned 0 after 1 usecs
[    1.364041] calling  init_subsystem+0x0/0x30 @ 1
[    1.364602] initcall init_subsystem+0x0/0x30 returned 0 after 0 usecs
[    1.365336] calling  xdp_metadata_init+0x0/0x30 @ 1
[    1.365916] initcall xdp_metadata_init+0x0/0x30 returned 0 after 0 usecs
[    1.366680] calling  bpf_sockmap_iter_init+0x0/0x30 @ 1
[    1.367313] initcall bpf_sockmap_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.368208] calling  bpf_sk_storage_map_iter_init+0x0/0x30 @ 1
[    1.368934] initcall bpf_sk_storage_map_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.369829] calling  bpf_prog_test_run_init+0x0/0xb0 @ 1
[    1.370467] initcall bpf_prog_test_run_init+0x0/0xb0 returned 0 after 0 usecs
[    1.371298] calling  bpf_dummy_struct_ops_init+0x0/0x20 @ 1
[    1.371950] initcall bpf_dummy_struct_ops_init+0x0/0x20 returned 0 after 0 usecs
[    1.372805] calling  tcp_congestion_default+0x0/0x30 @ 1
[    1.373441] initcall tcp_congestion_default+0x0/0x30 returned 0 after 1 usecs
[    1.374270] calling  inet_blackhole_dev_init+0x0/0x40 @ 1
[    1.374928] initcall inet_blackhole_dev_init+0x0/0x40 returned 0 after 2 usecs
[    1.375771] calling  tcp_bpf_v4_build_proto+0x0/0xa0 @ 1
[    1.376411] initcall tcp_bpf_v4_build_proto+0x0/0xa0 returned 0 after 0 usecs
[    1.377219] calling  udp_bpf_v4_build_proto+0x0/0x50 @ 1
[    1.377859] initcall udp_bpf_v4_build_proto+0x0/0x50 returned 0 after 0 usecs
[    1.378691] calling  bpf_tcp_ca_kfunc_init+0x0/0x40 @ 1
[    1.379325] initcall bpf_tcp_ca_kfunc_init+0x0/0x40 returned 0 after 0 usecs
[    1.380194] calling  pci_mmcfg_late_insert_resources+0x0/0xd0 @ 1
[    1.380922] initcall pci_mmcfg_late_insert_resources+0x0/0xd0 returned 0 after 0 usecs
[    1.381835] calling  software_resume_initcall+0x0/0x190 @ 1
[    1.382531] initcall software_resume_initcall+0x0/0x190 returned -2 after 0 usecs
[    1.383382] calling  lockup_detector_check+0x0/0x80 @ 1
[    1.384029] initcall lockup_detector_check+0x0/0x80 returned 0 after 11 usecs
[    1.384852] calling  ftrace_check_sync+0x0/0x30 @ 1
[    1.385452] initcall ftrace_check_sync+0x0/0x30 returned 0 after 5 usecs
[    1.386237] calling  latency_fsnotify_init+0x0/0x50 @ 1
[    1.386864] initcall latency_fsnotify_init+0x0/0x50 returned 0 after 8 usecs
[    1.387664] calling  trace_eval_sync+0x0/0x30 @ 1
[    1.388239] initcall trace_eval_sync+0x0/0x30 returned 0 after 5 usecs
[    1.389005] calling  late_trace_init+0x0/0xe0 @ 1
[    1.389582] initcall late_trace_init+0x0/0xe0 returned 0 after 0 usecs
[    1.390352] calling  acpi_gpio_handle_deferred_request_irqs+0x0/0xa0 @ 1
[    1.391118] initcall acpi_gpio_handle_deferred_request_irqs+0x0/0xa0 returned 0 after 0 usecs
[    1.392098] calling  clk_disable_unused+0x0/0x190 @ 1
[    1.392715] clk: Disabling unused clocks
[    1.393548] initcall clk_disable_unused+0x0/0x190 returned 0 after 832 usecs
[    1.394350] calling  genpd_power_off_unused+0x0/0xa0 @ 1
[    1.395009] PM: genpd: Disabling unused power domains
[    1.395649] initcall genpd_power_off_unused+0x0/0xa0 returned 0 after 640 usecs
[    1.396520] calling  balloon_wait_finish+0x0/0x110 @ 1
[    1.397145] initcall balloon_wait_finish+0x0/0x110 returned -19 after 0 usecs
[    1.397954] calling  regulator_init_complete+0x0/0x40 @ 1
[    1.398586] initcall regulator_init_complete+0x0/0x40 returned 0 after 0 usecs
[    1.405181] Freeing unused decrypted memory: 2028K
[    1.406067] Freeing unused kernel image (initmem) memory: 4692K
[    1.406589] Write protecting the kernel read-only data: 26624k
[    1.407300] Freeing unused kernel image (text/rodata gap) memory: 548K
[    1.407968] Freeing unused kernel image (rodata/data gap) memory: 440K
[    1.415518] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    1.416006] Run /init as init process
[    1.416344]   with arguments:
[    1.416633]     /init
[    1.416868]     splash
[    1.417118]   with environment:
[    1.417426]     HOME=/
[    1.417666]     TERM=linux
[    1.417931]     BOOT_IMAGE=/vmlinuz-6.15.0-rc5+
[    1.446966] calling  mac_hid_init+0x0/0xff0 [mac_hid] @ 153
[    1.447381] initcall mac_hid_init+0x0/0xff0 [mac_hid] returned 0 after 55 usecs
[    1.448478] calling  floppy_module_init+0x0/0x1e40 [floppy] @ 157
[    1.450882] calling  pacpi_pci_driver_init+0x0/0xff0 [pata_acpi] @ 147
[    1.451262] initcall pacpi_pci_driver_init+0x0/0xff0 [pata_acpi] returned 0 after 12 usecs
[    1.454676] calling  serio_raw_drv_init+0x0/0xff0 [serio_raw] @ 151
[    1.455266] initcall serio_raw_drv_init+0x0/0xff0 [serio_raw] returned 0 after 14 usecs
[    1.456941] calling  input_leds_init+0x0/0xff0 [input_leds] @ 163
[    1.462127] calling  psmouse_init+0x0/0xa0 [psmouse] @ 149
[    1.462813] initcall psmouse_init+0x0/0xa0 [psmouse] returned 0 after 187 usecs
[    1.463886] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4
[    1.467696] FDC 0 is a S82078B
[    1.468164] initcall floppy_module_init+0x0/0x1e40 [floppy] returned 0 after 5539 usecs
[    1.474564] calling  drm_core_init+0x0/0xb0 [drm] @ 150
[    1.474923] ACPI: bus type drm_connector registered
[    1.475284] initcall drm_core_init+0x0/0xb0 [drm] returned 0 after 374 usecs
[    1.486130] calling  qxl_pci_driver_init+0x0/0xff0 [qxl] @ 150
[    1.498098] Console: switching to colour dummy device 80x25
[    1.498426] qxl 0000:00:02.0: vgaarb: deactivate vga console
[    1.498753] [drm] Device Version 0.0
[    1.498972] [drm] Compression level 0 log level 0
[    1.499236] [drm] 12286 io pages at offset 0x1000000
[    1.499641] [drm] 16777216 byte draw area at offset 0x0
[    1.500127] [drm] RAM header offset: 0x3ffe000
[    1.500557] [drm] qxl: 16M of VRAM memory size
[    1.500860] [drm] qxl: 63M of IO pages memory ready (VRAM domain)
[    1.501186] [drm] qxl: 64M of Surface memory size
[    1.502414] [drm] slot 0 (main): base 0xf4000000, size 0x03ffe000
[    1.502776] [drm] slot 1 (surfaces): base 0xf8000000, size 0x04000000
[    1.503361] [drm] Initialized qxl 0.1.0 for 0000:00:02.0 on minor 0
[    1.504337] fbcon: qxldrmfb (fb0) is primary device
[    1.506214] Console: switching to colour frame buffer device 128x48
[    1.512358] qxl 0000:00:02.0: [drm] fb0: qxldrmfb frame buffer device
[    1.527395] initcall input_leds_init+0x0/0xff0 [input_leds] returned 0 after 40932 usecs
[    1.528287] probe of 0000:00:02.0 returned 0 after 41814 usecs
[    1.529028] initcall qxl_pci_driver_init+0x0/0xff0 [qxl] returned 0 after 42565 usecs
[    1.529999] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3
[    1.532023] probe of serio1 returned 0 after 68556 usecs
[    1.570803] calling  linear_init+0x0/0xff0 [linear] @ 193
[    1.571284] initcall linear_init+0x0/0xff0 [linear] returned 0 after 2 usecs
[    1.823342] EXT4-fs (sda2): mounted filesystem 3516f70c-4dd9-4b0f-bac4-c41778d09bbb ro with ordered data mode. Quota mode: none.
[    1.869570] EXT4-fs (sda2): re-mounted 3516f70c-4dd9-4b0f-bac4-c41778d09bbb r/w.
[    1.885651] EXT4-fs (sda2): re-mounted 3516f70c-4dd9-4b0f-bac4-c41778d09bbb.
[    2.011107] systemd[1]: RTC configured in localtime, applying delta of 480 minutes to system time.
[    2.036519] calling  init_autofs_fs+0x0/0x40 [autofs4] @ 1
[    2.036880] initcall init_autofs_fs+0x0/0x40 [autofs4] returned 0 after 39 usecs
[    2.037337] systemd[1]: Inserted module 'autofs4'
[    2.043601] calling  xt_init+0x0/0xff0 [x_tables] @ 1
[    2.044215] initcall xt_init+0x0/0xff0 [x_tables] returned 0 after 4 usecs
[    2.047191] calling  ip_tables_init+0x0/0xff0 [ip_tables] @ 1
[    2.047685] initcall ip_tables_init+0x0/0xff0 [ip_tables] returned 0 after 5 usecs
[    2.055688] systemd[1]: systemd 245.4-4kylin3.11k30 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)
[    2.056828] systemd[1]: Detected virtualization kvm.
[    2.057110] systemd[1]: Detected architecture x86-64.
[    2.057503] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[    2.076190] systemd[1]: Set hostname to <standardpc>.
[    2.206140] systemd[1]: Configuration file /lib/systemd/system/vdi_usbmagicd.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    2.207350] systemd[1]: Configuration file /lib/systemd/system/vdi_usbipd.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    2.208449] systemd[1]: Configuration file /lib/systemd/system/vdi_super_agent.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    2.217561] systemd[1]: Configuration file /etc/systemd/system/runsunloginclient.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    2.260878] systemd[1]: Created slice system-modprobe.slice.
[    2.261401] systemd[1]: Created slice system-serial\x2dgetty.slice.
[    2.262103] systemd[1]: Created slice User and Session Slice.
[    2.262627] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    2.263579] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    2.264304] systemd[1]: Reached target User and Group Name Lookups.
[    2.264672] systemd[1]: Reached target Remote File Systems.
[    2.265014] systemd[1]: Reached target Slices.
[    2.265330] systemd[1]: Reached target Swap.
[    2.265698] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    2.266136] systemd[1]: Listening on LVM2 poll daemon socket.
[    2.266502] systemd[1]: Listening on Syslog Socket.
[    2.267544] systemd[1]: Listening on Process Core Dump Socket.
[    2.267919] systemd[1]: Listening on fsck to fsckd communication Socket.
[    2.268318] systemd[1]: Listening on initctl Compatibility Named Pipe.
[    2.270068] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
[    2.270855] systemd[1]: Listening on Journal Socket (/dev/log).
[    2.271480] systemd[1]: Listening on Journal Socket.
[    2.271994] systemd[1]: Listening on udev Control Socket.
[    2.272520] systemd[1]: Listening on udev Kernel Socket.
[    2.303581] systemd[1]: Mounting Huge Pages File System...
[    2.304828] systemd[1]: Mounting POSIX Message Queue File System...
[    2.306003] systemd[1]: Mounting Kernel Debug File System...
[    2.306962] systemd[1]: Mounting Kernel Trace File System...
[    2.308237] systemd[1]: Starting Journal Service...
[    2.309161] systemd[1]: Starting Availability of block devices...
[    2.310429] systemd[1]: Starting Set the console keyboard layout...
[    2.311701] systemd[1]: Starting Create list of static device nodes for the current kernel...
[    2.313024] systemd[1]: Starting update duration after shutdown or reboot...
[    2.314244] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[    2.315192] systemd[1]: Condition check resulted in Load Kernel Module drm being skipped.
[    2.316749] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[    2.317570] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[    2.320895] systemd[1]: Starting Load Kernel Modules...
[    2.322460] systemd[1]: Starting Remount Root and Kernel File Systems...
[    2.323490] systemd[1]: Starting udev Coldplug all Devices...
[    2.327459] systemd[1]: Starting Uncomplicated firewall...
[    2.330166] systemd[1]: Mounted Huge Pages File System.
[    2.330829] systemd[1]: Mounted POSIX Message Queue File System.
[    2.331463] systemd[1]: Mounted Kernel Debug File System.
[    2.332019] systemd[1]: Mounted Kernel Trace File System.
[    2.333677] systemd[1]: Finished Availability of block devices.
[    2.335811] systemd[1]: Finished Create list of static device nodes for the current kernel.
[    2.337058] systemd[1]: Finished update duration after shutdown or reboot.
[    2.338205] systemd[1]: Finished Uncomplicated firewall.
[    2.341096] calling  parport_default_proc_register+0x0/0xff0 [parport] @ 350
[    2.341803] initcall parport_default_proc_register+0x0/0xff0 [parport] returned 0 after 150 usecs
[    2.345813] calling  lp_init_module+0x0/0xff0 [lp] @ 350
[    2.348238] lp: driver loaded but no devices found
[    2.348679] initcall lp_init_module+0x0/0xff0 [lp] returned 0 after 2391 usecs
[    2.350849] calling  ppdev_init+0x0/0xff0 [ppdev] @ 350
[    2.351454] EXT4-fs (sda2): re-mounted 3516f70c-4dd9-4b0f-bac4-c41778d09bbb.
[    2.352613] systemd[1]: Started Journal Service.
[    2.353195] ppdev: user-space parallel port driver
[    2.353543] initcall ppdev_init+0x0/0xff0 [ppdev] returned 0 after 2232 usecs
[    2.356239] calling  parport_pc_init+0x0/0xef0 [parport_pc] @ 350
[    2.356757] probe of parport_pc.956 returned 0 after 8 usecs
[    2.357168] probe of parport0 returned 19 after 3 usecs
[    2.357643] probe of parport0 returned 19 after 6 usecs
[    2.358208] probe of parport_pc.888 returned 0 after 5 usecs
[    2.358654] probe of parport0 returned 19 after 1 usecs
[    2.359697] probe of parport0 returned 19 after 608 usecs
[    2.362084] probe of parport_pc.632 returned 0 after 8 usecs
[    2.363546] probe of parport0 returned 19 after 7 usecs
[    2.365626] probe of parport0 returned 19 after 1565 usecs
[    2.366354] initcall parport_pc_init+0x0/0xef0 [parport_pc] returned 0 after 9689 usecs
[    2.381359] calling  vmw_pci_driver_init+0x0/0xff0 [vmwgfx] @ 350
[    2.381921] initcall vmw_pci_driver_init+0x0/0xff0 [vmwgfx] returned 0 after 23 usecs
[    2.391289] calling  usbip_core_init+0x0/0xff0 [usbip_core] @ 350
[    2.391961] initcall usbip_core_init+0x0/0xff0 [usbip_core] returned 0 after 90 usecs
[    2.395030] calling  vhci_hcd_init+0x0/0xff0 [vhci_hcd] @ 350
[    2.395661] probe of vhci_hcd.0 returned 0 after 8 usecs
[    2.396229] faux_driver vhci_hcd.0: USB/IP Virtual Host Controller
[    2.396846] faux_driver vhci_hcd.0: new USB bus registered, assigned bus number 3
[    2.397548] vhci_hcd: created sysfs vhci_hcd.0
[    2.398048] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.15
[    2.398820] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.399510] usb usb3: Product: USB/IP Virtual Host Controller
[    2.400077] usb usb3: Manufacturer: Linux 6.15.0-rc5+ vhci_hcd
[    2.400692] usb usb3: SerialNumber: vhci_hcd.0
[    2.401253] hub 3-0:1.0: USB hub found
[    2.401647] hub 3-0:1.0: 8 ports detected
[    2.402153] probe of 3-0:1.0 returned 0 after 902 usecs
[    2.402556] probe of usb3 returned 0 after 1326 usecs
[    2.402881] faux_driver vhci_hcd.0: USB/IP Virtual Host Controller
[    2.403265] faux_driver vhci_hcd.0: new USB bus registered, assigned bus number 4
[    2.403822] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.404549] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.15
[    2.405091] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.405548] usb usb4: Product: USB/IP Virtual Host Controller
[    2.405907] usb usb4: Manufacturer: Linux 6.15.0-rc5+ vhci_hcd
[    2.406344] usb usb4: SerialNumber: vhci_hcd.0
[    2.406854] hub 4-0:1.0: USB hub found
[    2.407190] hub 4-0:1.0: 8 ports detected
[    2.407799] probe of 4-0:1.0 returned 0 after 950 usecs
[    2.408359] probe of usb4 returned 0 after 1531 usecs
[    2.408951] initcall vhci_hcd_init+0x0/0xff0 [vhci_hcd] returned 0 after 13319 usecs
[    2.440962] calling  fq_codel_module_init+0x0/0xff0 [sch_fq_codel] @ 378
[    2.441499] initcall fq_codel_module_init+0x0/0xff0 [sch_fq_codel] returned 0 after 1 usecs
[    2.550315] calling  failover_init+0x0/0xff0 [failover] @ 379
[    2.550895] initcall failover_init+0x0/0xff0 [failover] returned 0 after 4 usecs
[    2.555810] calling  init_soundcore+0x0/0xff0 [soundcore] @ 381
[    2.556275] initcall init_soundcore+0x0/0xff0 [soundcore] returned 0 after 7 usecs
[    2.563940] calling  virtio_input_driver_init+0x0/0xff0 [virtio_input] @ 392
[    2.563957] calling  net_failover_init+0x0/0xff0 [net_failover] @ 379
[    2.565187] initcall net_failover_init+0x0/0xff0 [net_failover] returned 0 after 0 usecs
[    2.566204] calling  smbalert_driver_init+0x0/0xff0 [i2c_smbus] @ 398
[    2.566496] input: QEMU Virtio Tablet as /devices/pci0000:00/0000:00:06.0/virtio1/input/input5
[    2.569969] calling  fw_cfg_sysfs_init+0x0/0xff0 [qemu_fw_cfg] @ 394
[    2.569971] calling  virtio_net_driver_init+0x0/0xff0 [virtio_net] @ 379
[    2.572315] probe of virtio1 returned 0 after 7700 usecs
[    2.573254] initcall smbalert_driver_init+0x0/0xff0 [i2c_smbus] returned 0 after 1634 usecs
[    2.576723] initcall virtio_input_driver_init+0x0/0xff0 [virtio_input] returned 0 after 5103 usecs
[    2.578401] calling  piix4_driver_init+0x0/0xff0 [i2c_piix4] @ 398
[    2.578416] probe of QEMU0002:00 returned 0 after 1533 usecs
[    2.578431] initcall fw_cfg_sysfs_init+0x0/0xff0 [qemu_fw_cfg] returned 0 after 27 usecs
[    2.578437] piix4_smbus 0000:00:01.3: SMBus Host Controller at 0x700, revision 0
[    2.578439] probe of virtio0 returned 0 after 8457 usecs
[    2.578457] initcall virtio_net_driver_init+0x0/0xff0 [virtio_net] returned 0 after 52 usecs
[    2.578533] i2c i2c-0: Memory type 0x07 not supported yet, not instantiating SPD
[    2.579644] probe of 0000:00:01.3 returned 0 after 1233 usecs
[    2.579659] initcall piix4_driver_init+0x0/0xff0 [i2c_piix4] returned 0 after 1254 usecs
[    2.598795] calling  alsa_sound_init+0x0/0xa0 [snd] @ 408
[    2.599158] initcall alsa_sound_init+0x0/0xa0 [snd] returned 0 after 7 usecs
[    2.610147] calling  joydev_init+0x0/0xff0 [joydev] @ 396
[    2.617518] calling  alsa_timer_init+0x0/0xff0 [snd_timer] @ 417
[    2.632904] initcall joydev_init+0x0/0xff0 [joydev] returned 0 after 14787 usecs
[    2.636586] initcall alsa_timer_init+0x0/0xff0 [snd_timer] returned 0 after 18468 usecs
[    2.664940] calling  alsa_seq_device_init+0x0/0xff0 [snd_seq_device] @ 417
[    2.665668] initcall alsa_seq_device_init+0x0/0xff0 [snd_seq_device] returned 0 after 124 usecs
[    2.676580] virtio_net virtio0 ens3: renamed from eth0
[    2.682833] calling  alsa_seq_init+0x0/0x60 [snd_seq] @ 465
[    2.683497] initcall alsa_seq_init+0x0/0x60 [snd_seq] returned 0 after 93 usecs
[    2.697616] calling  alsa_rawmidi_init+0x0/0xff0 [snd_rawmidi] @ 520
[    2.698338] initcall alsa_rawmidi_init+0x0/0xff0 [snd_rawmidi] returned 0 after 1 usecs
[    2.701109] calling  cstate_pmu_init+0x0/0xff0 [intel_cstate] @ 390
[    2.701717] initcall cstate_pmu_init+0x0/0xff0 [intel_cstate] returned -19 after 0 usecs
[    2.705326] calling  seq_midisynth_driver_init+0x0/0xff0 [snd_seq_midi] @ 548
[    2.705975] initcall seq_midisynth_driver_init+0x0/0xff0 [snd_seq_midi] returned 0 after 38 usecs
[    2.715434] EXT4-fs (sda1): warning: mounting fs with errors, running e2fsck is recommended
[    2.718693] calling  alsa_pcm_init+0x0/0xff0 [snd_pcm] @ 561
[    2.719152] EXT4-fs (sda1): recovery complete
[    2.719496] initcall alsa_pcm_init+0x0/0xff0 [snd_pcm] returned 0 after 436 usecs
[    2.722148] EXT4-fs (sda1): mounted filesystem cfaaa870-4d52-434c-8626-a398f6c7edd3 r/w with ordered data mode. Quota mode: none.
[    2.723943] calling  ac97_bus_init+0x0/0xff0 [ac97_bus] @ 381
[    2.724385] initcall ac97_bus_init+0x0/0xff0 [ac97_bus] returned 0 after 17 usecs
[    2.732089] EXT4-fs (sdb): recovery complete
[    2.733445] calling  intel8x0_driver_init+0x0/0xff0 [snd_intel8x0] @ 381
[    2.739366] EXT4-fs (sdb): mounted filesystem 1b1b0571-175b-4b83-9612-38293c03950b r/w with ordered data mode. Quota mode: none.
[    2.746238] ACPI: \_SB_.LNKA: Enabled at IRQ 11
[    2.746546] snd_intel8x0 0000:00:05.0: enable KVM optimization
[    2.763296] calling  rapl_pmu_init+0x0/0xdb0 [rapl] @ 384
[    2.764253] RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer
[    2.765665] initcall rapl_pmu_init+0x0/0xdb0 [rapl] returned 0 after 1491 usecs
[    2.768192] calling  sha1_ssse3_mod_init+0x0/0xff0 [sha1_ssse3] @ 392
[    2.768757] initcall sha1_ssse3_mod_init+0x0/0xff0 [sha1_ssse3] returned 0 after 12 usecs
[    2.771451] calling  sha256_ssse3_mod_init+0x0/0xff0 [sha256_ssse3] @ 392
[    2.772275] initcall sha256_ssse3_mod_init+0x0/0xff0 [sha256_ssse3] returned 0 after 32 usecs
[    2.777516] calling  sha512_ssse3_mod_init+0x0/0xff0 [sha512_ssse3] @ 383
[    2.777984] initcall sha512_ssse3_mod_init+0x0/0xff0 [sha512_ssse3] returned 0 after 12 usecs
[    2.781607] calling  ghash_pclmulqdqni_mod_init+0x0/0xff0 [ghash_clmulni_intel] @ 390
[    2.782181] initcall ghash_pclmulqdqni_mod_init+0x0/0xff0 [ghash_clmulni_intel] returned 0 after 87 usecs
[    2.820235] calling  kvm_x86_init+0x0/0x50 [kvm] @ 392
[    2.820673] initcall kvm_x86_init+0x0/0x50 [kvm] returned 0 after 16 usecs
[    2.836569] calling  vmx_init+0x0/0x1c0 [kvm_intel] @ 390
[    2.853237] initcall vmx_init+0x0/0x1c0 [kvm_intel] returned 0 after 15856 usecs
[    2.857622] calling  rapl_init+0x0/0xff0 [intel_rapl_common] @ 384
[    2.858255] initcall rapl_init+0x0/0xff0 [intel_rapl_common] returned 0 after 50 usecs
[    2.861350] calling  intel_rapl_msr_driver_init+0x0/0xff0 [intel_rapl_msr] @ 398
[    2.862037] intel_rapl_msr: PL4 support detected.
[    2.867355] probe of intel_rapl_msr.0 returned 19 after 5322 usecs
[    2.867917] initcall intel_rapl_msr_driver_init+0x0/0xff0 [intel_rapl_msr] returned 0 after 5897 usecs
[    3.014898] probe of 0000:00:05.0 returned 0 after 280982 usecs
[    3.015633] initcall intel8x0_driver_init+0x0/0xff0 [snd_intel8x0] returned 0 after 153613 usecs
[    3.614501] calling  pppox_init+0x0/0xff0 [pppox] @ 933
[    3.614999] NET: Registered PF_PPPOX protocol family
[    3.615562] initcall pppox_init+0x0/0xff0 [pppox] returned 0 after 562 usecs
[    3.651641] calling  udp_tunnel_nic_init_module+0x0/0xff0 [udp_tunnel] @ 947
[    3.652214] initcall udp_tunnel_nic_init_module+0x0/0xff0 [udp_tunnel] returned 0 after 12 usecs
[    3.664730] calling  l2tp_init+0x0/0xff0 [l2tp_core] @ 947
[    3.665142] l2tp_core: L2TP core driver, V2.0
[    3.665460] initcall l2tp_init+0x0/0xff0 [l2tp_core] returned 0 after 327 usecs
[    3.700291] calling  l2tp_nl_init+0x0/0xff0 [l2tp_netlink] @ 947
[    3.700844] l2tp_netlink: L2TP netlink interface
[    3.701273] initcall l2tp_nl_init+0x0/0xff0 [l2tp_netlink] returned 0 after 428 usecs
[    3.713634] calling  pppol2tp_init+0x0/0xff0 [l2tp_ppp] @ 947
[    3.714051] l2tp_ppp: PPPoL2TP kernel driver, V2.0
[    3.714383] initcall pppol2tp_init+0x0/0xff0 [l2tp_ppp] returned 0 after 336 usecs
[    4.013865] calling  xfrm_user_init+0x0/0xff0 [xfrm_user] @ 1136
[    4.014749] Initializing XFRM netlink socket
[    4.015222] initcall xfrm_user_init+0x0/0xff0 [xfrm_user] returned 0 after 473 usecs
[    8.202060] traps: ukui-settings-d[1528] general protection fault ip:7fe870fa08df sp:7fff0b258e30 error:0 in libQt5Widgets.so.5.12.8[1a08df,7fe870f4d000+3c4000]
[    8.728510] ukui-settings-d[1794]: segfault at 8 ip 00007f96369a08b5 sp 00007ffd23a1dba0 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7f963694d000+3c4000] likely on CPU 0 (core 0, socket 0)
[    8.729676] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[   10.062407] ukui-settings-d[2103]: segfault at 28 ip 00007f6b275a08b5 sp 00007ffc8a2e0440 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7f6b2754d000+3c4000] likely on CPU 2 (core 0, socket 2)
[   10.063852] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[   10.617767] ukui-settings-d[2834]: segfault at 29 ip 00007fa4fd1a08b5 sp 00007fff50142b10 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7fa4fd14d000+3c4000] likely on CPU 1 (core 0, socket 1)
[   10.619077] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[   11.165580] ukui-settings-d[3364]: segfault at 8 ip 00007f4bde9a08b5 sp 00007fff7c1a7810 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7f4bde94d000+3c4000] likely on CPU 1 (core 0, socket 1)
[   11.167269] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[   11.501462] ukui-settings-d[3900]: segfault at 8 ip 00007fca775a08b5 sp 00007ffd076ef400 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7fca7754d000+3c4000] likely on CPU 0 (core 0, socket 0)
[   11.502761] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[   11.867813] ukui-settings-d[4463]: segfault at 100000021 ip 00007f07209a08d2 sp 00007ffec0431d80 error 4 in libQt5Widgets.so.5.12.8[1a08d2,7f072094d000+3c4000] likely on CPU 2 (core 0, socket 2)
[   11.868902] Code: 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 48 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b 45 70 48 85 c0 74 3b <48> 8b 50 20 48 85 d2 0f 84 b1 00 00 00 8b 52 04 85 d2 0f 84 a6 00
[   12.290632] ukui-settings-d[4866]: segfault at 8 ip 00007f42873a08b5 sp 00007fff4f2e9f90 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7f428734d000+3c4000] likely on CPU 1 (core 0, socket 1)
[   12.292096] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[   12.748431] ukui-settings-d[5034]: segfault at 1006d0021 ip 00007fa2ec1a08d2 sp 00007ffeef7128f0 error 4 in libQt5Widgets.so.5.12.8[1a08d2,7fa2ec14d000+3c4000] likely on CPU 1 (core 0, socket 1)
[   12.750589] Code: 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 48 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b 45 70 48 85 c0 74 3b <48> 8b 50 20 48 85 d2 0f 84 b1 00 00 00 8b 52 04 85 d2 0f 84 a6 00
[   13.265812] ukui-settings-d[5055]: segfault at 8 ip 00007f85193a08b5 sp 00007ffdee20f770 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7f851934d000+3c4000] likely on CPU 0 (core 0, socket 0)
[   13.267093] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[   13.892038] ukui-settings-d[5078]: segfault at 8 ip 00007fa72d7a08b5 sp 00007ffd0b647d80 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7fa72d74d000+3c4000] likely on CPU 3 (core 0, socket 3)
[   13.893192] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[   14.168074] ukui-settings-d[5102]: segfault at b1 ip 00007f67c61a08c9 sp 00007ffe403a6e40 error 4 in libQt5Widgets.so.5.12.8[1a08c9,7f67c614d000+3c4000] likely on CPU 2 (core 0, socket 2)
[   14.169168] Code: 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 48 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 <48> 8b 45 70 48 85 c0 74 3b 48 8b 50 20 48 85 d2 0f 84 b1 00 00 00
[   65.396839] systemd-journald[341]: Received client request to flush runtime journal.
[   65.412682] systemd-journald[341]: File /var/log/journal/6730bfab70e74566a30d15657f16ea21/system.journal corrupted or uncleanly shut down, renaming and replacing.
[   66.414469] systemd-journald[341]: File /var/log/journal/6730bfab70e74566a30d15657f16ea21/user-1000.journal corrupted or uncleanly shut down, renaming and replacing.
[  316.520359][    C1] EXT4-fs (sda1): error count since last fsck: 2
[  316.520878][    C1] EXT4-fs (sda1): initial error at time 1692063521: ext4_journal_check_start:61
[  316.521528][    C1] EXT4-fs (sda1): last error at time 1692063521: ext4_journal_check_start:61
[  370.811347][ T5730] faux_driver vhci_hcd.0: fdev(0) rhport(0) sockfd(3)
[  370.812297][ T5730] faux_driver vhci_hcd.0: devid(262147) speed(5) speed_str(super-speed)
[  370.813340][ T5730] faux_driver vhci_hcd.0: Device attached
[  371.060590][   T11] usb 4-1: SetAddress Request (2) to port 0
[  371.061522][   T11] usb 4-1: new SuperSpeed USB device number 2 using faux_driver
[  371.088522][   T11] usb 4-1: New USB device found, idVendor=0951, idProduct=1666, bcdDevice= 1.10
[  371.088991][   T11] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  371.089387][   T11] usb 4-1: Product: DataTraveler 3.0
[  371.089642][   T11] usb 4-1: Manufacturer: Kingston
[  371.089888][   T11] usb 4-1: SerialNumber: 4CEDFB74A335E611091101EF
[  371.092294][   T11] probe of 4-1 returned 0 after 1994 usecs
[  371.099362][ T5747] calling  usb_storage_driver_init+0x0/0xff0 [usb_storage] @ 5747
[  371.099965][ T5747] usb-storage 4-1:1.0: USB Mass Storage device detected
[  371.100875][ T5747] scsi host2: usb-storage 4-1:1.0
[  371.101312][ T5747] probe of 4-1:1.0 returned 0 after 1357 usecs
[  371.101768][ T5747] usbcore: registered new interface driver usb-storage
[  371.102275][ T5747] initcall usb_storage_driver_init+0x0/0xff0 [usb_storage] returned 0 after 2343 usecs
[  371.104685][ T5747] calling  uas_init+0x0/0xff0 [uas] @ 5747
[  371.105238][ T5747] usbcore: registered new interface driver uas
[  371.105697][ T5747] initcall uas_init+0x0/0xff0 [uas] returned 0 after 537 usecs
[  372.107588][   T81] scsi 2:0:0:0: Direct-Access     Kingston DataTraveler 3.0 PMAP PQ: 0 ANSI: 6
[  372.109263][   T81] probe of 2:0:0:0 returned 19 after 14 usecs
[  372.110497][   T81] sd 2:0:0:0: Attached scsi generic sg2 type 0
[  372.114590][   T83] sd 2:0:0:0: [sdc] 60530688 512-byte logical blocks: (31.0 GB/28.9 GiB)
[  372.117699][   T83] sd 2:0:0:0: [sdc] Write Protect is off
[  372.118568][   T83] sd 2:0:0:0: [sdc] Mode Sense: 45 00 00 00
[  372.120466][   T83] sd 2:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[  372.141661][   T83]  sdc:
[  372.141895][   T83] sd 2:0:0:0: [sdc] Attached SCSI removable disk
[  372.142408][   T83] probe of 2:0:0:0 returned 0 after 32044 usecs
[  372.339429][ T5775] calling  init_exfat_fs+0x0/0xff0 [exfat] @ 5775
[  372.339944][ T5775] initcall init_exfat_fs+0x0/0xff0 [exfat] returned 0 after 32 usecs
[  372.341161][ T5772] exfat: Deprecated parameter 'namecase'
[  372.342188][ T5772] exFAT-fs (sdc): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[  372.388594][ T1909] ukui-flash-disk[1909]: segfault at 0 ip 0000559de0aeedcb sp 00007ffd7db8c150 error 4 in ukui-flash-disk[40dcb,559de0ad5000+61000] likely on CPU 2 (core 0, socket 2)
[  372.389429][ T1909] Code: ff 85 c0 4c 89 ef 0f 95 84 24 e1 00 00 00 e8 1c 8d fe ff 48 8b b4 24 a0 00 00 00 48 89 ef 4c 8b 2d 7a 42 06 00 e8 65 77 ff ff <49> 8b 7d 00 48 89 ee e8 19 ec 00 00 48 89 ef 49 89 c5 e8 1e 64 ff
[  649.706853][ T6045] PM: suspend entry (s2idle)
[  649.750187][ T6045] Filesystems sync: 0.042 seconds
[  649.872450][ T6045] Freezing user space processes
[  649.876451][ T6045] Freezing user space processes completed (elapsed 0.002 seconds)
[  649.877070][ T6045] OOM killer disabled.
[  649.877381][ T6045] Freezing remaining freezable tasks
[  649.879025][ T6045] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[  649.879564][ T6045] sound pcmC0D1c: PM: calling do_pcm_suspend [snd_pcm] @ 6045, parent: card0
[  649.879992][ T6045] sound pcmC0D1c: PM: do_pcm_suspend [snd_pcm] returned 0 after 0 usecs
[  649.880385][ T6045] sound pcmC0D0c: PM: calling do_pcm_suspend [snd_pcm] @ 6045, parent: card0
[  649.880799][ T6045] sound pcmC0D0c: PM: do_pcm_suspend [snd_pcm] returned 0 after 0 usecs
[  649.881195][ T6045] sound pcmC0D0p: PM: calling do_pcm_suspend [snd_pcm] @ 6045, parent: card0
[  649.881612][ T6045] sound pcmC0D0p: PM: do_pcm_suspend [snd_pcm] returned 0 after 0 usecs
[  649.882004][ T6045] platform intel_rapl_msr.0: PM: calling platform_pm_suspend @ 6045, parent: platform
[  649.882450][ T6045] platform intel_rapl_msr.0: PM: platform_pm_suspend returned 0 after 0 usecs
[  649.882881][ T6045] input input5: PM: calling input_dev_suspend @ 6045, parent: virtio1
[  649.883264][ T6045] input input5: PM: input_dev_suspend returned 0 after 0 usecs
[  649.883636][   T83] sd 2:0:0:0: PM: calling scsi_bus_suspend @ 83, parent: target2:0:0
[  649.884238][ T6056] usb usb3: PM: calling usb_dev_suspend @ 6056, parent: vhci_hcd.0
[  649.884660][ T6056] usb usb3: PM: usb_dev_suspend returned 0 after 34 usecs
[  649.903402][   T83] sd 2:0:0:0: PM: scsi_bus_suspend returned 0 after 19382 usecs
[  649.903875][   T81] scsi target2:0:0: PM: calling scsi_bus_suspend @ 81, parent: host2
[  649.904284][   T81] scsi target2:0:0: PM: scsi_bus_suspend returned 0 after 0 usecs
[  649.904655][   T80] scsi host2: PM: calling scsi_bus_suspend @ 80, parent: 4-1:1.0
[  649.905015][   T80] scsi host2: PM: scsi_bus_suspend returned 0 after 0 usecs
[  649.905362][ T6054] usb 4-1: PM: calling usb_dev_suspend @ 6054, parent: usb4
[  649.919389][ T6054] usb 4-1: PM: usb_dev_suspend returned 0 after 13675 usecs
[  649.919765][ T6055] usb usb4: PM: calling usb_dev_suspend @ 6055, parent: vhci_hcd.0
[  649.920148][ T6055] usb usb4: PM: usb_dev_suspend returned 0 after 9 usecs
[  649.920494][ T6045] input input3: PM: calling input_dev_suspend @ 6045, parent: serio1
[  649.920882][ T6045] input input3: PM: input_dev_suspend returned 0 after 1 usecs
[  649.921240][ T6045] leds input1::scrolllock: PM: calling led_suspend @ 6045, parent: input1
[  649.921642][ T6045] leds input1::scrolllock: PM: led_suspend returned 0 after 0 usecs
[  649.922024][ T6045] leds input1::capslock: PM: calling led_suspend @ 6045, parent: input1
[  649.922416][ T6045] leds input1::capslock: PM: led_suspend returned 0 after 0 usecs
[  649.922793][ T6045] input input4: PM: calling input_dev_suspend @ 6045, parent: serio1
[  649.923224][ T6045] input input4: PM: input_dev_suspend returned 0 after 0 usecs
[  649.923593][ T6045] leds input1::numlock: PM: calling led_suspend @ 6045, parent: input1
[  649.923994][ T6045] leds input1::numlock: PM: led_suspend returned 0 after 0 usecs
[  649.924360][ T6055] sd 0:0:1:0: PM: calling scsi_bus_suspend @ 6055, parent: target0:0:1
[  649.924764][ T6045] input input1: PM: calling input_dev_suspend @ 6045, parent: serio0
[  649.925141][ T6045] input input1: PM: input_dev_suspend returned 0 after 0 usecs
[  649.925495][ T6045] alarmtimer alarmtimer.0.auto: PM: calling platform_pm_suspend @ 6045, parent: rtc0
[  649.925942][ T6045] alarmtimer alarmtimer.0.auto: PM: platform_pm_suspend returned 0 after 1 usecs
[  649.926369][ T6045] rtc rtc0: PM: calling rtc_suspend @ 6045, parent: 00:04
[  649.926698][ T6045] rtc rtc0: PM: rtc_suspend returned 0 after 0 usecs
[  649.927022][ T6045] psmouse serio1: PM: calling serio_suspend @ 6045, parent: i8042
[  649.927400][ T6053] sd 0:0:0:0: PM: calling scsi_bus_suspend @ 6053, parent: target0:0:0
[  649.928065][ T6045] psmouse serio1: PM: serio_suspend returned 0 after 668 usecs
[  649.928426][ T6045] atkbd serio0: PM: calling serio_suspend @ 6045, parent: i8042
[  649.928843][ T6045] atkbd serio0: PM: serio_suspend returned 0 after 55 usecs
[  649.929288][ T6045] i8042 i8042: PM: calling platform_pm_suspend @ 6045, parent: platform
[  649.929679][ T6045] i8042 i8042: PM: platform_pm_suspend returned 0 after 1 usecs
[  649.930066][ T6045] kgdboc kgdboc: PM: calling platform_pm_suspend @ 6045, parent: platform
[  649.930462][ T6045] kgdboc kgdboc: PM: platform_pm_suspend returned 0 after 0 usecs
[  649.930836][ T6045] port serial8250:0.31: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.931299][ T6045] port serial8250:0.31: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.931395][   T80] usb usb2: PM: calling usb_dev_suspend @ 80, parent: 0000:00:04.0
[  649.931744][   T81] usb usb1: PM: calling usb_dev_suspend @ 81, parent: 0000:00:04.0
[  649.931770][ T6056] scsi host1: PM: calling scsi_bus_suspend @ 6056, parent: ata2
[  649.931773][ T6056] scsi host1: PM: scsi_bus_suspend returned 0 after 0 usecs
[  649.932790][ T6045] port serial8250:0.30: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.933165][ T6058]  ata2: PM: calling ata_port_pm_suspend @ 6058, parent: 0000:00:01.1
[  649.933448][ T6045] port serial8250:0.30: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.934101][ T6058]  ata2: PM: ata_port_pm_suspend returned 0 after 199 usecs
[  649.934498][ T6045] port serial8250:0.29: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.935036][   T81] usb usb1: PM: usb_dev_suspend returned 0 after 2048 usecs
[  649.935387][ T6045] port serial8250:0.29: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.935391][ T6045] port serial8250:0.28: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.937396][ T6045] port serial8250:0.28: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.937941][ T6045] port serial8250:0.27: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.938545][ T6045] port serial8250:0.27: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.939091][ T6045] port serial8250:0.26: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.939703][ T6045] port serial8250:0.26: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.940250][ T6045] port serial8250:0.25: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.940855][ T6045] port serial8250:0.25: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.941401][ T6045] port serial8250:0.24: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.941977][ T6045] port serial8250:0.24: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.942402][ T6045] port serial8250:0.23: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.942878][ T6045] port serial8250:0.23: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.943299][ T6045] port serial8250:0.22: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.943775][ T6045] port serial8250:0.22: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.944332][ T6045] port serial8250:0.21: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.944387][ T6055] sd 0:0:1:0: [sdb] Synchronizing SCSI cache
[  649.944942][ T6045] port serial8250:0.21: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.945396][ T6055] sd 0:0:1:0: PM: scsi_bus_suspend returned 0 after 20645 usecs
[  649.945820][ T6045] port serial8250:0.20: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.946176][ T6054] scsi target0:0:1: PM: calling scsi_bus_suspend @ 6054, parent: host0
[  649.946791][ T6045] port serial8250:0.20: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.947176][ T6054] scsi target0:0:1: PM: scsi_bus_suspend returned 0 after 0 usecs
[  649.947723][ T6045] port serial8250:0.19: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.948692][ T6045] port serial8250:0.19: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.949233][ T6045] port serial8250:0.18: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.949835][ T6045] port serial8250:0.18: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.950378][ T6045] port serial8250:0.17: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.950992][ T6045] port serial8250:0.17: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.951541][ T6045] port serial8250:0.16: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.951554][ T6053] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[  649.952144][ T6045] port serial8250:0.16: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.952922][ T6045] port serial8250:0.15: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.953396][ T6045] port serial8250:0.15: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.953819][ T6045] port serial8250:0.14: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.954291][ T6045] port serial8250:0.14: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.954719][ T6045] port serial8250:0.13: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.955187][ T6045] port serial8250:0.13: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.955618][ T6045] port serial8250:0.12: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.956083][ T6045] port serial8250:0.12: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.956507][ T6045] port serial8250:0.11: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.956983][ T6045] port serial8250:0.11: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.957407][ T6045] port serial8250:0.10: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.957876][ T6045] port serial8250:0.10: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.958331][ T6045] port serial8250:0.9: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.958805][ T6045] port serial8250:0.9: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.959223][ T6045] port serial8250:0.8: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.959693][ T6045] port serial8250:0.8: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.959963][   T80] usb usb2: PM: usb_dev_suspend returned 0 after 27760 usecs
[  649.960273][ T6045] port serial8250:0.7: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.961336][ T6045] port serial8250:0.7: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.961791][ T6045] port serial8250:0.6: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.962244][ T6053] sd 0:0:0:0: PM: scsi_bus_suspend returned 0 after 34455 usecs
[  649.962283][ T6045] port serial8250:0.6: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.962659][   T83] scsi target0:0:0: PM: calling scsi_bus_suspend @ 83, parent: host0
[  649.963199][ T6045] port serial8250:0.5: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.963714][   T83] scsi target0:0:0: PM: scsi_bus_suspend returned 0 after 0 usecs
[  649.964313][ T6045] port serial8250:0.5: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.964849][ T6056] scsi host0: PM: calling scsi_bus_suspend @ 6056, parent: ata1
[  649.965240][ T6045] port serial8250:0.4: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.965600][ T6056] scsi host0: PM: scsi_bus_suspend returned 0 after 0 usecs
[  649.966168][ T6045] port serial8250:0.4: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.966516][ T6057]  ata1: PM: calling ata_port_pm_suspend @ 6057, parent: 0000:00:01.1
[  649.967027][ T6045] port serial8250:0.3: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.967617][   T76] ata1.00: Entering standby power mode
[  649.968048][ T6045] port serial8250:0.3: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.968821][ T6045] port serial8250:0.2: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.968976][   T76] ata1.01: Entering standby power mode
[  649.969314][ T6045] port serial8250:0.2: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.970102][ T6045] port serial8250:0.1: PM: calling pm_runtime_force_suspend @ 6045, parent: serial8250:0
[  649.970635][ T6045] port serial8250:0.1: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.970642][ T6057]  ata1: PM: ata_port_pm_suspend returned 0 after 3215 usecs
[  649.971067][ T6045] serial8250 serial8250: PM: calling platform_pm_suspend @ 6045, parent: platform
[  649.971970][ T6045] serial8250 serial8250: PM: platform_pm_suspend returned 0 after 0 usecs
[  649.972376][ T6045] port 00:00:0.0: PM: calling pm_runtime_force_suspend @ 6045, parent: 00:00:0
[  649.972803][ T6045] port 00:00:0.0: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[  649.973208][ T6045] input input0: PM: calling input_dev_suspend @ 6045, parent: LNXPWRBN:00
[  649.973613][ T6045] input input0: PM: input_dev_suspend returned 0 after 0 usecs
[  649.973979][ T6045] platform pcspkr: PM: calling platform_pm_suspend @ 6045, parent: platform
[  649.974395][ T6045] platform pcspkr: PM: platform_pm_suspend returned 0 after 0 usecs
[  649.974838][ T6045] rtc_cmos 00:04: PM: calling pnp_bus_suspend @ 6045, parent: pnp0
[  649.975280][ T6045] rtc_cmos 00:04: PM: pnp_bus_suspend returned 0 after 32 usecs
[  649.975653][ T6045] pnp 00:03: PM: calling pnp_bus_suspend @ 6045, parent: pnp0
[  649.976019][ T6045] pnp 00:03: PM: pnp_bus_suspend returned 0 after 0 usecs
[  649.976361][ T6045] i8042 aux 00:02: PM: calling pnp_bus_suspend @ 6045, parent: pnp0
[  649.976765][ T6045] i8042 aux 00:02: PM: pnp_bus_suspend returned 0 after 0 usecs
[  649.977232][ T6045] i8042 kbd 00:01: PM: calling pnp_bus_suspend @ 6045, parent: pnp0
[  649.977717][ T6045] i8042 kbd 00:01: PM: pnp_bus_suspend returned 0 after 0 usecs
[  649.978184][ T6045] serial 00:00: PM: calling pnp_bus_suspend @ 6045, parent: pnp0
[  649.978660][ T6045] serial 00:00: PM: pnp_bus_suspend returned 0 after 4 usecs
[  649.979123][ T6045] button LNXPWRBN:00: PM: calling acpi_button_suspend @ 6045, parent: LNXSYSTM:00
[  649.979689][ T6045] button LNXPWRBN:00: PM: acpi_button_suspend returned 0 after 0 usecs
[  649.980192][ T6045] fw_cfg QEMU0002:00: PM: calling acpi_subsys_suspend @ 6045, parent: pci0000:00
[  649.980754][ T6045] fw_cfg QEMU0002:00: PM: acpi_subsys_suspend returned 0 after 0 usecs
[  649.981265][   T84] virtio-pci 0000:00:08.0: PM: calling pci_pm_suspend @ 84, parent: pci0000:00
[  649.982484][   T84] virtio-pci 0000:00:08.0: PM: pci_pm_suspend returned 0 after 670 usecs
[  649.983058][ T6045] regulator regulator.0: PM: calling regulator_suspend @ 6045, parent: reg-dummy
[  649.983624][ T6045] regulator regulator.0: PM: regulator_suspend returned 0 after 0 usecs
[  649.983670][   T84] virtio-pci 0000:00:07.0: PM: calling pci_pm_suspend @ 84, parent: pci0000:00
[  649.984197][ T3864] virtio-pci 0000:00:06.0: PM: calling pci_pm_suspend @ 3864, parent: pci0000:00
[  649.986676][ T3864] virtio-pci 0000:00:06.0: PM: pci_pm_suspend returned 0 after 368 usecs
[  649.987164][ T3864] snd_intel8x0 0000:00:05.0: PM: calling pci_pm_suspend @ 3864, parent: pci0000:00
[  649.987672][   T42] xhci_hcd 0000:00:04.0: PM: calling pci_pm_suspend @ 42, parent: pci0000:00
[  649.988009][   T84] virtio-pci 0000:00:07.0: PM: pci_pm_suspend returned 0 after 3307 usecs
[  649.989137][   T42] xhci_hcd 0000:00:04.0: PM: pci_pm_suspend returned 0 after 803 usecs
[  649.989265][   T84] virtio-pci 0000:00:03.0: PM: calling pci_pm_suspend @ 84, parent: pci0000:00
[  649.989656][   T42] qxl 0000:00:02.0: PM: calling pci_pm_suspend @ 42, parent: pci0000:00
[  650.003436][ T3864] snd_intel8x0 0000:00:05.0: PM: pci_pm_suspend returned 0 after 15768 usecs
[  650.003678][ T6060] piix4_smbus 0000:00:01.3: PM: calling pci_pm_suspend @ 6060, parent: pci0000:00
[  650.003727][ T6061] ata_piix 0000:00:01.1: PM: calling pci_pm_suspend @ 6061, parent: pci0000:00
[  650.004180][ T6061] ata_piix 0000:00:01.1: PM: pci_pm_suspend returned 0 after 450 usecs
[  650.004190][ T6061] pci 0000:00:01.0: PM: calling pci_pm_suspend @ 6061, parent: pci0000:00
[  650.004192][ T6061] pci 0000:00:01.0: PM: pci_pm_suspend returned 0 after 0 usecs
[  650.004195][ T6061] pci 0000:00:00.0: PM: calling pci_pm_suspend @ 6061, parent: pci0000:00
[  650.004197][ T6061] pci 0000:00:00.0: PM: pci_pm_suspend returned 0 after 0 usecs
[  650.007278][ T6060] piix4_smbus 0000:00:01.3: PM: pci_pm_suspend returned 0 after 0 usecs
[  650.007476][   T84] virtio-pci 0000:00:03.0: PM: pci_pm_suspend returned 0 after 17126 usecs
[  650.009125][   T42] qxl 0000:00:02.0: PM: pci_pm_suspend returned 0 after 5447 usecs
[  650.009748][ T6045] fw_cfg QEMU0002:00: PM: calling acpi_subsys_suspend_late @ 6045, parent: pci0000:00
[  650.010470][ T6045] fw_cfg QEMU0002:00: PM: acpi_subsys_suspend_late returned 0 after 0 usecs
[  650.011241][   T97] virtio-pci 0000:00:08.0: PM: calling pci_pm_suspend_late @ 97, parent: pci0000:00
[  650.011381][  T115] virtio-pci 0000:00:07.0: PM: calling pci_pm_suspend_late @ 115, parent: pci0000:00
[  650.011997][   T97] virtio-pci 0000:00:08.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[  650.012051][   T40] virtio-pci 0000:00:06.0: PM: calling pci_pm_suspend_late @ 40, parent: pci0000:00
[  650.012055][   T40] virtio-pci 0000:00:06.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[  650.012061][   T40] snd_intel8x0 0000:00:05.0: PM: calling pci_pm_suspend_late @ 40, parent: pci0000:00
[  650.012064][   T40] snd_intel8x0 0000:00:05.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[  650.012069][   T40] xhci_hcd 0000:00:04.0: PM: calling pci_pm_suspend_late @ 40, parent: pci0000:00
[  650.012071][   T40] xhci_hcd 0000:00:04.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[  650.012074][   T40] virtio-pci 0000:00:03.0: PM: calling pci_pm_suspend_late @ 40, parent: pci0000:00
[  650.012076][   T40] virtio-pci 0000:00:03.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[  650.012079][   T40] qxl 0000:00:02.0: PM: calling pci_pm_suspend_late @ 40, parent: pci0000:00
[  650.012082][   T40] qxl 0000:00:02.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[  650.012086][   T40] piix4_smbus 0000:00:01.3: PM: calling pci_pm_suspend_late @ 40, parent: pci0000:00
[  650.012089][   T40] piix4_smbus 0000:00:01.3: PM: pci_pm_suspend_late returned 0 after 0 usecs
[  650.012092][   T40] ata_piix 0000:00:01.1: PM: calling pci_pm_suspend_late @ 40, parent: pci0000:00
[  650.012094][   T40] ata_piix 0000:00:01.1: PM: pci_pm_suspend_late returned 0 after 0 usecs
[  650.012098][   T40] pci 0000:00:01.0: PM: calling pci_pm_suspend_late @ 40, parent: pci0000:00
[  650.012101][   T40] pci 0000:00:01.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[  650.012103][   T40] pci 0000:00:00.0: PM: calling pci_pm_suspend_late @ 40, parent: pci0000:00
[  650.012106][   T40] pci 0000:00:00.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[  650.012486][  T115] virtio-pci 0000:00:07.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[  650.021364][ T6045] fw_cfg QEMU0002:00: PM: calling acpi_subsys_suspend_noirq @ 6045, parent: pci0000:00
[  650.021826][ T6045] fw_cfg QEMU0002:00: PM: acpi_subsys_suspend_noirq returned 0 after 0 usecs
[  650.022304][ T6057] virtio-pci 0000:00:08.0: PM: calling pci_pm_suspend_noirq @ 6057, parent: pci0000:00
[  650.022854][ T6057] virtio-pci 0000:00:08.0: PM: pci_pm_suspend_noirq returned 0 after 84 usecs
[  650.023283][ T6057] virtio-pci 0000:00:07.0: PM: calling pci_pm_suspend_noirq @ 6057, parent: pci0000:00
[  650.023354][ T6053] virtio-pci 0000:00:06.0: PM: calling pci_pm_suspend_noirq @ 6053, parent: pci0000:00
[  650.024017][ T6057] virtio-pci 0000:00:07.0: PM: pci_pm_suspend_noirq returned 0 after 270 usecs
[  650.024585][ T6053] virtio-pci 0000:00:06.0: PM: pci_pm_suspend_noirq returned 0 after 223 usecs
[  650.024830][ T6057] snd_intel8x0 0000:00:05.0: PM: calling pci_pm_suspend_noirq @ 6057, parent: pci0000:00
[  650.024842][ T6056] xhci_hcd 0000:00:04.0: PM: calling pci_pm_suspend_noirq @ 6056, parent: pci0000:00
[  650.025018][ T6056] xhci_hcd 0000:00:04.0: PM: pci_pm_suspend_noirq returned 0 after 171 usecs
[  650.025022][ T6056] virtio-pci 0000:00:03.0: PM: calling pci_pm_suspend_noirq @ 6056, parent: pci0000:00
[  650.025311][ T6056] virtio-pci 0000:00:03.0: PM: pci_pm_suspend_noirq returned 0 after 287 usecs
[  650.025314][ T6056] qxl 0000:00:02.0: PM: calling pci_pm_suspend_noirq @ 6056, parent: pci0000:00
[  650.025317][ T6056] qxl 0000:00:02.0: PM: pci_pm_suspend_noirq returned 0 after 0 usecs
[  650.025320][ T6056] piix4_smbus 0000:00:01.3: PM: calling pci_pm_suspend_noirq @ 6056, parent: pci0000:00
[  650.025424][ T6053] ata_piix 0000:00:01.1: PM: calling pci_pm_suspend_noirq @ 6053, parent: pci0000:00
[  650.025943][ T6056] piix4_smbus 0000:00:01.3: PM: pci_pm_suspend_noirq returned 0 after 619 usecs
[  650.025946][ T6056] pci 0000:00:01.0: PM: calling pci_pm_suspend_noirq @ 6056, parent: pci0000:00
[  650.026116][ T6057] snd_intel8x0 0000:00:05.0: PM: pci_pm_suspend_noirq returned 0 after 170 usecs
[  650.026122][   T83] pci 0000:00:00.0: PM: calling pci_pm_suspend_noirq @ 83, parent: pci0000:00
[  650.026305][   T83] pci 0000:00:00.0: PM: pci_pm_suspend_noirq returned 0 after 181 usecs
[  650.026517][ T6053] ata_piix 0000:00:01.1: PM: pci_pm_suspend_noirq returned 0 after 0 usecs
[  650.027491][ T6056] pci 0000:00:01.0: PM: pci_pm_suspend_noirq returned 0 after 304 usecs
[  674.000257][   T39] pci 0000:00:00.0: PM: calling pci_pm_resume_noirq @ 39, parent: pci0000:00
[  674.002240][   T39] pci 0000:00:00.0: PM: pci_pm_resume_noirq returned 0 after 192 usecs
[  674.004148][ T6045] fw_cfg QEMU0002:00: PM: calling acpi_subsys_resume_noirq @ 6045, parent: pci0000:00
[  674.004287][   T49] pci 0000:00:01.0: PM: calling pci_pm_resume_noirq @ 49, parent: pci0000:00
[  674.005149][ T6045] fw_cfg QEMU0002:00: PM: acpi_subsys_resume_noirq returned 0 after 0 usecs
[  674.005900][   T49] pci 0000:00:01.0: PM: pci_pm_resume_noirq returned 0 after 218 usecs
[  674.006390][   T39] ata_piix 0000:00:01.1: PM: calling pci_pm_resume_noirq @ 39, parent: pci0000:00
[  674.006900][   T49] piix4_smbus 0000:00:01.3: PM: calling pci_pm_resume_noirq @ 49, parent: pci0000:00
[  674.008103][   T39] ata_piix 0000:00:01.1: PM: pci_pm_resume_noirq returned 0 after 575 usecs
[  674.008608][   T49] piix4_smbus 0000:00:01.3: PM: pci_pm_resume_noirq returned 0 after 234 usecs
[  674.009077][ T5723] qxl 0000:00:02.0: PM: calling pci_pm_resume_noirq @ 5723, parent: pci0000:00
[  674.009098][   T39] virtio-pci 0000:00:03.0: PM: calling pci_pm_resume_noirq @ 39, parent: pci0000:00
[  674.009102][   T39] virtio-pci 0000:00:03.0: PM: pci_pm_resume_noirq returned 0 after 0 usecs
[  674.009104][   T39] xhci_hcd 0000:00:04.0: PM: calling pci_pm_resume_noirq @ 39, parent: pci0000:00
[  674.009106][   T39] xhci_hcd 0000:00:04.0: PM: pci_pm_resume_noirq returned 0 after 0 usecs
[  674.009108][   T39] snd_intel8x0 0000:00:05.0: PM: calling pci_pm_resume_noirq @ 39, parent: pci0000:00
[  674.009110][   T39] snd_intel8x0 0000:00:05.0: PM: pci_pm_resume_noirq returned 0 after 0 usecs
[  674.009112][   T39] virtio-pci 0000:00:06.0: PM: calling pci_pm_resume_noirq @ 39, parent: pci0000:00
[  674.009114][   T39] virtio-pci 0000:00:06.0: PM: pci_pm_resume_noirq returned 0 after 0 usecs
[  674.009118][   T39] virtio-pci 0000:00:07.0: PM: calling pci_pm_resume_noirq @ 39, parent: pci0000:00
[  674.009119][   T39] virtio-pci 0000:00:07.0: PM: pci_pm_resume_noirq returned 0 after 0 usecs
[  674.009121][   T39] virtio-pci 0000:00:08.0: PM: calling pci_pm_resume_noirq @ 39, parent: pci0000:00
[  674.009123][   T39] virtio-pci 0000:00:08.0: PM: pci_pm_resume_noirq returned 0 after 0 usecs
[  674.009566][ T6045] i8042 i8042: PM: calling i8042_pm_resume_noirq @ 6045, parent: platform
[  674.010217][ T5723] qxl 0000:00:02.0: PM: pci_pm_resume_noirq returned 0 after 0 usecs
[  674.010802][ T6045] i8042 i8042: PM: i8042_pm_resume_noirq returned 0 after 15 usecs
[  674.017367][ T6056] pci 0000:00:00.0: PM: calling pci_pm_resume_early @ 6056, parent: pci0000:00
[  674.017820][ T6056] pci 0000:00:00.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[  674.018219][ T6056] pci 0000:00:01.0: PM: calling pci_pm_resume_early @ 6056, parent: pci0000:00
[  674.018736][ T6056] pci 0000:00:01.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[  674.019170][ T6056] ata_piix 0000:00:01.1: PM: calling pci_pm_resume_early @ 6056, parent: pci0000:00
[  674.019630][ T6056] ata_piix 0000:00:01.1: PM: pci_pm_resume_early returned 0 after 0 usecs
[  674.020055][ T6056] piix4_smbus 0000:00:01.3: PM: calling pci_pm_resume_early @ 6056, parent: pci0000:00
[  674.020531][ T6056] piix4_smbus 0000:00:01.3: PM: pci_pm_resume_early returned 0 after 0 usecs
[  674.020965][ T6056] qxl 0000:00:02.0: PM: calling pci_pm_resume_early @ 6056, parent: pci0000:00
[  674.021407][ T6056] qxl 0000:00:02.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[  674.021819][ T6056] virtio-pci 0000:00:03.0: PM: calling pci_pm_resume_early @ 6056, parent: pci0000:00
[  674.022289][ T6056] virtio-pci 0000:00:03.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[  674.022720][ T6056] xhci_hcd 0000:00:04.0: PM: calling pci_pm_resume_early @ 6056, parent: pci0000:00
[  674.023183][ T6056] xhci_hcd 0000:00:04.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[  674.023607][ T6045] fw_cfg QEMU0002:00: PM: calling acpi_subsys_resume_early @ 6045, parent: pci0000:00
[  674.024080][ T6045] fw_cfg QEMU0002:00: PM: acpi_subsys_resume_early returned 0 after 0 usecs
[  674.024533][   T83] snd_intel8x0 0000:00:05.0: PM: calling pci_pm_resume_early @ 83, parent: pci0000:00
[  674.025004][   T83] snd_intel8x0 0000:00:05.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[  674.025443][   T83] virtio-pci 0000:00:06.0: PM: calling pci_pm_resume_early @ 83, parent: pci0000:00
[  674.025902][   T83] virtio-pci 0000:00:06.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[  674.026328][   T83] virtio-pci 0000:00:07.0: PM: calling pci_pm_resume_early @ 83, parent: pci0000:00
[  674.026798][   T83] virtio-pci 0000:00:07.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[  674.027269][   T83] virtio-pci 0000:00:08.0: PM: calling pci_pm_resume_early @ 83, parent: pci0000:00
[  674.027725][   T83] virtio-pci 0000:00:08.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[  674.028202][ T6045] regulator regulator.0: PM: calling regulator_resume @ 6045, parent: reg-dummy
[  674.028652][ T6045] regulator regulator.0: PM: regulator_resume returned 0 after 0 usecs
[  674.029065][ T6053] pci 0000:00:00.0: PM: calling pci_pm_resume @ 6053, parent: pci0000:00
[  674.029475][ T6053] pci 0000:00:00.0: calling  quirk_passive_release+0x0/0xb0 @ 6053
[  674.029876][ T6053] pci 0000:00:00.0: quirk_passive_release+0x0/0xb0 took 10 usecs
[  674.030267][ T6053] pci 0000:00:00.0: PM: pci_pm_resume returned 0 after 791 usecs
[  674.030647][ T6053] pci 0000:00:01.0: PM: calling pci_pm_resume @ 6053, parent: pci0000:00
[  674.031074][ T6053] pci 0000:00:01.0: PM: pci_pm_resume returned 0 after 0 usecs
[  674.031450][ T6053] ata_piix 0000:00:01.1: PM: calling pci_pm_resume @ 6053, parent: pci0000:00
[  674.031910][ T6053] ata_piix 0000:00:01.1: PM: pci_pm_resume returned 0 after 23 usecs
[  674.032310][ T6053] piix4_smbus 0000:00:01.3: PM: calling pci_pm_resume @ 6053, parent: pci0000:00
[  674.032760][ T6053] piix4_smbus 0000:00:01.3: PM: pci_pm_resume returned 0 after 0 usecs
[  674.033164][ T6053] qxl 0000:00:02.0: PM: calling pci_pm_resume @ 6053, parent: pci0000:00
[  674.035782][ T6045] fw_cfg QEMU0002:00: PM: calling acpi_subsys_resume @ 6045, parent: pci0000:00
[  674.036361][   T83] virtio-pci 0000:00:03.0: PM: calling pci_pm_resume @ 83, parent: pci0000:00
[  674.036367][ T6056] xhci_hcd 0000:00:04.0: PM: calling pci_pm_resume @ 6056, parent: pci0000:00
[  674.036532][ T6045] fw_cfg QEMU0002:00: PM: acpi_subsys_resume returned 0 after 0 usecs
[  674.039686][   T83] virtio-pci 0000:00:03.0: PM: pci_pm_resume returned 0 after 2670 usecs
[  674.040114][   T80] snd_intel8x0 0000:00:05.0: PM: calling pci_pm_resume @ 80, parent: pci0000:00
[  674.040637][   T83] virtio-pci 0000:00:06.0: PM: calling pci_pm_resume @ 83, parent: pci0000:00
[  674.041729][ T6057] virtio-pci 0000:00:07.0: PM: calling pci_pm_resume @ 6057, parent: pci0000:00
[  674.044351][ T6056] xhci_hcd 0000:00:04.0: xHC error in resume, USBSTS 0x401, Reinit
[  674.044671][   T83] virtio-pci 0000:00:06.0: PM: pci_pm_resume returned 0 after 2666 usecs
[  674.045123][ T6056] usb usb1: root hub lost power or was reset
[  674.045550][   T83] virtio-pci 0000:00:08.0: PM: calling pci_pm_resume @ 83, parent: pci0000:00
[  674.045910][ T6056] usb usb2: root hub lost power or was reset
[  674.047150][ T6055]  ata1: PM: calling ata_port_pm_resume @ 6055, parent: 0000:00:01.1
[  674.047161][ T6055]  ata1: PM: ata_port_pm_resume returned 0 after 4 usecs
[  674.047165][ T6055]  ata2: PM: calling ata_port_pm_resume @ 6055, parent: 0000:00:01.1
[  674.047169][ T6055]  ata2: PM: ata_port_pm_resume returned 0 after 2 usecs
[  674.047172][ T6055] scsi host0: PM: calling scsi_bus_resume @ 6055, parent: ata1
[  674.047176][ T6055] scsi host0: PM: scsi_bus_resume returned 0 after 0 usecs
[  674.047179][ T6055] scsi host1: PM: calling scsi_bus_resume @ 6055, parent: ata2
[  674.047181][ T6055] scsi host1: PM: scsi_bus_resume returned 0 after 0 usecs
[  674.047765][   T83] virtio-pci 0000:00:08.0: PM: pci_pm_resume returned 0 after 1373 usecs
[  674.047918][ T6045] button LNXPWRBN:00: PM: calling acpi_button_resume @ 6045, parent: LNXSYSTM:00
[  674.047933][ T6045] button LNXPWRBN:00: PM: acpi_button_resume returned 0 after 12 usecs
[  674.047943][ T6045] serial 00:00: PM: calling pnp_bus_resume @ 6045, parent: pnp0
[  674.047979][ T6045] serial 00:00: PM: pnp_bus_resume returned 0 after 33 usecs
[  674.047981][ T6045] i8042 kbd 00:01: PM: calling pnp_bus_resume @ 6045, parent: pnp0
[  674.047982][ T6045] i8042 kbd 00:01: PM: pnp_bus_resume returned 0 after 0 usecs
[  674.047984][ T6045] i8042 aux 00:02: PM: calling pnp_bus_resume @ 6045, parent: pnp0
[  674.047986][ T6045] i8042 aux 00:02: PM: pnp_bus_resume returned 0 after 0 usecs
[  674.047987][ T6045] pnp 00:03: PM: calling pnp_bus_resume @ 6045, parent: pnp0
[  674.047989][ T6045] pnp 00:03: PM: pnp_bus_resume returned 0 after 0 usecs
[  674.047991][ T6045] rtc_cmos 00:04: PM: calling pnp_bus_resume @ 6045, parent: pnp0
[  674.047993][ T6045] rtc_cmos 00:04: PM: pnp_bus_resume returned 0 after 0 usecs
[  674.048007][ T6045] platform pcspkr: PM: calling platform_pm_resume @ 6045, parent: platform
[  674.048010][ T6045] platform pcspkr: PM: platform_pm_resume returned 0 after 0 usecs
[  674.048015][ T6045] input input0: PM: calling input_dev_resume @ 6045, parent: LNXPWRBN:00
[  674.048018][ T6045] input input0: PM: input_dev_resume returned 0 after 0 usecs
[  674.048021][ T6045] port 00:00:0.0: PM: calling pm_runtime_force_resume @ 6045, parent: 00:00:0
[  674.048024][ T6045] port 00:00:0.0: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048026][ T6045] serial8250 serial8250: PM: calling platform_pm_resume @ 6045, parent: platform
[  674.048028][ T6045] serial8250 serial8250: PM: platform_pm_resume returned 0 after 0 usecs
[  674.048030][ T6045] port serial8250:0.1: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048032][ T6045] port serial8250:0.1: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048034][ T6045] port serial8250:0.2: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048035][ T6045] port serial8250:0.2: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048037][ T6045] port serial8250:0.3: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048038][ T6045] port serial8250:0.3: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048041][ T6045] port serial8250:0.4: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048042][ T6045] port serial8250:0.4: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048043][ T6045] port serial8250:0.5: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048045][ T6045] port serial8250:0.5: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048047][ T6045] port serial8250:0.6: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048048][ T6045] port serial8250:0.6: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048050][ T6045] port serial8250:0.7: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048051][ T6045] port serial8250:0.7: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048051][ T6056] xhci_hcd 0000:00:04.0: PM: pci_pm_resume returned 0 after 11679 usecs
[  674.048053][ T6045] port serial8250:0.8: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048054][ T6045] port serial8250:0.8: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048057][ T6045] port serial8250:0.9: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048058][ T6045] port serial8250:0.9: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048060][ T6045] port serial8250:0.10: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048061][ T6045] port serial8250:0.10: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048063][ T6045] port serial8250:0.11: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048064][ T6045] port serial8250:0.11: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048066][ T6045] port serial8250:0.12: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048067][ T6045] port serial8250:0.12: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048069][ T6045] port serial8250:0.13: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048070][ T6045] port serial8250:0.13: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048072][ T6045] port serial8250:0.14: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048073][   T80] snd_intel8x0 0000:00:05.0: PM: pci_pm_resume returned 0 after 6877 usecs
[  674.048074][ T6045] port serial8250:0.14: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048076][ T6045] port serial8250:0.15: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048077][ T6045] port serial8250:0.15: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048079][ T6045] port serial8250:0.16: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048078][ T6055] usb usb1: PM: calling usb_dev_resume @ 6055, parent: 0000:00:04.0
[  674.048080][ T6045] port serial8250:0.16: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048082][ T6045] port serial8250:0.17: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048083][ T6045] port serial8250:0.17: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048085][ T6045] port serial8250:0.18: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048086][ T6045] port serial8250:0.18: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048088][ T6045] port serial8250:0.19: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048089][ T6045] port serial8250:0.19: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048091][ T6045] port serial8250:0.20: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048092][ T6045] port serial8250:0.20: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048094][ T6045] port serial8250:0.21: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048096][ T6045] port serial8250:0.21: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048097][ T6045] port serial8250:0.22: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048099][ T6045] port serial8250:0.22: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048100][ T6045] port serial8250:0.23: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048102][ T6045] port serial8250:0.23: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048104][ T6045] port serial8250:0.24: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048105][ T6045] port serial8250:0.24: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048107][ T6045] port serial8250:0.25: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048108][ T6045] port serial8250:0.25: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048110][ T6045] port serial8250:0.26: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048111][ T6045] port serial8250:0.26: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048112][ T6045] port serial8250:0.27: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048114][ T6045] port serial8250:0.27: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048115][ T6045] port serial8250:0.28: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048117][ T6045] port serial8250:0.28: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048119][ T6045] port serial8250:0.29: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048120][ T6045] port serial8250:0.29: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048122][ T6045] port serial8250:0.30: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048123][ T6045] port serial8250:0.30: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048125][ T6045] port serial8250:0.31: PM: calling pm_runtime_force_resume @ 6045, parent: serial8250:0
[  674.048126][ T6045] port serial8250:0.31: PM: pm_runtime_force_resume returned 0 after 0 usecs
[  674.048128][ T6045] kgdboc kgdboc: PM: calling platform_pm_resume @ 6045, parent: platform
[  674.048130][ T6045] kgdboc kgdboc: PM: platform_pm_resume returned 0 after 0 usecs
[  674.048147][ T6045] i8042 i8042: PM: calling platform_pm_resume @ 6045, parent: platform
[  674.048150][ T6045] i8042 i8042: PM: platform_pm_resume returned 0 after 1 usecs
[  674.048153][ T6045] atkbd serio0: PM: calling serio_resume @ 6045, parent: i8042
[  674.048159][ T6045] atkbd serio0: PM: serio_resume returned 0 after 3 usecs
[  674.048161][ T6045] psmouse serio1: PM: calling serio_resume @ 6045, parent: i8042
[  674.048164][ T6045] psmouse serio1: PM: serio_resume returned 0 after 0 usecs
[  674.048167][ T6045] rtc rtc0: PM: calling rtc_resume @ 6045, parent: 00:04
[  674.048169][ T6045] rtc rtc0: PM: rtc_resume returned 0 after 0 usecs
[  674.048170][ T6045] alarmtimer alarmtimer.0.auto: PM: calling platform_pm_resume @ 6045, parent: rtc0
[  674.048173][ T6045] alarmtimer alarmtimer.0.auto: PM: platform_pm_resume returned 0 after 0 usecs
[  674.048175][ T6045] input input1: PM: calling input_dev_resume @ 6045, parent: serio0
[  674.048177][ T6045] input input1: PM: input_dev_resume returned 0 after 1 usecs
[  674.048186][ T6045] leds input1::numlock: PM: calling led_resume @ 6045, parent: input1
[  674.048188][ T6045] leds input1::numlock: PM: led_resume returned 0 after 0 usecs
[  674.048190][ T6045] input input4: PM: calling input_dev_resume @ 6045, parent: serio1
[  674.048191][ T6045] input input4: PM: input_dev_resume returned 0 after 0 usecs
[  674.048193][ T6045] leds input1::capslock: PM: calling led_resume @ 6045, parent: input1
[  674.048195][ T6045] leds input1::capslock: PM: led_resume returned 0 after 0 usecs
[  674.048199][ T6045] leds input1::scrolllock: PM: calling led_resume @ 6045, parent: input1
[  674.048200][ T6045] leds input1::scrolllock: PM: led_resume returned 0 after 0 usecs
[  674.048203][ T6045] input input3: PM: calling input_dev_resume @ 6045, parent: serio1
[  674.048204][ T6045] input input3: PM: input_dev_resume returned 0 after 0 usecs
[  674.048214][ T6045] input input5: PM: calling input_dev_resume @ 6045, parent: virtio1
[  674.048216][ T6045] input input5: PM: input_dev_resume returned 0 after 0 usecs
[  674.048221][ T6045] platform intel_rapl_msr.0: PM: calling platform_pm_resume @ 6045, parent: platform
[  674.048223][ T6045] platform intel_rapl_msr.0: PM: platform_pm_resume returned 0 after 0 usecs
[  674.049360][ T6099] usb usb2: PM: calling usb_dev_resume @ 6099, parent: 0000:00:04.0
[  674.049949][ T6116] scsi target0:0:0: PM: calling scsi_bus_resume @ 6116, parent: host0
[  674.049953][ T6116] scsi target0:0:0: PM: scsi_bus_resume returned 0 after 0 usecs
[  674.049958][ T6116] sd 0:0:0:0: PM: calling scsi_bus_resume @ 6116, parent: target0:0:0
[  674.049961][ T6116] sd 0:0:0:0: PM: scsi_bus_resume returned 0 after 1 usecs
[  674.049967][ T6116] scsi target0:0:1: PM: calling scsi_bus_resume @ 6116, parent: host0
[  674.049969][ T6116] scsi target0:0:1: PM: scsi_bus_resume returned 0 after 0 usecs
[  674.049974][ T6116] sd 0:0:1:0: PM: calling scsi_bus_resume @ 6116, parent: target0:0:1
[  674.049976][ T6116] sd 0:0:1:0: PM: scsi_bus_resume returned 0 after 0 usecs
[  674.049981][ T6116] usb usb3: PM: calling usb_dev_resume @ 6116, parent: vhci_hcd.0
[  674.050002][ T6116] usb usb3: PM: usb_dev_resume returned 0 after 18 usecs
[  674.050013][ T6117] usb usb4: PM: calling usb_dev_resume @ 6117, parent: vhci_hcd.0
[  674.060033][ T6057] virtio-pci 0000:00:07.0: PM: pci_pm_resume returned 0 after 16922 usecs
[  674.060334][ T6053] qxl 0000:00:02.0: PM: pci_pm_resume returned 0 after 26750 usecs
[  674.071125][ T6117] usb usb4: PM: usb_dev_resume returned 0 after 21110 usecs
[  674.113991][ T6126] usb 4-1: PM: calling usb_dev_resume @ 6126, parent: usb4
[  674.174836][ T6055] usb usb1: PM: usb_dev_resume returned 0 after 126754 usecs
[  674.203283][ T5857] sd 0:0:0:0: [sda] Starting disk
[  674.218823][ T5857] sd 0:0:1:0: [sdb] Starting disk
[  674.254825][ T6099] usb usb2: PM: usb_dev_resume returned 0 after 205459 usecs

[-- Attachment #4: dmesg-faux bus-load.log --]
[-- Type: text/x-log, Size: 215679 bytes --]

[    0.000000] Linux version 6.15.0-rc5+ (root@standardpc) (gcc (Ubuntu 9.3.0-10kylin2) 9.3.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #10 SMP PREEMPT_DYNAMIC Fri Jun 20 13:38:04 CST 2025
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-6.15.0-rc5+ root=UUID=3516f70c-4dd9-4b0f-bac4-c41778d09bbb ro quiet splash console=ttyS0 loglevel=7 initcall_debug no_console_suspend ignore_loglevel crashkernel=512M-:192M audit=0 security=kysec
[    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] 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-0x00000000bffdefff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bffdf000-0x00000000bfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable
[    0.000000] printk: debug: ignoring loglevel setting.
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] SMBIOS 2.8 present.
[    0.000000] DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.14.0-0-g155821a1990b-prebuilt.qemu.org 04/01/2014
[    0.000000] DMI: Memory slots populated: 1/1
[    0.000000] Hypervisor detected: KVM
[    0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[    0.000001] kvm-clock: using sched offset of 12043223747295 cycles
[    0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    0.000005] tsc: Detected 2803.200 MHz processor
[    0.000577] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000579] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000583] last_pfn = 0x240000 max_arch_pfn = 0x400000000
[    0.000618] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs
[    0.000621] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000664] last_pfn = 0xbffdf max_arch_pfn = 0x400000000
[    0.007049] found SMP MP-table at [mem 0x000f5a40-0x000f5a4f]
[    0.007062] Using GB pages for direct mapping
[    0.007120] RAMDISK: [mem 0x2f169000-0x338abfff]
[    0.007123] ACPI: Early table checksum verification disabled
[    0.007127] ACPI: RSDP 0x00000000000F5A00 000014 (v00 BOCHS )
[    0.007130] ACPI: RSDT 0x00000000BFFE1639 000030 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.007135] ACPI: FACP 0x00000000BFFE150D 000074 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.007143] ACPI: DSDT 0x00000000BFFDFD80 00178D (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.007146] ACPI: FACS 0x00000000BFFDFD40 000040
[    0.007149] ACPI: APIC 0x00000000BFFE1581 000090 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.007151] ACPI: WAET 0x00000000BFFE1611 000028 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.007153] ACPI: Reserving FACP table memory at [mem 0xbffe150d-0xbffe1580]
[    0.007154] ACPI: Reserving DSDT table memory at [mem 0xbffdfd80-0xbffe150c]
[    0.007154] ACPI: Reserving FACS table memory at [mem 0xbffdfd40-0xbffdfd7f]
[    0.007155] ACPI: Reserving APIC table memory at [mem 0xbffe1581-0xbffe1610]
[    0.007155] ACPI: Reserving WAET table memory at [mem 0xbffe1611-0xbffe1638]
[    0.007384] No NUMA configuration found
[    0.007384] Faking a node at [mem 0x0000000000000000-0x000000023fffffff]
[    0.007390] NODE_DATA(0) allocated [mem 0x23ffd59c0-0x23fffffff]
[    0.007571] crashkernel reserved: 0x00000000b3000000 - 0x00000000bf000000 (192 MB)
[    0.007584] Zone ranges:
[    0.007584]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.007586]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.007587]   Normal   [mem 0x0000000100000000-0x000000023fffffff]
[    0.007588]   Device   empty
[    0.007588] Movable zone start for each node
[    0.007589] Early memory node ranges
[    0.007590]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.007591]   node   0: [mem 0x0000000000100000-0x00000000bffdefff]
[    0.007591]   node   0: [mem 0x0000000100000000-0x000000023fffffff]
[    0.007592] Initmem setup node 0 [mem 0x0000000000001000-0x000000023fffffff]
[    0.007598] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.007616] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.019169] On node 0, zone Normal: 33 pages in unavailable ranges
[    0.019497] ACPI: PM-Timer IO Port: 0x608
[    0.019514] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[    0.019547] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
[    0.019550] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.019551] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
[    0.019552] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.019553] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
[    0.019554] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
[    0.019557] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.019559] TSC deadline timer available
[    0.019562] CPU topo: Max. logical packages:   4
[    0.019562] CPU topo: Max. logical dies:       4
[    0.019563] CPU topo: Max. dies per package:   1
[    0.019565] CPU topo: Max. threads per core:   1
[    0.019566] CPU topo: Num. cores per package:     1
[    0.019566] CPU topo: Num. threads per package:   1
[    0.019566] CPU topo: Allowing 4 present CPUs plus 0 hotplug CPUs
[    0.019586] kvm-guest: APIC: eoi() replaced with kvm_guest_apic_eoi_write()
[    0.019599] kvm-guest: KVM setup pv remote TLB flush
[    0.019603] kvm-guest: setup PV sched yield
[    0.019609] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.019610] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[    0.019610] PM: hibernation: Registered nosave memory: [mem 0xbffdf000-0xffffffff]
[    0.019612] [mem 0xc0000000-0xfeffbfff] available for PCI devices
[    0.019613] Booting paravirtualized kernel on KVM
[    0.019615] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.019620] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.019840] percpu: Embedded 61 pages/cpu s212992 r8192 d28672 u524288
[    0.019844] pcpu-alloc: s212992 r8192 d28672 u524288 alloc=1*2097152
[    0.019845] pcpu-alloc: [0] 0 1 2 3 
[    0.019873] kvm-guest: PV spinlocks enabled
[    0.019875] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear)
[    0.019877] Kernel command line: BOOT_IMAGE=/vmlinuz-6.15.0-rc5+ root=UUID=3516f70c-4dd9-4b0f-bac4-c41778d09bbb ro quiet splash console=ttyS0 loglevel=7 initcall_debug no_console_suspend ignore_loglevel crashkernel=512M-:192M audit=0 security=kysec
[    0.019986] audit: disabled (until reboot)
[    0.019996] Unknown kernel command line parameters "splash BOOT_IMAGE=/vmlinuz-6.15.0-rc5+", will be passed to user space.
[    0.020009] random: crng init done
[    0.020009] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    0.020641] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.021006] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.021080] software IO TLB: area num 4.
[    0.032725] Fallback order for Node 0: 0 
[    0.032730] Built 1 zonelists, mobility grouping on.  Total pages: 2097021
[    0.032731] Policy zone: Normal
[    0.032732] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.044391] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.051409] ftrace: allocating 54134 entries in 212 pages
[    0.051412] ftrace: allocated 212 pages with 4 groups
[    0.052306] Dynamic Preempt: voluntary
[    0.052343] rcu: Preemptible hierarchical RCU implementation.
[    0.052344] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[    0.052345] 	Trampoline variant of Tasks RCU enabled.
[    0.052345] 	Rude variant of Tasks RCU enabled.
[    0.052345] 	Tracing variant of Tasks RCU enabled.
[    0.052346] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.052346] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.052350] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.052352] RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.052353] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.055117] NR_IRQS: 524544, nr_irqs: 456, preallocated irqs: 16
[    0.055352] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.055404] calling  con_init+0x0/0x270 @ 0
[    0.055416] Console: colour dummy device 80x25
[    0.055418] initcall con_init+0x0/0x270 returned 0 after 0 usecs
[    0.055419] calling  hvc_console_init+0x0/0x30 @ 0
[    0.055421] initcall hvc_console_init+0x0/0x30 returned 0 after 0 usecs
[    0.055422] calling  xen_cons_init+0x0/0x60 @ 0
[    0.055425] initcall xen_cons_init+0x0/0x60 returned 0 after 0 usecs
[    0.055427] calling  univ8250_console_init+0x0/0x40 @ 0
[    0.055466] printk: legacy console [ttyS0] enabled
[    0.129064] initcall univ8250_console_init+0x0/0x40 returned 0 after 0 usecs
[    0.129739] calling  kgdboc_earlycon_late_init+0x0/0x40 @ 0
[    0.130283] initcall kgdboc_earlycon_late_init+0x0/0x40 returned 0 after 0 usecs
[    0.131021] ACPI: Core revision 20240827
[    0.131779] APIC: Switch to symmetric I/O mode setup
[    0.132458] x2apic enabled
[    0.132984] APIC: Switched APIC routing to: physical x2apic
[    0.133537] kvm-guest: APIC: send_IPI_mask() replaced with kvm_send_ipi_mask()
[    0.134230] kvm-guest: APIC: send_IPI_mask_allbutself() replaced with kvm_send_ipi_mask_allbutself()
[    0.135078] kvm-guest: setup PV IPIs
[    0.136159] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x28680fa287f, max_idle_ns: 440795281151 ns
[    0.137144] Calibrating delay loop (skipped) preset value.. 5606.40 BogoMIPS (lpj=11212800)
[    0.138073] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.138787] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.139323] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.139909] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.140718] Spectre V2 : Spectre BHI mitigation: SW BHB clearing on syscall and VM exit
[    0.141140] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[    0.141140] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[    0.141140] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.141140] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.141140] GDS: Unknown: Dependent on hypervisor status
[    0.141140] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.141140] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.141140] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.141140] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    0.141140] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.141140] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    0.141140] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.141140] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.141140] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
[    0.141140] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    0.141140] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    0.141140] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    0.141140] x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
[    0.141140] Freeing SMP alternatives memory: 44K
[    0.141140] pid_max: default: 32768 minimum: 301
[    0.141140] LSM: initializing lsm=capability,ima,evm
[    0.141140] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.141140] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.141140] smpboot: CPU0: 11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz (family: 0x6, model: 0x8c, stepping: 0x1)
[    0.141140] calling  init_hw_perf_events+0x0/0x720 @ 1
[    0.141140] Performance Events: Icelake events, full-width counters, Intel PMU driver.
[    0.141140] ... version:                2
[    0.141140] ... bit width:              48
[    0.141140] ... generic registers:      8
[    0.141140] ... value mask:             0000ffffffffffff
[    0.141145] ... max period:             00007fffffffffff
[    0.141612] ... fixed-purpose events:   3
[    0.141984] ... event mask:             00000007000000ff
[    0.142527] initcall init_hw_perf_events+0x0/0x720 returned 0 after 4000 usecs
[    0.143154] calling  mc_debug_enable+0x0/0xa0 @ 1
[    0.143586] initcall mc_debug_enable+0x0/0xa0 returned 0 after 0 usecs
[    0.144158] calling  do_init_real_mode+0x0/0x20 @ 1
[    0.144631] initcall do_init_real_mode+0x0/0x20 returned 0 after 0 usecs
[    0.145143] calling  init_sigframe_size+0x0/0x50 @ 1
[    0.145596] signal: max sigframe size: 3632
[    0.145991] initcall init_sigframe_size+0x0/0x50 returned 0 after 0 usecs
[    0.146599] calling  trace_init_perf_perm_irq_work_exit+0x0/0x20 @ 1
[    0.147160] initcall trace_init_perf_perm_irq_work_exit+0x0/0x20 returned 0 after 0 usecs
[    0.147863] calling  cache_ap_register+0x0/0x70 @ 1
[    0.148312] initcall cache_ap_register+0x0/0x70 returned 0 after 0 usecs
[    0.148899] calling  bp_init_aperfmperf+0x0/0x2c0 @ 1
[    0.149142] initcall bp_init_aperfmperf+0x0/0x2c0 returned 0 after 0 usecs
[    0.149744] calling  save_builtin_microcode+0x0/0xe0 @ 1
[    0.150223] initcall save_builtin_microcode+0x0/0xe0 returned 0 after 0 usecs
[    0.150840] calling  save_microcode_in_initrd+0x0/0x110 @ 1
[    0.151336] initcall save_microcode_in_initrd+0x0/0x110 returned 0 after 0 usecs
[    0.151973] calling  register_nmi_cpu_backtrace_handler+0x0/0x30 @ 1
[    0.152534] initcall register_nmi_cpu_backtrace_handler+0x0/0x30 returned 0 after 0 usecs
[    0.153141] calling  numachip_system_init+0x0/0x80 @ 1
[    0.153609] initcall numachip_system_init+0x0/0x80 returned 0 after 0 usecs
[    0.154666] calling  kvm_setup_vsyscall_timeinfo+0x0/0x190 @ 1
[    0.155190] initcall kvm_setup_vsyscall_timeinfo+0x0/0x190 returned 0 after 0 usecs
[    0.155855] calling  spawn_ksoftirqd+0x0/0x60 @ 1
[    0.157146] initcall spawn_ksoftirqd+0x0/0x60 returned 0 after 4000 usecs
[    0.157743] calling  init_signal_sysctls+0x0/0x40 @ 1
[    0.158209] initcall init_signal_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.158811] calling  init_umh_sysctls+0x0/0x40 @ 1
[    0.159258] initcall init_umh_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.159840] calling  kthreads_init+0x0/0x40 @ 1
[    0.160264] initcall kthreads_init+0x0/0x40 returned 0 after 0 usecs
[    0.160825] calling  migration_init+0x0/0x40 @ 1
[    0.161142] initcall migration_init+0x0/0x40 returned 0 after 0 usecs
[    0.161716] calling  printk_set_kthreads_ready+0x0/0x50 @ 1
[    0.162226] initcall printk_set_kthreads_ready+0x0/0x50 returned 0 after 0 usecs
[    0.162870] calling  srcu_bootup_announce+0x0/0x90 @ 1
[    0.163336] rcu: Hierarchical SRCU implementation.
[    0.163772] rcu: 	Max phase no-delay instances is 1000.
[    0.164242] initcall srcu_bootup_announce+0x0/0x90 returned 0 after 0 usecs
[    0.164852] calling  rcu_spawn_gp_kthread+0x0/0x260 @ 1
[    0.169171] initcall rcu_spawn_gp_kthread+0x0/0x260 returned 0 after 4000 usecs
[    0.169819] calling  check_cpu_stall_init+0x0/0x30 @ 1
[    0.170286] initcall check_cpu_stall_init+0x0/0x30 returned 0 after 0 usecs
[    0.170894] calling  rcu_sysrq_init+0x0/0x40 @ 1
[    0.171318] initcall rcu_sysrq_init+0x0/0x40 returned 0 after 0 usecs
[    0.171882] calling  trace_init_flags_sys_enter+0x0/0x20 @ 1
[    0.172385] initcall trace_init_flags_sys_enter+0x0/0x20 returned 0 after 0 usecs
[    0.173035] calling  trace_init_flags_sys_exit+0x0/0x20 @ 1
[    0.173145] initcall trace_init_flags_sys_exit+0x0/0x20 returned 0 after 0 usecs
[    0.173787] calling  tmigr_init+0x0/0x190 @ 1
[    0.174195] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[    0.174888] initcall tmigr_init+0x0/0x190 returned 0 after 0 usecs
[    0.175430] calling  cpu_stop_init+0x0/0xa0 @ 1
[    0.177147] initcall cpu_stop_init+0x0/0xa0 returned 0 after 4000 usecs
[    0.177734] calling  init_kprobes+0x0/0x1e0 @ 1
[    0.178254] initcall init_kprobes+0x0/0x1e0 returned 0 after 0 usecs
[    0.178814] calling  init_trace_printk+0x0/0x20 @ 1
[    0.179259] initcall init_trace_printk+0x0/0x20 returned 0 after 0 usecs
[    0.179843] calling  event_trace_enable_again+0x0/0x60 @ 1
[    0.180332] initcall event_trace_enable_again+0x0/0x60 returned 0 after 0 usecs
[    0.180962] calling  irq_work_init_threads+0x0/0x10 @ 1
[    0.181142] initcall irq_work_init_threads+0x0/0x10 returned 0 after 0 usecs
[    0.181663] calling  static_call_init+0x0/0xe0 @ 1
[    0.182034] initcall static_call_init+0x0/0xe0 returned 0 after 0 usecs
[    0.182527] calling  jump_label_init_module+0x0/0x20 @ 1
[    0.183346] initcall jump_label_init_module+0x0/0x20 returned 0 after 0 usecs
[    0.183878] calling  init_zero_pfn+0x0/0x50 @ 1
[    0.184235] initcall init_zero_pfn+0x0/0x50 returned 0 after 0 usecs
[    0.184711] calling  init_fs_inode_sysctls+0x0/0x40 @ 1
[    0.185121] initcall init_fs_inode_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.185142] calling  init_fs_locks_sysctls+0x0/0x40 @ 1
[    0.185546] initcall init_fs_locks_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.186071] calling  init_fs_sysctls+0x0/0x40 @ 1
[    0.186440] initcall init_fs_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.186931] calling  init_security_keys_sysctls+0x0/0x40 @ 1
[    0.187365] initcall init_security_keys_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.187916] calling  dynamic_debug_init+0x0/0x2b0 @ 1
[    0.188378] initcall dynamic_debug_init+0x0/0x2b0 returned 0 after 0 usecs
[    0.188908] calling  unpopulated_init+0x0/0x70 @ 1
[    0.189142] initcall unpopulated_init+0x0/0x70 returned -19 after 0 usecs
[    0.189732] calling  efi_memreserve_root_init+0x0/0x40 @ 1
[    0.190225] initcall efi_memreserve_root_init+0x0/0x40 returned 0 after 0 usecs
[    0.190858] calling  efi_earlycon_remap_fb+0x0/0x70 @ 1
[    0.191327] initcall efi_earlycon_remap_fb+0x0/0x70 returned 0 after 0 usecs
[    0.191938] calling  idle_inject_init+0x0/0x20 @ 1
[    0.193144] initcall idle_inject_init+0x0/0x20 returned 0 after 4000 usecs
[    0.197150] smp: Bringing up secondary CPUs ...
[    0.197897] smpboot: x86: Booting SMP configuration:
[    0.198354] .... node  #0, CPUs:      #1 #2 #3
[    0.229342] smp: Brought up 1 node, 4 CPUs
[    0.230132] smpboot: Total of 4 processors activated (22425.60 BogoMIPS)
[    0.230960] Memory: 7856812K/8388084K available (17883K kernel code, 5975K rwdata, 7752K rodata, 4692K init, 5544K bss, 524120K reserved, 0K cma-reserved)
[    0.230960] devtmpfs: initialized
[    0.230960] x86/mm: Memory block size: 128MB
[    0.233837] calling  setup_split_lock_delayed_work+0x0/0xa0 @ 1
[    0.234318] initcall setup_split_lock_delayed_work+0x0/0xa0 returned 0 after 0 usecs
[    0.234999] calling  bpf_jit_charge_init+0x0/0x50 @ 1
[    0.235462] initcall bpf_jit_charge_init+0x0/0x50 returned 0 after 0 usecs
[    0.236065] calling  ipc_ns_init+0x0/0x50 @ 1
[    0.236472] initcall ipc_ns_init+0x0/0x50 returned 0 after 0 usecs
[    0.237026] calling  init_mmap_min_addr+0x0/0x50 @ 1
[    0.237146] initcall init_mmap_min_addr+0x0/0x50 returned 0 after 0 usecs
[    0.237750] calling  pci_realloc_setup_params+0x0/0x90 @ 1
[    0.238259] initcall pci_realloc_setup_params+0x0/0x90 returned 0 after 0 usecs
[    0.238903] calling  inet_frag_wq_init+0x0/0x50 @ 1
[    0.239396] initcall inet_frag_wq_init+0x0/0x50 returned 0 after 0 usecs
[    0.239396] calling  xen_pvh_gnttab_setup+0x0/0x50 @ 1
[    0.239396] initcall xen_pvh_gnttab_setup+0x0/0x50 returned -19 after 0 usecs
[    0.241142] calling  e820__register_nvs_regions+0x0/0x70 @ 1
[    0.241651] initcall e820__register_nvs_regions+0x0/0x70 returned 0 after 0 usecs
[    0.242305] calling  cpufreq_register_tsc_scaling+0x0/0x40 @ 1
[    0.242827] initcall cpufreq_register_tsc_scaling+0x0/0x40 returned 0 after 0 usecs
[    0.243502] calling  reboot_init+0x0/0x60 @ 1
[    0.243911] initcall reboot_init+0x0/0x60 returned 0 after 0 usecs
[    0.244457] calling  init_lapic_sysfs+0x0/0x40 @ 1
[    0.244894] initcall init_lapic_sysfs+0x0/0x40 returned 0 after 0 usecs
[    0.245143] calling  alloc_frozen_cpus+0x0/0x30 @ 1
[    0.245591] initcall alloc_frozen_cpus+0x0/0x30 returned 0 after 0 usecs
[    0.246185] calling  cpu_hotplug_pm_sync_init+0x0/0x30 @ 1
[    0.246681] initcall cpu_hotplug_pm_sync_init+0x0/0x30 returned 0 after 0 usecs
[    0.247320] calling  wq_sysfs_init+0x0/0x30 @ 1
[    0.247761] initcall wq_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[    0.248329] calling  ksysfs_init+0x0/0xd0 @ 1
[    0.248745] initcall ksysfs_init+0x0/0xd0 returned 0 after 0 usecs
[    0.249142] calling  schedutil_gov_init+0x0/0x20 @ 1
[    0.249604] initcall schedutil_gov_init+0x0/0x20 returned 0 after 0 usecs
[    0.250203] calling  pm_init+0x0/0x90 @ 1
[    0.250595] initcall pm_init+0x0/0x90 returned 0 after 0 usecs
[    0.251118] calling  pm_disk_init+0x0/0x30 @ 1
[    0.251535] initcall pm_disk_init+0x0/0x30 returned 0 after 0 usecs
[    0.252359] calling  swsusp_header_init+0x0/0x40 @ 1
[    0.252744] initcall swsusp_header_init+0x0/0x40 returned 0 after 0 usecs
[    0.253143] calling  rcu_set_runtime_mode+0x0/0x30 @ 1
[    0.253549] initcall rcu_set_runtime_mode+0x0/0x30 returned 0 after 0 usecs
[    0.254062] calling  rcu_init_tasks_generic+0x0/0x100 @ 1
[    0.254547] initcall rcu_init_tasks_generic+0x0/0x100 returned 0 after 0 usecs
[    0.254547] calling  init_jiffies_clocksource+0x0/0x30 @ 1
[    0.254547] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.254822] initcall init_jiffies_clocksource+0x0/0x30 returned 0 after 0 usecs
[    0.255366] calling  posixtimer_init+0x0/0xd0 @ 1
[    0.257145] posixtimers hash table entries: 2048 (order: 3, 32768 bytes, linear)
[    0.257724] initcall posixtimer_init+0x0/0xd0 returned 0 after 0 usecs
[    0.258211] calling  futex_init+0x0/0xe0 @ 1
[    0.258550] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.259084] initcall futex_init+0x0/0xe0 returned 0 after 0 usecs
[    0.259570] calling  cgroup_wq_init+0x0/0x40 @ 1
[    0.259979] initcall cgroup_wq_init+0x0/0x40 returned 0 after 0 usecs
[    0.260461] calling  cgroup1_wq_init+0x0/0x40 @ 1
[    0.260844] initcall cgroup1_wq_init+0x0/0x40 returned 0 after 0 usecs
[    0.261142] calling  ftrace_mod_cmd_init+0x0/0x20 @ 1
[    0.261607] initcall ftrace_mod_cmd_init+0x0/0x20 returned 0 after 0 usecs
[    0.262209] calling  init_wakeup_tracer+0x0/0x40 @ 1
[    0.262618] initcall init_wakeup_tracer+0x0/0x40 returned 0 after 0 usecs
[    0.263125] calling  init_graph_trace+0x0/0x70 @ 1
[    0.263498] initcall init_graph_trace+0x0/0x70 returned 0 after 0 usecs
[    0.264001] calling  trace_events_eprobe_init_early+0x0/0x40 @ 1
[    0.264460] initcall trace_events_eprobe_init_early+0x0/0x40 returned 0 after 0 usecs
[    0.265039] calling  trace_events_synth_init_early+0x0/0x40 @ 1
[    0.265142] initcall trace_events_synth_init_early+0x0/0x40 returned 0 after 0 usecs
[    0.265715] calling  init_kprobe_trace_early+0x0/0x40 @ 1
[    0.266130] initcall init_kprobe_trace_early+0x0/0x40 returned 0 after 0 usecs
[    0.266668] calling  bpf_offload_init+0x0/0x30 @ 1
[    0.267044] initcall bpf_offload_init+0x0/0x30 returned 0 after 0 usecs
[    0.267547] calling  cgroup_bpf_wq_init+0x0/0x40 @ 1
[    0.267933] initcall cgroup_bpf_wq_init+0x0/0x40 returned 0 after 0 usecs
[    0.268441] calling  init_events_core_sysctls+0x0/0x40 @ 1
[    0.268871] initcall init_events_core_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.269142] calling  init_callchain_sysctls+0x0/0x40 @ 1
[    0.269551] initcall init_callchain_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.270081] calling  memory_failure_init+0x0/0xd0 @ 1
[    0.270528] initcall memory_failure_init+0x0/0xd0 returned 0 after 0 usecs
[    0.271106] calling  cma_init_reserved_areas+0x0/0x280 @ 1
[    0.271529] initcall cma_init_reserved_areas+0x0/0x280 returned 0 after 0 usecs
[    0.272076] calling  fsnotify_init+0x0/0xa0 @ 1
[    0.272503] initcall fsnotify_init+0x0/0xa0 returned 0 after 0 usecs
[    0.273062] calling  filelock_init+0x0/0x160 @ 1
[    0.273146] initcall filelock_init+0x0/0x160 returned 0 after 0 usecs
[    0.273718] calling  init_script_binfmt+0x0/0x30 @ 1
[    0.274173] initcall init_script_binfmt+0x0/0x30 returned 0 after 0 usecs
[    0.274747] calling  init_elf_binfmt+0x0/0x30 @ 1
[    0.275114] initcall init_elf_binfmt+0x0/0x30 returned 0 after 0 usecs
[    0.275669] calling  init_compat_elf_binfmt+0x0/0x30 @ 1
[    0.276152] initcall init_compat_elf_binfmt+0x0/0x30 returned 0 after 0 usecs
[    0.276771] calling  configfs_init+0x0/0x100 @ 1
[    0.277147] initcall configfs_init+0x0/0x100 returned 0 after 0 usecs
[    0.277710] calling  debugfs_init+0x0/0x110 @ 1
[    0.278126] initcall debugfs_init+0x0/0x110 returned 0 after 0 usecs
[    0.278691] calling  tracefs_init+0x0/0xc0 @ 1
[    0.279103] initcall tracefs_init+0x0/0xc0 returned 0 after 0 usecs
[    0.279655] calling  securityfs_init+0x0/0x90 @ 1
[    0.280403] initcall securityfs_init+0x0/0x90 returned 0 after 0 usecs
[    0.280982] calling  pinctrl_init+0x0/0xd0 @ 1
[    0.281142] pinctrl core: initialized pinctrl subsystem
[    0.281626] initcall pinctrl_init+0x0/0xd0 returned 0 after 0 usecs
[    0.282109] calling  gpiolib_dev_init+0x0/0x170 @ 1
[    0.282512] initcall gpiolib_dev_init+0x0/0x170 returned 0 after 0 usecs
[    0.283015] calling  virtio_init+0x0/0x40 @ 1
[    0.283392] initcall virtio_init+0x0/0x40 returned 0 after 0 usecs
[    0.283878] calling  regulator_init+0x0/0xc0 @ 1
[    0.284304] probe of reg-dummy returned 0 after 0 usecs
[    0.284713] initcall regulator_init+0x0/0xc0 returned 0 after 0 usecs
[    0.285142] calling  iommu_init+0x0/0x40 @ 1
[    0.285485] initcall iommu_init+0x0/0x40 returned 0 after 0 usecs
[    0.285946] calling  component_debug_init+0x0/0x30 @ 1
[    0.286352] initcall component_debug_init+0x0/0x30 returned 0 after 0 usecs
[    0.286873] calling  early_resume_init+0x0/0xe0 @ 1
[    0.287289] PM: RTC time: 05:32:45, date: 2025-06-23
[    0.287672] initcall early_resume_init+0x0/0xe0 returned 0 after 0 usecs
[    0.288178] calling  opp_debug_init+0x0/0x30 @ 1
[    0.288543] initcall opp_debug_init+0x0/0x30 returned 0 after 0 usecs
[    0.289029] calling  cpufreq_core_init+0x0/0x110 @ 1
[    0.289145] initcall cpufreq_core_init+0x0/0x110 returned 0 after 0 usecs
[    0.289655] calling  cpufreq_gov_performance_init+0x0/0x20 @ 1
[    0.290107] initcall cpufreq_gov_performance_init+0x0/0x20 returned 0 after 0 usecs
[    0.290679] calling  cpufreq_gov_powersave_init+0x0/0x20 @ 1
[    0.291126] initcall cpufreq_gov_powersave_init+0x0/0x20 returned 0 after 0 usecs
[    0.291686] calling  cpufreq_gov_userspace_init+0x0/0x20 @ 1
[    0.292116] initcall cpufreq_gov_userspace_init+0x0/0x20 returned 0 after 0 usecs
[    0.292669] calling  CPU_FREQ_GOV_ONDEMAND_init+0x0/0x20 @ 1
[    0.293143] initcall CPU_FREQ_GOV_ONDEMAND_init+0x0/0x20 returned 0 after 0 usecs
[    0.293701] calling  CPU_FREQ_GOV_CONSERVATIVE_init+0x0/0x20 @ 1
[    0.294161] initcall CPU_FREQ_GOV_CONSERVATIVE_init+0x0/0x20 returned 0 after 0 usecs
[    0.294743] calling  cpuidle_init+0x0/0x30 @ 1
[    0.295137] initcall cpuidle_init+0x0/0x30 returned 0 after 0 usecs
[    0.295694] calling  capsule_reboot_register+0x0/0x20 @ 1
[    0.296182] initcall capsule_reboot_register+0x0/0x20 returned 0 after 0 usecs
[    0.296805] calling  unaccepted_memory_init_kdump+0x0/0x30 @ 1
[    0.297143] initcall unaccepted_memory_init_kdump+0x0/0x30 returned 0 after 0 usecs
[    0.297749] calling  sock_init+0x0/0x100 @ 1
[    0.300281] initcall sock_init+0x0/0x100 returned 0 after 0 usecs
[    0.300757] calling  net_inuse_init+0x0/0x40 @ 1
[    0.301123] initcall net_inuse_init+0x0/0x40 returned 0 after 0 usecs
[    0.301143] calling  sock_struct_check+0x0/0x20 @ 1
[    0.301527] initcall sock_struct_check+0x0/0x20 returned 0 after 0 usecs
[    0.302026] calling  init_default_flow_dissectors+0x0/0x60 @ 1
[    0.302462] initcall init_default_flow_dissectors+0x0/0x60 returned 0 after 0 usecs
[    0.303058] calling  netlink_proto_init+0x0/0x170 @ 1
[    0.303542] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.304078] initcall netlink_proto_init+0x0/0x170 returned 0 after 0 usecs
[    0.304680] calling  genl_init+0x0/0x50 @ 1
[    0.305074] initcall genl_init+0x0/0x50 returned 0 after 0 usecs
[    0.305142] calling  bsp_pm_check_init+0x0/0x30 @ 1
[    0.305526] initcall bsp_pm_check_init+0x0/0x30 returned 0 after 0 usecs
[    0.306029] calling  __gnttab_init+0x0/0x50 @ 1
[    0.306389] initcall __gnttab_init+0x0/0x50 returned -19 after 0 usecs
[    0.306923] calling  irq_sysfs_init+0x0/0xc0 @ 1
[    0.307345] initcall irq_sysfs_init+0x0/0xc0 returned 0 after 0 usecs
[    0.307831] calling  dma_atomic_pool_init+0x0/0x170 @ 1
[    0.308241] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[    0.309131] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.309145] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.309742] initcall dma_atomic_pool_init+0x0/0x170 returned 0 after 4000 usecs
[    0.310358] calling  audit_init+0x0/0x1d0 @ 1
[    0.310763] initcall audit_init+0x0/0x1d0 returned 0 after 0 usecs
[    0.311305] calling  bdi_class_init+0x0/0x50 @ 1
[    0.311735] initcall bdi_class_init+0x0/0x50 returned 0 after 0 usecs
[    0.312302] calling  mm_sysfs_init+0x0/0x40 @ 1
[    0.312724] initcall mm_sysfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.313142] calling  init_per_zone_wmark_min+0x0/0x40 @ 1
[    0.313632] initcall init_per_zone_wmark_min+0x0/0x40 returned 0 after 0 usecs
[    0.314267] calling  gpiolib_sysfs_init+0x0/0x40 @ 1
[    0.314700] initcall gpiolib_sysfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.315215] calling  acpi_gpio_setup_params+0x0/0xe0 @ 1
[    0.315656] initcall acpi_gpio_setup_params+0x0/0xe0 returned 0 after 0 usecs
[    0.316270] calling  pcibus_class_init+0x0/0x20 @ 1
[    0.316650] initcall pcibus_class_init+0x0/0x20 returned 0 after 0 usecs
[    0.317142] calling  pci_driver_init+0x0/0x40 @ 1
[    0.317517] initcall pci_driver_init+0x0/0x40 returned 0 after 0 usecs
[    0.318013] calling  rio_bus_init+0x0/0x50 @ 1
[    0.318371] initcall rio_bus_init+0x0/0x50 returned 0 after 0 usecs
[    0.318895] calling  backlight_class_init+0x0/0x80 @ 1
[    0.319349] initcall backlight_class_init+0x0/0x80 returned 0 after 0 usecs
[    0.319877] calling  xenbus_init+0x0/0x680 @ 1
[    0.320240] initcall xenbus_init+0x0/0x680 returned -19 after 0 usecs
[    0.320728] calling  tty_class_init+0x0/0x20 @ 1
[    0.321094] initcall tty_class_init+0x0/0x20 returned 0 after 0 usecs
[    0.321142] calling  vtconsole_class_init+0x0/0xc0 @ 1
[    0.321559] initcall vtconsole_class_init+0x0/0xc0 returned 0 after 0 usecs
[    0.322095] calling  serdev_init+0x0/0x30 @ 1
[    0.322442] initcall serdev_init+0x0/0x30 returned 0 after 0 usecs
[    0.322909] calling  iommu_dev_init+0x0/0x20 @ 1
[    0.323275] initcall iommu_dev_init+0x0/0x20 returned 0 after 0 usecs
[    0.323762] calling  mipi_dsi_bus_init+0x0/0x20 @ 1
[    0.324152] initcall mipi_dsi_bus_init+0x0/0x20 returned 0 after 0 usecs
[    0.324657] calling  devlink_class_init+0x0/0x50 @ 1
[    0.325052] initcall devlink_class_init+0x0/0x50 returned 0 after 0 usecs
[    0.325142] calling  software_node_init+0x0/0x40 @ 1
[    0.325528] initcall software_node_init+0x0/0x40 returned 0 after 0 usecs
[    0.326032] calling  wakeup_sources_debugfs_init+0x0/0x40 @ 1
[    0.326470] initcall wakeup_sources_debugfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.327027] calling  wakeup_sources_sysfs_init+0x0/0x40 @ 1
[    0.327459] initcall wakeup_sources_sysfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.328007] calling  isa_bus_init+0x0/0x50 @ 1
[    0.328367] initcall isa_bus_init+0x0/0x50 returned 0 after 0 usecs
[    0.328846] calling  regmap_initcall+0x0/0x20 @ 1
[    0.329143] initcall regmap_initcall+0x0/0x20 returned 0 after 0 usecs
[    0.329630] calling  sram_init+0x0/0x30 @ 1
[    0.329966] initcall sram_init+0x0/0x30 returned 0 after 0 usecs
[    0.330422] calling  spi_init+0x0/0xd0 @ 1
[    0.330754] initcall spi_init+0x0/0xd0 returned 0 after 0 usecs
[    0.331203] calling  i2c_init+0x0/0xc0 @ 1
[    0.331543] initcall i2c_init+0x0/0xc0 returned 0 after 0 usecs
[    0.331990] calling  thermal_init+0x0/0x180 @ 1
[    0.332366] thermal_sys: Registered thermal governor 'fair_share'
[    0.332367] thermal_sys: Registered thermal governor 'bang_bang'
[    0.332834] thermal_sys: Registered thermal governor 'step_wise'
[    0.333142] thermal_sys: Registered thermal governor 'user_space'
[    0.333590] initcall thermal_init+0x0/0x180 returned 0 after 4000 usecs
[    0.334533] calling  init_ladder+0x0/0x40 @ 1
[    0.334890] cpuidle: using governor ladder
[    0.335221] initcall init_ladder+0x0/0x40 returned 0 after 0 usecs
[    0.335685] calling  init_menu+0x0/0x20 @ 1
[    0.336019] cpuidle: using governor menu
[    0.336335] initcall init_menu+0x0/0x20 returned 0 after 0 usecs
[    0.337132] calling  teo_governor_init+0x0/0x20 @ 1
[    0.337143] initcall teo_governor_init+0x0/0x20 returned 0 after 0 usecs
[    0.337646] calling  init_haltpoll+0x0/0x40 @ 1
[    0.338007] initcall init_haltpoll+0x0/0x40 returned 0 after 0 usecs
[    0.338504] calling  pcc_init+0x0/0xb0 @ 1
[    0.338843] initcall pcc_init+0x0/0xb0 returned -19 after 0 usecs
[    0.339313] calling  amd_postcore_init+0x0/0x130 @ 1
[    0.339707] initcall amd_postcore_init+0x0/0x130 returned 0 after 0 usecs
[    0.340231] calling  kobject_uevent_init+0x0/0x20 @ 1
[    0.340625] initcall kobject_uevent_init+0x0/0x20 returned 0 after 0 usecs
[    0.341186] calling  report_snp_info+0x0/0xe0 @ 1
[    0.341562] initcall report_snp_info+0x0/0xe0 returned 0 after 0 usecs
[    0.342055] calling  sev_sysfs_init+0x0/0xa0 @ 1
[    0.342417] initcall sev_sysfs_init+0x0/0xa0 returned -19 after 0 usecs
[    0.342921] calling  bts_init+0x0/0x100 @ 1
[    0.343258] initcall bts_init+0x0/0x100 returned -19 after 0 usecs
[    0.343726] calling  pt_init+0x0/0x3b0 @ 1
[    0.344056] initcall pt_init+0x0/0x3b0 returned -19 after 0 usecs
[    0.344521] calling  init_x86_sysctl+0x0/0x40 @ 1
[    0.344893] initcall init_x86_sysctl+0x0/0x40 returned 0 after 0 usecs
[    0.345142] calling  boot_params_ksysfs_init+0x0/0x320 @ 1
[    0.345568] initcall boot_params_ksysfs_init+0x0/0x320 returned 0 after 0 usecs
[    0.346114] calling  sbf_init+0x0/0xf0 @ 1
[    0.346442] initcall sbf_init+0x0/0xf0 returned 0 after 0 usecs
[    0.346889] calling  arch_kdebugfs_init+0x0/0x30 @ 1
[    0.347277] initcall arch_kdebugfs_init+0x0/0x30 returned 0 after 0 usecs
[    0.347782] calling  xfd_update_static_branch+0x0/0x40 @ 1
[    0.348207] initcall xfd_update_static_branch+0x0/0x40 returned 0 after 0 usecs
[    0.348755] calling  mtrr_if_init+0x0/0x70 @ 1
[    0.349112] initcall mtrr_if_init+0x0/0x70 returned 0 after 0 usecs
[    0.349142] calling  activate_jump_labels+0x0/0x50 @ 1
[    0.349544] initcall activate_jump_labels+0x0/0x50 returned 0 after 0 usecs
[    0.350074] calling  init_s4_sigcheck+0x0/0x40 @ 1
[    0.350453] initcall init_s4_sigcheck+0x0/0x40 returned 0 after 0 usecs
[    0.350955] calling  ffh_cstate_init+0x0/0x50 @ 1
[    0.351332] initcall ffh_cstate_init+0x0/0x50 returned 0 after 0 usecs
[    0.351830] calling  kvm_alloc_cpumask+0x0/0xd0 @ 1
[    0.352220] initcall kvm_alloc_cpumask+0x0/0xd0 returned 0 after 0 usecs
[    0.352727] calling  activate_jump_labels+0x0/0x50 @ 1
[    0.353157] initcall activate_jump_labels+0x0/0x50 returned 0 after 4000 usecs
[    0.353716] calling  gigantic_pages_init+0x0/0x40 @ 1
[    0.354115] initcall gigantic_pages_init+0x0/0x40 returned 0 after 0 usecs
[    0.354627] calling  uv_rtc_setup_clock+0x0/0x330 @ 1
[    0.355018] initcall uv_rtc_setup_clock+0x0/0x330 returned -19 after 0 usecs
[    0.355555] calling  kcmp_cookies_init+0x0/0x50 @ 1
[    0.355936] initcall kcmp_cookies_init+0x0/0x50 returned 0 after 0 usecs
[    0.356438] calling  cryptomgr_init+0x0/0x20 @ 1
[    0.356817] initcall cryptomgr_init+0x0/0x20 returned 0 after 0 usecs
[    0.357149] calling  crc32_x86_init+0x0/0x100 @ 1
[    0.357576] initcall crc32_x86_init+0x0/0x100 returned 0 after 0 usecs
[    0.358075] calling  crc64_x86_init+0x0/0x170 @ 1
[    0.358520] initcall crc64_x86_init+0x0/0x170 returned 0 after 0 usecs
[    0.359014] calling  crc_t10dif_x86_init+0x0/0xd0 @ 1
[    0.359446] initcall crc_t10dif_x86_init+0x0/0xd0 returned 0 after 0 usecs
[    0.359961] calling  acpi_pci_init+0x0/0x70 @ 1
[    0.360318] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.360802] initcall acpi_pci_init+0x0/0x70 returned 0 after 0 usecs
[    0.361142] calling  dma_channel_table_init+0x0/0x110 @ 1
[    0.361560] initcall dma_channel_table_init+0x0/0x110 returned 0 after 0 usecs
[    0.362101] calling  dma_bus_init+0x0/0x160 @ 1
[    0.362506] initcall dma_bus_init+0x0/0x160 returned 0 after 0 usecs
[    0.362984] calling  register_xen_pci_notifier+0x0/0x40 @ 1
[    0.363409] initcall register_xen_pci_notifier+0x0/0x40 returned 0 after 0 usecs
[    0.363956] calling  xen_pcpu_init+0x0/0xf0 @ 1
[    0.364311] initcall xen_pcpu_init+0x0/0xf0 returned -19 after 0 usecs
[    0.364796] calling  serial_base_init+0x0/0x70 @ 1
[    0.365152] initcall serial_base_init+0x0/0x70 returned 0 after 0 usecs
[    0.365656] calling  iommu_dma_init+0x0/0x30 @ 1
[    0.366024] initcall iommu_dma_init+0x0/0x30 returned 0 after 0 usecs
[    0.366505] calling  dmi_id_init+0x0/0x400 @ 1
[    0.366883] initcall dmi_id_init+0x0/0x400 returned 0 after 0 usecs
[    0.367355] calling  numachip_timer_init+0x0/0x70 @ 1
[    0.367745] initcall numachip_timer_init+0x0/0x70 returned -19 after 0 usecs
[    0.368268] calling  ts_dmi_init+0x0/0xf0 @ 1
[    0.368615] initcall ts_dmi_init+0x0/0xf0 returned 0 after 0 usecs
[    0.369080] calling  pci_arch_init+0x0/0xa0 @ 1
[    0.369176] PCI: Using configuration type 1 for base access
[    0.369602] initcall pci_arch_init+0x0/0xa0 returned 0 after 0 usecs
[    0.370135] calling  init_vdso_image_64+0x0/0x20 @ 1
[    0.370556] initcall init_vdso_image_64+0x0/0x20 returned 0 after 0 usecs
[    0.371059] calling  init_vdso_image_32+0x0/0x20 @ 1
[    0.371449] initcall init_vdso_image_32+0x0/0x20 returned 0 after 0 usecs
[    0.371948] calling  fixup_ht_bug+0x0/0xe0 @ 1
[    0.372298] initcall fixup_ht_bug+0x0/0xe0 returned 0 after 0 usecs
[    0.372766] calling  mtrr_init_finalize+0x0/0x40 @ 1
[    0.373143] initcall mtrr_init_finalize+0x0/0x40 returned 0 after 0 usecs
[    0.373652] calling  blake2s_mod_init+0x0/0x90 @ 1
[    0.374073] initcall blake2s_mod_init+0x0/0x90 returned 0 after 0 usecs
[    0.374582] calling  uid_cache_init+0x0/0x110 @ 1
[    0.374954] initcall uid_cache_init+0x0/0x110 returned 0 after 0 usecs
[    0.375440] calling  pid_namespace_sysctl_init+0x0/0x30 @ 1
[    0.375870] initcall pid_namespace_sysctl_init+0x0/0x30 returned 0 after 0 usecs
[    0.376418] calling  param_sysfs_init+0x0/0x60 @ 1
[    0.376801] initcall param_sysfs_init+0x0/0x60 returned 0 after 0 usecs
[    0.377142] calling  user_namespace_sysctl_init+0x0/0xf0 @ 1
[    0.377580] initcall user_namespace_sysctl_init+0x0/0xf0 returned 0 after 0 usecs
[    0.378134] calling  proc_schedstat_init+0x0/0x40 @ 1
[    0.378537] initcall proc_schedstat_init+0x0/0x40 returned 0 after 0 usecs
[    0.379044] calling  pm_sysrq_init+0x0/0x30 @ 1
[    0.379410] initcall pm_sysrq_init+0x0/0x30 returned 0 after 0 usecs
[    0.379891] calling  create_proc_profile+0x0/0x60 @ 1
[    0.380277] initcall create_proc_profile+0x0/0x60 returned 0 after 0 usecs
[    0.380787] calling  crash_save_vmcoreinfo_init+0x0/0x6b0 @ 1
[    0.381176] initcall crash_save_vmcoreinfo_init+0x0/0x6b0 returned 0 after 0 usecs
[    0.381731] calling  crash_notes_memory_init+0x0/0x50 @ 1
[    0.382141] initcall crash_notes_memory_init+0x0/0x50 returned 0 after 0 usecs
[    0.382694] calling  crash_hotplug_init+0x0/0x50 @ 1
[    0.383082] initcall crash_hotplug_init+0x0/0x50 returned 66 after 0 usecs
[    0.383595] calling  cgroup_sysfs_init+0x0/0x30 @ 1
[    0.383978] initcall cgroup_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[    0.384488] calling  user_namespaces_init+0x0/0x90 @ 1
[    0.384897] initcall user_namespaces_init+0x0/0x90 returned 0 after 0 usecs
[    0.385142] calling  init_optprobes+0x0/0x50 @ 1
[    0.385525] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.386170] initcall init_optprobes+0x0/0x50 returned 0 after 0 usecs
[    0.386704] calling  hung_task_init+0x0/0x90 @ 1
[    0.387183] initcall hung_task_init+0x0/0x90 returned 0 after 0 usecs
[    0.387183] calling  ftrace_check_for_weak_functions+0x0/0x70 @ 1
[    0.387183] initcall ftrace_check_for_weak_functions+0x0/0x70 returned 0 after 0 usecs
[    0.387183] calling  trace_eval_init+0x0/0xc0 @ 1
[    0.389149] initcall trace_eval_init+0x0/0xc0 returned 0 after 0 usecs
[    0.389633] calling  send_signal_irq_work_init+0x0/0x70 @ 1
[    0.390061] initcall send_signal_irq_work_init+0x0/0x70 returned 0 after 0 usecs
[    0.390609] calling  dev_map_init+0x0/0x30 @ 1
[    0.390961] initcall dev_map_init+0x0/0x30 returned 0 after 0 usecs
[    0.391431] calling  netns_bpf_init+0x0/0x20 @ 1
[    0.391797] initcall netns_bpf_init+0x0/0x20 returned 0 after 0 usecs
[    0.392279] calling  oom_init+0x0/0x60 @ 1
[    0.393175] initcall oom_init+0x0/0x60 returned 0 after 4000 usecs
[    0.393697] calling  init_user_buckets+0x0/0x40 @ 1
[    0.394161] initcall init_user_buckets+0x0/0x40 returned 0 after 0 usecs
[    0.394661] calling  init_vm_util_sysctls+0x0/0x40 @ 1
[    0.395072] initcall init_vm_util_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.395585] calling  default_bdi_init+0x0/0x40 @ 1
[    0.398889] initcall default_bdi_init+0x0/0x40 returned 0 after 0 usecs
[    0.398889] calling  cgwb_init+0x0/0x40 @ 1
[    0.398889] initcall cgwb_init+0x0/0x40 returned 0 after 0 usecs
[    0.398889] calling  percpu_enable_async+0x0/0x20 @ 1
[    0.398889] initcall percpu_enable_async+0x0/0x20 returned 0 after 0 usecs
[    0.398889] calling  kcompactd_init+0x0/0xa0 @ 1
[    0.401146] initcall kcompactd_init+0x0/0xa0 returned 0 after 0 usecs
[    0.401639] calling  init_user_reserve+0x0/0x50 @ 1
[    0.402060] initcall init_user_reserve+0x0/0x50 returned 0 after 0 usecs
[    0.402570] calling  init_admin_reserve+0x0/0x50 @ 1
[    0.402959] initcall init_admin_reserve+0x0/0x50 returned 0 after 0 usecs
[    0.403477] calling  init_reserve_notifier+0x0/0x40 @ 1
[    0.403477] initcall init_reserve_notifier+0x0/0x40 returned 0 after 0 usecs
[    0.403477] calling  swap_init_sysfs+0x0/0x90 @ 1
[    0.403477] initcall swap_init_sysfs+0x0/0x90 returned 0 after 0 usecs
[    0.403477] calling  swapfile_init+0x0/0xe0 @ 1
[    0.403477] initcall swapfile_init+0x0/0xe0 returned 0 after 0 usecs
[    0.403712] calling  hugetlb_init+0x0/0x610 @ 1
[    0.404072] HugeTLB: allocation took 0ms with hugepage_allocation_threads=1
[    0.404623] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.405128] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.405142] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.405797] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.406410] initcall hugetlb_init+0x0/0x610 returned 0 after 4000 usecs
[    0.407011] calling  ksm_init+0x0/0x260 @ 1
[    0.409154] initcall ksm_init+0x0/0x260 returned 0 after 0 usecs
[    0.409708] calling  memory_tier_init+0x0/0xe0 @ 1
[    0.410177] initcall memory_tier_init+0x0/0xe0 returned 0 after 0 usecs
[    0.410760] calling  numa_init_sysfs+0x0/0x90 @ 1
[    0.413143] initcall numa_init_sysfs+0x0/0x90 returned 0 after 0 usecs
[    0.413632] calling  hugepage_init+0x0/0x400 @ 1
[    0.414090] initcall hugepage_init+0x0/0x400 returned 0 after 0 usecs
[    0.414090] calling  mem_cgroup_init+0x0/0xb0 @ 1
[    0.414105] initcall mem_cgroup_init+0x0/0xb0 returned 0 after 0 usecs
[    0.414589] calling  mem_cgroup_swap_init+0x0/0x60 @ 1
[    0.414990] initcall mem_cgroup_swap_init+0x0/0x60 returned 0 after 0 usecs
[    0.415591] calling  page_idle_init+0x0/0x50 @ 1
[    0.415952] initcall page_idle_init+0x0/0x50 returned 0 after 0 usecs
[    0.417143] calling  init_msg_buckets+0x0/0x40 @ 1
[    0.417614] initcall init_msg_buckets+0x0/0x40 returned 0 after 0 usecs
[    0.418105] calling  seqiv_module_init+0x0/0x20 @ 1
[    0.418508] initcall seqiv_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.419002] calling  dh_init+0x0/0x60 @ 1
[    0.419323] initcall dh_init+0x0/0x60 returned 0 after 0 usecs
[    0.419758] calling  rsa_init+0x0/0x80 @ 1
[    0.420100] initcall rsa_init+0x0/0x80 returned 0 after 0 usecs
[    0.420638] calling  hmac_module_init+0x0/0x20 @ 1
[    0.421086] initcall hmac_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.421142] calling  crypto_null_mod_init+0x0/0x80 @ 1
[    0.421626] initcall crypto_null_mod_init+0x0/0x80 returned 0 after 0 usecs
[    0.422204] calling  md5_mod_init+0x0/0x20 @ 1
[    0.422549] initcall md5_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.423358] calling  sha1_generic_mod_init+0x0/0x20 @ 1
[    0.423771] initcall sha1_generic_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.424291] calling  sha256_generic_mod_init+0x0/0x30 @ 1
[    0.424704] initcall sha256_generic_mod_init+0x0/0x30 returned 0 after 0 usecs
[    0.425143] calling  sha512_generic_mod_init+0x0/0x30 @ 1
[    0.425622] initcall sha512_generic_mod_init+0x0/0x30 returned 0 after 0 usecs
[    0.426244] calling  sha3_generic_mod_init+0x0/0x30 @ 1
[    0.426710] initcall sha3_generic_mod_init+0x0/0x30 returned 0 after 0 usecs
[    0.427315] calling  crypto_ecb_module_init+0x0/0x20 @ 1
[    0.427790] initcall crypto_ecb_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.428402] calling  crypto_cbc_module_init+0x0/0x20 @ 1
[    0.428886] initcall crypto_cbc_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.429142] calling  crypto_cts_module_init+0x0/0x20 @ 1
[    0.429599] initcall crypto_cts_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.430209] calling  xts_module_init+0x0/0x20 @ 1
[    0.430631] initcall xts_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.431197] calling  crypto_ctr_module_init+0x0/0x30 @ 1
[    0.431672] initcall crypto_ctr_module_init+0x0/0x30 returned 0 after 0 usecs
[    0.432288] calling  crypto_gcm_module_init+0x0/0x90 @ 1
[    0.432765] initcall crypto_gcm_module_init+0x0/0x90 returned 0 after 0 usecs
[    0.433142] calling  aes_init+0x0/0x20 @ 1
[    0.433521] initcall aes_init+0x0/0x20 returned 0 after 0 usecs
[    0.434042] calling  crc32c_mod_init+0x0/0x40 @ 1
[    0.434471] initcall crc32c_mod_init+0x0/0x40 returned 0 after 0 usecs
[    0.435040] calling  lzo_mod_init+0x0/0x20 @ 1
[    0.435448] initcall lzo_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.435998] calling  lzorle_mod_init+0x0/0x20 @ 1
[    0.436431] initcall lzorle_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.437001] calling  drbg_init+0x0/0x220 @ 1
[    0.437151] initcall drbg_init+0x0/0x220 returned 0 after 0 usecs
[    0.437610] calling  ghash_mod_init+0x0/0x20 @ 1
[    0.437975] initcall ghash_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.438536] calling  ecdh_init+0x0/0x90 @ 1
[    0.438924] initcall ecdh_init+0x0/0x90 returned 0 after 0 usecs
[    0.439452] calling  init_bio+0x0/0xe0 @ 1
[    0.439887] initcall init_bio+0x0/0xe0 returned 0 after 0 usecs
[    0.440414] calling  blk_ioc_init+0x0/0x80 @ 1
[    0.440823] initcall blk_ioc_init+0x0/0x80 returned 0 after 0 usecs
[    0.441145] calling  blk_mq_init+0x0/0x130 @ 1
[    0.441554] initcall blk_mq_init+0x0/0x130 returned 0 after 0 usecs
[    0.442105] calling  genhd_device_init+0x0/0x60 @ 1
[    0.442599] initcall genhd_device_init+0x0/0x60 returned 0 after 0 usecs
[    0.442599] calling  blkcg_punt_bio_init+0x0/0x40 @ 1
[    0.445161] initcall blkcg_punt_bio_init+0x0/0x40 returned 0 after 0 usecs
[    0.445764] calling  blk_integrity_auto_init+0x0/0xe0 @ 1
[    0.446285] initcall blk_integrity_auto_init+0x0/0xe0 returned 0 after 0 usecs
[    0.446285] calling  io_wq_init+0x0/0x50 @ 1
[    0.446285] initcall io_wq_init+0x0/0x50 returned 0 after 0 usecs
[    0.446285] calling  sg_pool_init+0x0/0x110 @ 1
[    0.446515] initcall sg_pool_init+0x0/0x110 returned 0 after 0 usecs
[    0.447072] calling  irq_poll_setup+0x0/0x90 @ 1
[    0.447500] initcall irq_poll_setup+0x0/0x90 returned 0 after 0 usecs
[    0.448060] calling  sx150x_init+0x0/0x30 @ 1
[    0.448467] initcall sx150x_init+0x0/0x30 returned 0 after 0 usecs
[    0.449010] calling  byt_gpio_init+0x0/0x30 @ 1
[    0.449144] initcall byt_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.449701] calling  chv_pinctrl_init+0x0/0x30 @ 1
[    0.450137] initcall chv_pinctrl_init+0x0/0x30 returned 0 after 0 usecs
[    0.450715] calling  gpiolib_debugfs_init+0x0/0x40 @ 1
[    0.451572] initcall gpiolib_debugfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.452173] calling  palmas_gpio_init+0x0/0x30 @ 1
[    0.452611] initcall palmas_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.453143] calling  rc5t583_gpio_init+0x0/0x30 @ 1
[    0.453542] initcall rc5t583_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.454112] calling  tps6586x_gpio_init+0x0/0x30 @ 1
[    0.454565] initcall tps6586x_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.455160] calling  tps65910_gpio_init+0x0/0x30 @ 1
[    0.455614] initcall tps65910_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.456204] calling  pwm_init+0x0/0x70 @ 1
[    0.456586] initcall pwm_init+0x0/0x70 returned 0 after 0 usecs
[    0.457110] calling  leds_init+0x0/0x60 @ 1
[    0.457146] initcall leds_init+0x0/0x60 returned 0 after 0 usecs
[    0.457675] calling  pci_slot_init+0x0/0x60 @ 1
[    0.458096] initcall pci_slot_init+0x0/0x60 returned 0 after 0 usecs
[    0.458657] calling  fbmem_init+0x0/0x90 @ 1
[    0.459073] initcall fbmem_init+0x0/0x90 returned 0 after 0 usecs
[    0.459610] calling  scan_for_dmi_ipmi+0x0/0x300 @ 1
[    0.460057] initcall scan_for_dmi_ipmi+0x0/0x300 returned 0 after 0 usecs
[    0.460660] calling  acpi_init+0x0/0x540 @ 1
[    0.461081] ACPI: Added _OSI(Module Device)
[    0.461142] ACPI: Added _OSI(Processor Device)
[    0.461551] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.461976] ACPI: Added _OSI(Processor Aggregator Device)
[    0.462920] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    0.465343] ACPI: Interpreter enabled
[    0.465600] ACPI: PM: (supports S0 S5)
[    0.465951] ACPI: Using IOAPIC for interrupt routing
[    0.465951] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.465951] PCI: Using E820 reservations for host bridge windows
[    0.466510] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.468423] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.468978] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI HPX-Type3]
[    0.469143] acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    0.469949] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended configuration space under this bridge
[    0.470957] acpiphp: Slot [3] registered
[    0.471282] acpiphp: Slot [4] registered
[    0.471602] acpiphp: Slot [5] registered
[    0.471923] acpiphp: Slot [6] registered
[    0.472278] acpiphp: Slot [7] registered
[    0.472656] acpiphp: Slot [8] registered
[    0.473029] acpiphp: Slot [9] registered
[    0.477157] acpiphp: Slot [10] registered
[    0.477543] acpiphp: Slot [11] registered
[    0.477924] acpiphp: Slot [12] registered
[    0.478305] acpiphp: Slot [13] registered
[    0.478687] acpiphp: Slot [14] registered
[    0.479067] acpiphp: Slot [15] registered
[    0.479450] acpiphp: Slot [16] registered
[    0.479836] acpiphp: Slot [17] registered
[    0.480217] acpiphp: Slot [18] registered
[    0.480598] acpiphp: Slot [19] registered
[    0.480978] acpiphp: Slot [20] registered
[    0.481150] acpiphp: Slot [21] registered
[    0.481531] acpiphp: Slot [22] registered
[    0.481911] acpiphp: Slot [23] registered
[    0.482291] acpiphp: Slot [24] registered
[    0.482677] acpiphp: Slot [25] registered
[    0.483406] acpiphp: Slot [26] registered
[    0.483785] acpiphp: Slot [27] registered
[    0.484162] acpiphp: Slot [28] registered
[    0.484539] acpiphp: Slot [29] registered
[    0.484920] acpiphp: Slot [30] registered
[    0.485150] acpiphp: Slot [31] registered
[    0.485529] PCI host bridge to bus 0000:00
[    0.485911] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.486451] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.486946] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.487488] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]
[    0.488028] pci_bus 0000:00: root bus resource [mem 0x240000000-0x2bfffffff window]
[    0.488588] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.489038] pci 0000:00:00.0: calling  quirk_mmio_always_on+0x0/0x20 @ 1
[    0.489142] pci 0000:00:00.0: quirk_mmio_always_on+0x0/0x20 took 0 usecs
[    0.489636] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 conventional PCI endpoint
[    0.490395] pci 0000:00:00.0: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.490926] pci 0000:00:00.0: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.491884] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 conventional PCI endpoint
[    0.492676] pci 0000:00:01.0: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.493143] pci 0000:00:01.0: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.493770] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180 conventional PCI endpoint
[    0.494918] pci 0000:00:01.1: BAR 4 [io  0xc5a0-0xc5af]
[    0.495350] pci 0000:00:01.1: BAR 0 [io  0x01f0-0x01f7]: legacy IDE quirk
[    0.495928] pci 0000:00:01.1: BAR 1 [io  0x03f6]: legacy IDE quirk
[    0.496476] pci 0000:00:01.1: BAR 2 [io  0x0170-0x0177]: legacy IDE quirk
[    0.496979] pci 0000:00:01.1: BAR 3 [io  0x0376]: legacy IDE quirk
[    0.497147] pci 0000:00:01.1: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.497674] pci 0000:00:01.1: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.498288] pci 0000:00:01.3: calling  acpi_pm_check_blacklist+0x0/0x50 @ 1
[    0.498806] pci 0000:00:01.3: acpi_pm_check_blacklist+0x0/0x50 took 0 usecs
[    0.499320] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000 conventional PCI endpoint
[    0.500096] pci 0000:00:01.3: calling  quirk_piix4_acpi+0x0/0x180 @ 1
[    0.500584] pci 0000:00:01.3: quirk: [io  0x0600-0x063f] claimed by PIIX4 ACPI
[    0.501146] pci 0000:00:01.3: quirk: [io  0x0700-0x070f] claimed by PIIX4 SMB
[    0.501780] pci 0000:00:01.3: quirk_piix4_acpi+0x0/0x180 took 0 usecs
[    0.502264] pci 0000:00:01.3: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.502797] pci 0000:00:01.3: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.503330] pci 0000:00:01.3: calling  pci_fixup_piix4_acpi+0x0/0x20 @ 1
[    0.503829] pci 0000:00:01.3: pci_fixup_piix4_acpi+0x0/0x20 took 0 usecs
[    0.504474] pci 0000:00:02.0: [1b36:0100] type 00 class 0x030000 conventional PCI endpoint
[    0.510072] pci 0000:00:02.0: BAR 0 [mem 0xf4000000-0xf7ffffff]
[    0.510638] pci 0000:00:02.0: BAR 1 [mem 0xf8000000-0xfbffffff]
[    0.511586] pci 0000:00:02.0: BAR 2 [mem 0xfc054000-0xfc055fff]
[    0.512114] pci 0000:00:02.0: BAR 3 [io  0xc540-0xc55f]
[    0.512596] pci 0000:00:02.0: ROM [mem 0xfc040000-0xfc04ffff pref]
[    0.513193] pci 0000:00:02.0: calling  screen_info_fixup_lfb+0x0/0x170 @ 1
[    0.514035] pci 0000:00:02.0: screen_info_fixup_lfb+0x0/0x170 took 0 usecs
[    0.514634] pci 0000:00:02.0: calling  pci_fixup_video+0x0/0x120 @ 1
[    0.515222] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.515868] pci 0000:00:02.0: pci_fixup_video+0x0/0x120 took 3906 usecs
[    0.517052] pci 0000:00:03.0: [1af4:1000] type 00 class 0x020000 conventional PCI endpoint
[    0.517935] pci 0000:00:03.0: BAR 0 [io  0xc560-0xc57f]
[    0.518352] pci 0000:00:03.0: BAR 1 [mem 0xfc056000-0xfc056fff]
[    0.518816] pci 0000:00:03.0: BAR 4 [mem 0xfebf0000-0xfebf3fff 64bit pref]
[    0.519342] pci 0000:00:03.0: ROM [mem 0xfc000000-0xfc03ffff pref]
[    0.520321] pci 0000:00:04.0: [1b36:000d] type 00 class 0x0c0330 conventional PCI endpoint
[    0.521290] pci 0000:00:04.0: BAR 0 [mem 0xfc050000-0xfc053fff 64bit]
[    0.522154] pci 0000:00:05.0: [8086:2415] type 00 class 0x040100 conventional PCI endpoint
[    0.523501] pci 0000:00:05.0: BAR 0 [io  0xc000-0xc3ff]
[    0.523960] pci 0000:00:05.0: BAR 1 [io  0xc400-0xc4ff]
[    0.524454] pci 0000:00:05.0: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.525090] pci 0000:00:05.0: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.525463] pci 0000:00:06.0: [1af4:1052] type 00 class 0x098000 conventional PCI endpoint
[    0.527071] pci 0000:00:06.0: BAR 1 [mem 0xfc057000-0xfc057fff]
[    0.527610] pci 0000:00:06.0: BAR 4 [mem 0xfebf4000-0xfebf7fff 64bit pref]
[    0.528727] pci 0000:00:07.0: [1af4:1003] type 00 class 0x078000 conventional PCI endpoint
[    0.530917] pci 0000:00:07.0: BAR 0 [io  0xc500-0xc53f]
[    0.531403] pci 0000:00:07.0: BAR 1 [mem 0xfc058000-0xfc058fff]
[    0.531932] pci 0000:00:07.0: BAR 4 [mem 0xfebf8000-0xfebfbfff 64bit pref]
[    0.533532] pci 0000:00:08.0: [1af4:1002] type 00 class 0x00ff00 conventional PCI endpoint
[    0.534710] pci 0000:00:08.0: BAR 0 [io  0xc580-0xc59f]
[    0.535134] pci 0000:00:08.0: BAR 4 [mem 0xfebfc000-0xfebfffff 64bit pref]
[    0.541757] ACPI: PCI: Interrupt link LNKA configured for IRQ 10
[    0.542282] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[    0.542800] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[    0.543309] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[    0.543789] ACPI: PCI: Interrupt link LNKS configured for IRQ 9
[    0.544508] initcall acpi_init+0x0/0x540 returned 0 after 84000 usecs
[    0.545019] calling  adxl_init+0x0/0x1b0 @ 1
[    0.545146] initcall adxl_init+0x0/0x1b0 returned -19 after 0 usecs
[    0.545619] calling  hmat_init+0x0/0x3d0 @ 1
[    0.545972] initcall hmat_init+0x0/0x3d0 returned 0 after 0 usecs
[    0.546426] calling  acpi_hed_driver_init+0x0/0x30 @ 1
[    0.546823] initcall acpi_hed_driver_init+0x0/0x30 returned 0 after 0 usecs
[    0.547340] calling  pnp_init+0x0/0x20 @ 1
[    0.547674] initcall pnp_init+0x0/0x20 returned 0 after 0 usecs
[    0.548169] calling  balloon_init+0x0/0x2d0 @ 1
[    0.548527] initcall balloon_init+0x0/0x2d0 returned -19 after 0 usecs
[    0.549012] calling  xen_setup_shutdown_event+0x0/0x50 @ 1
[    0.549144] initcall xen_setup_shutdown_event+0x0/0x50 returned -19 after 0 usecs
[    0.549696] calling  xenbus_probe_backend_init+0x0/0xa0 @ 1
[    0.550142] initcall xenbus_probe_backend_init+0x0/0xa0 returned 0 after 0 usecs
[    0.550695] calling  xenbus_probe_frontend_init+0x0/0x60 @ 1
[    0.551133] initcall xenbus_probe_frontend_init+0x0/0x60 returned 0 after 0 usecs
[    0.551683] calling  xen_acpi_pad_init+0x0/0x60 @ 1
[    0.552064] initcall xen_acpi_pad_init+0x0/0x60 returned -19 after 0 usecs
[    0.552568] calling  misc_init+0x0/0xb0 @ 1
[    0.552933] initcall misc_init+0x0/0xb0 returned 0 after 0 usecs
[    0.553142] calling  tpm_init+0x0/0xe0 @ 1
[    0.557162] initcall tpm_init+0x0/0xe0 returned 0 after 0 usecs
[    0.557613] calling  iommu_subsys_init+0x0/0x170 @ 1
[    0.557998] iommu: Default domain type: Translated
[    0.558366] iommu: DMA domain TLB invalidation policy: lazy mode
[    0.558812] initcall iommu_subsys_init+0x0/0x170 returned 0 after 0 usecs
[    0.559341] calling  cn_init+0x0/0xf0 @ 1
[    0.559696] initcall cn_init+0x0/0xf0 returned 0 after 0 usecs
[    0.560139] calling  pm860x_i2c_init+0x0/0x50 @ 1
[    0.560526] initcall pm860x_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.561143] calling  wm8400_driver_init+0x0/0x50 @ 1
[    0.561533] initcall wm8400_driver_init+0x0/0x50 returned 0 after 0 usecs
[    0.562042] calling  wm831x_i2c_init+0x0/0x50 @ 1
[    0.562418] initcall wm831x_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.562910] calling  wm831x_spi_init+0x0/0x40 @ 1
[    0.563284] initcall wm831x_spi_init+0x0/0x40 returned 0 after 0 usecs
[    0.563773] calling  wm8350_i2c_init+0x0/0x30 @ 1
[    0.564151] initcall wm8350_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.564632] calling  tps65910_i2c_init+0x0/0x30 @ 1
[    0.565020] initcall tps65910_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.565142] calling  ezx_pcap_init+0x0/0x30 @ 1
[    0.565502] initcall ezx_pcap_init+0x0/0x30 returned 0 after 0 usecs
[    0.565980] calling  da903x_init+0x0/0x30 @ 1
[    0.566326] initcall da903x_init+0x0/0x30 returned 0 after 0 usecs
[    0.566791] calling  da9052_spi_init+0x0/0x50 @ 1
[    0.567162] initcall da9052_spi_init+0x0/0x50 returned 0 after 0 usecs
[    0.567678] calling  da9052_i2c_init+0x0/0x50 @ 1
[    0.568058] initcall da9052_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.568545] calling  lp8788_init+0x0/0x30 @ 1
[    0.568903] initcall lp8788_init+0x0/0x30 returned 0 after 0 usecs
[    0.569142] calling  da9055_i2c_init+0x0/0x50 @ 1
[    0.569509] initcall da9055_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.569994] calling  max77843_i2c_init+0x0/0x30 @ 1
[    0.570384] initcall max77843_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.570890] calling  max8925_i2c_init+0x0/0x50 @ 1
[    0.571270] initcall max8925_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.572198] calling  max8997_i2c_init+0x0/0x30 @ 1
[    0.572589] initcall max8997_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.573079] calling  max8998_i2c_init+0x0/0x30 @ 1
[    0.573145] initcall max8998_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.573622] calling  tps6586x_init+0x0/0x30 @ 1
[    0.573969] initcall tps6586x_init+0x0/0x30 returned 0 after 0 usecs
[    0.574435] calling  tps65090_init+0x0/0x30 @ 1
[    0.574783] initcall tps65090_init+0x0/0x30 returned 0 after 0 usecs
[    0.575326] calling  aat2870_init+0x0/0x30 @ 1
[    0.575728] initcall aat2870_init+0x0/0x30 returned 0 after 0 usecs
[    0.576213] calling  palmas_i2c_init+0x0/0x30 @ 1
[    0.576575] initcall palmas_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.577051] calling  rc5t583_i2c_init+0x0/0x30 @ 1
[    0.577151] initcall rc5t583_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.577631] calling  as3711_i2c_init+0x0/0x30 @ 1
[    0.577989] initcall as3711_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.578460] calling  libnvdimm_init+0x0/0x70 @ 1
[    0.578845] initcall libnvdimm_init+0x0/0x70 returned 0 after 0 usecs
[    0.579348] calling  dax_core_init+0x0/0x110 @ 1
[    0.579844] initcall dax_core_init+0x0/0x110 returned 0 after 4000 usecs
[    0.580335] calling  dma_buf_init+0x0/0xb0 @ 1
[    0.580692] initcall dma_buf_init+0x0/0xb0 returned 0 after 0 usecs
[    0.581142] calling  init_scsi+0x0/0xa0 @ 1
[    0.581522] SCSI subsystem initialized
[    0.581818] initcall init_scsi+0x0/0xa0 returned 0 after 0 usecs
[    0.582258] calling  ata_init+0x0/0x410 @ 1
[    0.582639] libata version 3.00 loaded.
[    0.582639] initcall ata_init+0x0/0x410 returned 0 after 0 usecs
[    0.582639] calling  phy_init+0x0/0x2b0 @ 1
[    0.582725] initcall phy_init+0x0/0x2b0 returned 0 after 0 usecs
[    0.583445] calling  usb_common_init+0x0/0x30 @ 1
[    0.585150] initcall usb_common_init+0x0/0x30 returned 0 after 0 usecs
[    0.585924] calling  usb_init+0x0/0x190 @ 1
[    0.586455] ACPI: bus type USB registered
[    0.586993] usbcore: registered new interface driver usbfs
[    0.587640] usbcore: registered new interface driver hub
[    0.588287] usbcore: registered new device driver usb
[    0.588896] initcall usb_init+0x0/0x190 returned 0 after 4000 usecs
[    0.589143] calling  xdbc_init+0x0/0x1e0 @ 1
[    0.589675] initcall xdbc_init+0x0/0x1e0 returned 0 after 0 usecs
[    0.590396] calling  usb_roles_init+0x0/0x20 @ 1
[    0.590964] initcall usb_roles_init+0x0/0x20 returned 0 after 0 usecs
[    0.591720] calling  serio_init+0x0/0x50 @ 1
[    0.592257] initcall serio_init+0x0/0x50 returned 0 after 0 usecs
[    0.592976] calling  input_init+0x0/0x130 @ 1
[    0.593148] initcall input_init+0x0/0x130 returned 0 after 0 usecs
[    0.593982] calling  rtc_init+0x0/0x40 @ 1
[    0.594473] initcall rtc_init+0x0/0x40 returned 0 after 0 usecs
[    0.595143] calling  dw_i2c_init_driver+0x0/0x30 @ 1
[    0.595727] initcall dw_i2c_init_driver+0x0/0x30 returned 0 after 0 usecs
[    0.596482] calling  pps_init+0x0/0xc0 @ 1
[    0.596973] pps_core: LinuxPPS API ver. 1 registered
[    0.597143] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.598190] initcall pps_init+0x0/0xc0 returned 0 after 4000 usecs
[    0.598919] calling  ptp_init+0x0/0xa0 @ 1
[    0.599816] PTP clock support registered
[    0.600290] initcall ptp_init+0x0/0xa0 returned 0 after 0 usecs
[    0.600962] calling  power_supply_class_init+0x0/0x30 @ 1
[    0.601152] initcall power_supply_class_init+0x0/0x30 returned 0 after 0 usecs
[    0.601703] calling  hwmon_init+0x0/0x110 @ 1
[    0.602056] initcall hwmon_init+0x0/0x110 returned 0 after 0 usecs
[    0.602597] calling  intel_tcc_init+0x0/0x40 @ 1
[    0.603098] initcall intel_tcc_init+0x0/0x40 returned 0 after 0 usecs
[    0.603682] calling  md_init+0x0/0x190 @ 1
[    0.605175] initcall md_init+0x0/0x190 returned 0 after 0 usecs
[    0.605683] calling  edac_init+0x0/0x90 @ 1
[    0.606084] EDAC MC: Ver: 3.0.0
[    0.606084] initcall edac_init+0x0/0x90 returned 0 after 0 usecs
[    0.606084] calling  mmc_init+0x0/0x50 @ 1
[    0.606084] initcall mmc_init+0x0/0x50 returned 0 after 0 usecs
[    0.606585] calling  dmi_init+0x0/0x140 @ 1
[    0.606949] initcall dmi_init+0x0/0x140 returned 0 after 0 usecs
[    0.607401] calling  efisubsys_init+0x0/0x610 @ 1
[    0.607767] initcall efisubsys_init+0x0/0x610 returned 0 after 0 usecs
[    0.608251] calling  vme_init+0x0/0x20 @ 1
[    0.608586] initcall vme_init+0x0/0x20 returned 0 after 0 usecs
[    0.609142] calling  remoteproc_init+0x0/0x80 @ 1
[    0.609526] initcall remoteproc_init+0x0/0x80 returned 0 after 0 usecs
[    0.610017] calling  devfreq_init+0x0/0xe0 @ 1
[    0.613146] initcall devfreq_init+0x0/0xe0 returned 0 after 0 usecs
[    0.613616] calling  devfreq_event_init+0x0/0x60 @ 1
[    0.614007] initcall devfreq_event_init+0x0/0x60 returned 0 after 0 usecs
[    0.614529] calling  devfreq_simple_ondemand_init+0x0/0x20 @ 1
[    0.615051] initcall devfreq_simple_ondemand_init+0x0/0x20 returned 0 after 0 usecs
[    0.615710] calling  devfreq_performance_init+0x0/0x20 @ 1
[    0.617142] initcall devfreq_performance_init+0x0/0x20 returned 0 after 0 usecs
[    0.617774] calling  devfreq_powersave_init+0x0/0x20 @ 1
[    0.618247] initcall devfreq_powersave_init+0x0/0x20 returned 0 after 0 usecs
[    0.618798] calling  devfreq_userspace_init+0x0/0x20 @ 1
[    0.619203] initcall devfreq_userspace_init+0x0/0x20 returned 0 after 0 usecs
[    0.619723] calling  devfreq_passive_init+0x0/0x20 @ 1
[    0.620118] initcall devfreq_passive_init+0x0/0x20 returned 0 after 0 usecs
[    0.620629] calling  ras_init+0x0/0x20 @ 1
[    0.620963] initcall ras_init+0x0/0x20 returned 0 after 0 usecs
[    0.621142] calling  nvmem_init+0x0/0x20 @ 1
[    0.621485] initcall nvmem_init+0x0/0x20 returned 0 after 0 usecs
[    0.621943] calling  dpll_init+0x0/0x20 @ 1
[    0.622310] initcall dpll_init+0x0/0x20 returned 0 after 0 usecs
[    0.622764] calling  proto_init+0x0/0x20 @ 1
[    0.623104] initcall proto_init+0x0/0x20 returned 0 after 0 usecs
[    0.623561] calling  net_dev_init+0x0/0x3a0 @ 1
[    0.624087] initcall net_dev_init+0x0/0x3a0 returned 0 after 0 usecs
[    0.624562] calling  neigh_init+0x0/0x30 @ 1
[    0.624906] initcall neigh_init+0x0/0x30 returned 0 after 0 usecs
[    0.625142] calling  fib_notifier_init+0x0/0x20 @ 1
[    0.625594] initcall fib_notifier_init+0x0/0x20 returned 0 after 0 usecs
[    0.626180] calling  netdev_genl_init+0x0/0x50 @ 1
[    0.626624] initcall netdev_genl_init+0x0/0x50 returned 0 after 0 usecs
[    0.627207] calling  page_pool_user_init+0x0/0x20 @ 1
[    0.627673] initcall page_pool_user_init+0x0/0x20 returned 0 after 0 usecs
[    0.628275] calling  fib_rules_init+0x0/0x80 @ 1
[    0.628701] initcall fib_rules_init+0x0/0x80 returned 0 after 0 usecs
[    0.629142] calling  init_cgroup_netprio+0x0/0x30 @ 1
[    0.629600] initcall init_cgroup_netprio+0x0/0x30 returned 0 after 0 usecs
[    0.630197] calling  bpf_lwt_init+0x0/0x30 @ 1
[    0.630604] initcall bpf_lwt_init+0x0/0x30 returned 0 after 0 usecs
[    0.631152] calling  pktsched_init+0x0/0xc0 @ 1
[    0.632046] initcall pktsched_init+0x0/0xc0 returned 0 after 0 usecs
[    0.632608] calling  tc_filter_init+0x0/0xa0 @ 1
[    0.632978] initcall tc_filter_init+0x0/0xa0 returned 0 after 0 usecs
[    0.633143] calling  tc_action_init+0x0/0x30 @ 1
[    0.633535] initcall tc_action_init+0x0/0x30 returned 0 after 0 usecs
[    0.634022] calling  ethnl_init+0x0/0x80 @ 1
[    0.634381] initcall ethnl_init+0x0/0x80 returned 0 after 0 usecs
[    0.634840] calling  nexthop_init+0x0/0x40 @ 1
[    0.635246] initcall nexthop_init+0x0/0x40 returned 0 after 0 usecs
[    0.635803] calling  devlink_init+0x0/0x70 @ 1
[    0.636240] initcall devlink_init+0x0/0x70 returned 0 after 0 usecs
[    0.636710] calling  wireless_nlevent_init+0x0/0x50 @ 1
[    0.637112] initcall wireless_nlevent_init+0x0/0x50 returned 0 after 0 usecs
[    0.637142] calling  rfkill_init+0x0/0x130 @ 1
[    0.637532] initcall rfkill_init+0x0/0x130 returned 0 after 0 usecs
[    0.637632] calling  ncsi_init_netlink+0x0/0x20 @ 1
[    0.638020] initcall ncsi_init_netlink+0x0/0x20 returned 0 after 0 usecs
[    0.638523] calling  shaper_init+0x0/0x20 @ 1
[    0.638869] initcall shaper_init+0x0/0x20 returned 0 after 0 usecs
[    0.641143] calling  pci_subsys_init+0x0/0x80 @ 1
[    0.641143] PCI: Using ACPI for IRQ routing
[    0.641143] PCI: pci_cache_line_size set to 64 bytes
[    0.641143] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    0.641144] e820: reserve RAM buffer [mem 0xbffdf000-0xbfffffff]
[    0.641599] initcall pci_subsys_init+0x0/0x80 returned 0 after 0 usecs
[    0.642085] calling  vsprintf_init_hashval+0x0/0x20 @ 1
[    0.642493] initcall vsprintf_init_hashval+0x0/0x20 returned 0 after 0 usecs
[    0.643016] calling  efi_runtime_map_init+0x0/0x260 @ 1
[    0.645144] initcall efi_runtime_map_init+0x0/0x260 returned 0 after 0 usecs
[    0.645144] calling  vga_arb_device_init+0x0/0xa0 @ 1
[    0.645154] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.645693] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.646203] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.646203] vgaarb: loaded
[    0.646203] initcall vga_arb_device_init+0x0/0xa0 returned 0 after 0 usecs
[    0.646203] calling  watchdog_init+0x0/0xb0 @ 1
[    0.649157] initcall watchdog_init+0x0/0xb0 returned 0 after 0 usecs
[    0.649678] calling  nmi_warning_debugfs+0x0/0x40 @ 1
[    0.650083] initcall nmi_warning_debugfs+0x0/0x40 returned 0 after 0 usecs
[    0.650591] calling  hpet_late_init+0x0/0x420 @ 1
[    0.651011] initcall hpet_late_init+0x0/0x420 returned -19 after 0 usecs
[    0.651519] calling  init_amd_nbs+0x0/0x340 @ 1
[    0.651519] initcall init_amd_nbs+0x0/0x340 returned 0 after 0 usecs
[    0.651519] calling  amd_smn_init+0x0/0x200 @ 1
[    0.651519] initcall amd_smn_init+0x0/0x200 returned 0 after 0 usecs
[    0.651519] calling  iomem_init_inode+0x0/0xa0 @ 1
[    0.651519] initcall iomem_init_inode+0x0/0xa0 returned 0 after 0 usecs
[    0.651519] calling  clocksource_done_booting+0x0/0x50 @ 1
[    0.653142] clocksource: Switched to clocksource kvm-clock
[    0.653142] initcall clocksource_done_booting+0x0/0x50 returned 0 after 425 usecs
[    0.653142] calling  tracer_init_tracefs+0x0/0xd0 @ 1
[    0.654563] initcall tracer_init_tracefs+0x0/0xd0 returned 0 after 58 usecs
[    0.655080] calling  init_trace_printk_function_export+0x0/0x40 @ 1
[    0.655564] initcall init_trace_printk_function_export+0x0/0x40 returned 0 after 14 usecs
[    0.656152] calling  init_graph_tracefs+0x0/0x40 @ 1
[    0.656533] initcall init_graph_tracefs+0x0/0x40 returned 0 after 0 usecs
[    0.657033] calling  trace_events_synth_init+0x0/0x60 @ 1
[    0.657448] initcall trace_events_synth_init+0x0/0x60 returned 0 after 3 usecs
[    0.657983] calling  bpf_event_init+0x0/0x20 @ 1
[    0.658355] initcall bpf_event_init+0x0/0x20 returned 0 after 4 usecs
[    0.658842] calling  init_kprobe_trace+0x0/0x1e0 @ 1
[    0.659226] initcall init_kprobe_trace+0x0/0x1e0 returned 0 after 4 usecs
[    0.659723] calling  init_dynamic_event+0x0/0x40 @ 1
[    0.660104] initcall init_dynamic_event+0x0/0x40 returned 0 after 1 usecs
[    0.661015] calling  init_uprobe_trace+0x0/0x80 @ 1
[    0.661410] initcall init_uprobe_trace+0x0/0x80 returned 0 after 7 usecs
[    0.662044] calling  bpf_init+0x0/0x60 @ 1
[    0.662444] initcall bpf_init+0x0/0x60 returned 0 after 8 usecs
[    0.662966] calling  secretmem_init+0x0/0x60 @ 1
[    0.663410] initcall secretmem_init+0x0/0x60 returned 0 after 17 usecs
[    0.663980] calling  init_fs_stat_sysctls+0x0/0x40 @ 1
[    0.664450] initcall init_fs_stat_sysctls+0x0/0x40 returned 0 after 10 usecs
[    0.665055] calling  init_fs_exec_sysctls+0x0/0x40 @ 1
[    0.665517] initcall init_fs_exec_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.666120] calling  init_pipe_fs+0x0/0x80 @ 1
[    0.666551] initcall init_pipe_fs+0x0/0x80 returned 0 after 22 usecs
[    0.667105] calling  init_fs_namei_sysctls+0x0/0x40 @ 1
[    0.667542] initcall init_fs_namei_sysctls+0x0/0x40 returned 0 after 3 usecs
[    0.668060] calling  init_fs_dcache_sysctls+0x0/0x60 @ 1
[    0.668470] initcall init_fs_dcache_sysctls+0x0/0x60 returned 0 after 7 usecs
[    0.668995] calling  init_fs_namespace_sysctls+0x0/0x40 @ 1
[    0.669416] initcall init_fs_namespace_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.669958] calling  cgroup_writeback_init+0x0/0x40 @ 1
[    0.670361] initcall cgroup_writeback_init+0x0/0x40 returned 0 after 2 usecs
[    0.670882] calling  inotify_user_setup+0x0/0x140 @ 1
[    0.671279] initcall inotify_user_setup+0x0/0x140 returned 0 after 10 usecs
[    0.671803] calling  eventpoll_init+0x0/0x190 @ 1
[    0.672409] initcall eventpoll_init+0x0/0x190 returned 0 after 30 usecs
[    0.673199] calling  anon_inode_init+0x0/0x70 @ 1
[    0.673766] initcall anon_inode_init+0x0/0x70 returned 0 after 9 usecs
[    0.674484] calling  init_dax_wait_table+0x0/0x50 @ 1
[    0.674901] initcall init_dax_wait_table+0x0/0x50 returned 0 after 38 usecs
[    0.675606] calling  proc_locks_init+0x0/0x40 @ 1
[    0.675977] initcall proc_locks_init+0x0/0x40 returned 0 after 2 usecs
[    0.678343] calling  backing_aio_init+0x0/0x90 @ 1
[    0.678913] initcall backing_aio_init+0x0/0x90 returned 0 after 6 usecs
[    0.679685] calling  init_fs_coredump_sysctls+0x0/0x40 @ 1
[    0.680333] initcall init_fs_coredump_sysctls+0x0/0x40 returned 0 after 5 usecs
[    0.681164] calling  init_vm_drop_caches_sysctls+0x0/0x40 @ 1
[    0.681838] initcall init_vm_drop_caches_sysctls+0x0/0x40 returned 0 after 4 usecs
[    0.682773] calling  iomap_dio_init+0x0/0x40 @ 1
[    0.683325] initcall iomap_dio_init+0x0/0x40 returned 0 after 26 usecs
[    0.683820] calling  iomap_ioend_init+0x0/0x30 @ 1
[    0.684268] initcall iomap_ioend_init+0x0/0x30 returned 0 after 70 usecs
[    0.684770] calling  dquot_init+0x0/0x190 @ 1
[    0.685114] VFS: Disk quotas dquot_6.6.0
[    0.685444] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.685971] initcall dquot_init+0x0/0x190 returned 0 after 856 usecs
[    0.686456] calling  quota_init+0x0/0x40 @ 1
[    0.686799] initcall quota_init+0x0/0x40 returned 0 after 7 usecs
[    0.687258] calling  proc_cmdline_init+0x0/0x50 @ 1
[    0.687636] initcall proc_cmdline_init+0x0/0x50 returned 0 after 3 usecs
[    0.688130] calling  proc_consoles_init+0x0/0x40 @ 1
[    0.688509] initcall proc_consoles_init+0x0/0x40 returned 0 after 0 usecs
[    0.689027] calling  proc_cpuinfo_init+0x0/0x30 @ 1
[    0.689410] initcall proc_cpuinfo_init+0x0/0x30 returned 0 after 1 usecs
[    0.689908] calling  proc_devices_init+0x0/0x40 @ 1
[    0.690741] initcall proc_devices_init+0x0/0x40 returned 0 after 2 usecs
[    0.691559] calling  proc_interrupts_init+0x0/0x40 @ 1
[    0.692166] initcall proc_interrupts_init+0x0/0x40 returned 0 after 0 usecs
[    0.692960] calling  proc_loadavg_init+0x0/0x40 @ 1
[    0.693542] initcall proc_loadavg_init+0x0/0x40 returned 0 after 0 usecs
[    0.694328] calling  proc_meminfo_init+0x0/0x40 @ 1
[    0.694918] initcall proc_meminfo_init+0x0/0x40 returned 0 after 0 usecs
[    0.695694] calling  proc_stat_init+0x0/0x30 @ 1
[    0.696253] initcall proc_stat_init+0x0/0x30 returned 0 after 1 usecs
[    0.697003] calling  proc_uptime_init+0x0/0x40 @ 1
[    0.697583] initcall proc_uptime_init+0x0/0x40 returned 0 after 1 usecs
[    0.698360] calling  proc_version_init+0x0/0x40 @ 1
[    0.698948] initcall proc_version_init+0x0/0x40 returned 0 after 0 usecs
[    0.699726] calling  proc_softirqs_init+0x0/0x40 @ 1
[    0.700324] initcall proc_softirqs_init+0x0/0x40 returned 0 after 0 usecs
[    0.701111] calling  proc_kcore_init+0x0/0x170 @ 1
[    0.701757] initcall proc_kcore_init+0x0/0x170 returned 0 after 67 usecs
[    0.702549] calling  vmcore_init+0x0/0x920 @ 1
[    0.703121] initcall vmcore_init+0x0/0x920 returned 0 after 3 usecs
[    0.703884] calling  proc_kmsg_init+0x0/0x30 @ 1
[    0.704469] initcall proc_kmsg_init+0x0/0x30 returned 0 after 4 usecs
[    0.705244] calling  proc_page_init+0x0/0x70 @ 1
[    0.705838] initcall proc_page_init+0x0/0x70 returned 0 after 1 usecs
[    0.706622] calling  init_ramfs_fs+0x0/0x20 @ 1
[    0.707199] initcall init_ramfs_fs+0x0/0x20 returned 0 after 5 usecs
[    0.707964] calling  init_hugetlbfs_fs+0x0/0x1c0 @ 1
[    0.708575] initcall init_hugetlbfs_fs+0x0/0x1c0 returned 0 after 44 usecs
[    0.709124] calling  aa_create_aafs+0x0/0x3c0 @ 1
[    0.709496] initcall aa_create_aafs+0x0/0x3c0 returned 0 after 3 usecs
[    0.709991] calling  dynamic_debug_init_control+0x0/0xa0 @ 1
[    0.710437] initcall dynamic_debug_init_control+0x0/0xa0 returned 0 after 10 usecs
[    0.710994] calling  acpi_event_init+0x0/0x50 @ 1
[    0.711365] initcall acpi_event_init+0x0/0x50 returned 0 after 7 usecs
[    0.711847] calling  pnp_system_init+0x0/0x20 @ 1
[    0.712225] initcall pnp_system_init+0x0/0x20 returned 0 after 16 usecs
[    0.712715] calling  pnpacpi_init+0x0/0x80 @ 1
[    0.713062] pnp: PnP ACPI init
[    0.713443] pnp 00:03: [dma 2]
[    0.713834] pnp: PnP ACPI: found 5 devices
[    0.714161] initcall pnpacpi_init+0x0/0x80 returned 0 after 1099 usecs
[    0.714665] calling  chr_dev_init+0x0/0xb0 @ 1
[    0.716479] initcall chr_dev_init+0x0/0xb0 returned 0 after 1465 usecs
[    0.716974] calling  hwrng_modinit+0x0/0xc0 @ 1
[    0.717371] initcall hwrng_modinit+0x0/0xc0 returned 0 after 41 usecs
[    0.717859] calling  firmware_class_init+0x0/0x120 @ 1
[    0.718281] initcall firmware_class_init+0x0/0x120 returned 0 after 17 usecs
[    0.718801] calling  map_properties+0x0/0x670 @ 1
[    0.719170] initcall map_properties+0x0/0x670 returned 0 after 3 usecs
[    0.719660] calling  init_acpi_pm_clocksource+0x0/0x110 @ 1
[    0.724755] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.725536] initcall init_acpi_pm_clocksource+0x0/0x110 returned 0 after 5452 usecs
[    0.726233] calling  powercap_init+0x0/0x290 @ 1
[    0.726686] initcall powercap_init+0x0/0x290 returned 0 after 16 usecs
[    0.727279] calling  sysctl_core_init+0x0/0x40 @ 1
[    0.727748] initcall sysctl_core_init+0x0/0x40 returned 0 after 20 usecs
[    0.728349] calling  eth_offload_init+0x0/0x30 @ 1
[    0.728821] initcall eth_offload_init+0x0/0x30 returned 0 after 3 usecs
[    0.729417] calling  ipv4_offload_init+0x0/0xe0 @ 1
[    0.729887] initcall ipv4_offload_init+0x0/0xe0 returned 0 after 5 usecs
[    0.730494] calling  inet_init+0x0/0x360 @ 1
[    0.730926] NET: Registered PF_INET protocol family
[    0.740032] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.741707] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.742500] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.743200] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.744360] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.746061] TCP: Hash tables configured (established 65536 bind 65536)
[    0.746743] UDP hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.747594] UDP-Lite hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.748521] initcall inet_init+0x0/0x360 returned 0 after 17624 usecs
[    0.749107] calling  af_unix_init+0x0/0x120 @ 1
[    0.749533] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.750060] initcall af_unix_init+0x0/0x120 returned 0 after 528 usecs
[    0.750983] calling  ipv6_offload_init+0x0/0xf0 @ 1
[    0.751447] initcall ipv6_offload_init+0x0/0xf0 returned 0 after 0 usecs
[    0.752048] calling  vlan_offload_init+0x0/0x30 @ 1
[    0.752504] initcall vlan_offload_init+0x0/0x30 returned 0 after 0 usecs
[    0.753104] calling  xsk_init+0x0/0xa0 @ 1
[    0.753500] NET: Registered PF_XDP protocol family
[    0.753952] initcall xsk_init+0x0/0xa0 returned 0 after 453 usecs
[    0.754501] calling  pcibios_assign_resources+0x0/0xe0 @ 1
[    0.754939] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.755397] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.755859] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.756364] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfebfffff window]
[    0.756866] pci_bus 0000:00: resource 8 [mem 0x240000000-0x2bfffffff window]
[    0.757404] initcall pcibios_assign_resources+0x0/0xe0 returned 0 after 2480 usecs
[    0.757957] calling  pci_apply_final_quirks+0x0/0x160 @ 1
[    0.758371] pci 0000:00:00.0: calling  quirk_passive_release+0x0/0xb0 @ 1
[    0.758959] pci 0000:00:01.0: PIIX3: Enabling Passive Release
[    0.759491] pci 0000:00:00.0: quirk_passive_release+0x0/0xb0 took 526 usecs
[    0.760116] pci 0000:00:00.0: calling  quirk_natoma+0x0/0x40 @ 1
[    0.760669] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    0.761182] pci 0000:00:00.0: quirk_natoma+0x0/0x40 took 504 usecs
[    0.761677] pci 0000:00:04.0: calling  quirk_usb_early_handoff+0x0/0x6d0 @ 1
[    0.773281] ACPI: \_SB_.LNKD: Enabled at IRQ 11
[    0.784960] pci 0000:00:04.0: quirk_usb_early_handoff+0x0/0x6d0 took 22220 usecs
[    0.785556] PCI: CLS 0 bytes, default 64
[    0.785883] initcall pci_apply_final_quirks+0x0/0x160 returned 0 after 27517 usecs
[    0.786451] calling  acpi_reserve_resources+0x0/0x120 @ 1
[    0.786876] initcall acpi_reserve_resources+0x0/0x120 returned 0 after 8 usecs
[    0.787421] calling  p2sb_fs_init+0x0/0x160 @ 1
[    0.787806] initcall p2sb_fs_init+0x0/0x160 returned -2 after 22 usecs
[    0.788295] calling  populate_rootfs+0x0/0x60 @ 1
[    0.788747] Trying to unpack rootfs image as initramfs...
[    0.789914] initcall populate_rootfs+0x0/0x60 returned 0 after 1247 usecs
[    0.790834] calling  pci_iommu_init+0x0/0x50 @ 1
[    0.791447] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.792189] software IO TLB: mapped [mem 0x00000000af000000-0x00000000b3000000] (64MB)
[    0.793114] initcall pci_iommu_init+0x0/0x50 returned 0 after 1672 usecs
[    0.793893] calling  ir_dev_scope_init+0x0/0x50 @ 1
[    0.794486] initcall ir_dev_scope_init+0x0/0x50 returned 0 after 3 usecs
[    0.795321] calling  snp_init_platform_device+0x0/0x50 @ 1
[    0.795953] initcall snp_init_platform_device+0x0/0x50 returned -19 after 3 usecs
[    0.796823] calling  ia32_binfmt_init+0x0/0x30 @ 1
[    0.797405] initcall ia32_binfmt_init+0x0/0x30 returned 0 after 7 usecs
[    0.798175] calling  amd_ibs_init+0x0/0x370 @ 1
[    0.798738] initcall amd_ibs_init+0x0/0x370 returned -19 after 2 usecs
[    0.799523] calling  amd_uncore_init+0x0/0x1c0 @ 1
[    0.800120] initcall amd_uncore_init+0x0/0x1c0 returned -19 after 0 usecs
[    0.800904] calling  amd_iommu_pc_init+0x0/0x280 @ 1
[    0.801476] initcall amd_iommu_pc_init+0x0/0x280 returned -19 after 3 usecs
[    0.802309] calling  msr_init+0x0/0x70 @ 1
[    0.802862] initcall msr_init+0x0/0x70 returned 0 after 32 usecs
[    0.803565] calling  intel_uncore_init+0x0/0x5b0 @ 1
[    0.804160] initcall intel_uncore_init+0x0/0x5b0 returned -19 after 2 usecs
[    0.804961] calling  register_kernel_offset_dumper+0x0/0x30 @ 1
[    0.805651] initcall register_kernel_offset_dumper+0x0/0x30 returned 0 after 0 usecs
[    0.806541] calling  i8259A_init_ops+0x0/0x40 @ 1
[    0.807102] initcall i8259A_init_ops+0x0/0x40 returned 0 after 1 usecs
[    0.807865] calling  init_tsc_clocksource+0x0/0xe0 @ 1
[    0.808486] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x28680fa287f, max_idle_ns: 440795281151 ns
[    0.809603] initcall init_tsc_clocksource+0x0/0xe0 returned 0 after 1117 usecs
[    0.810795] calling  add_rtc_cmos+0x0/0xc0 @ 1
[    0.811359] initcall add_rtc_cmos+0x0/0xc0 returned 0 after 8 usecs
[    0.812078] calling  i8237A_init_ops+0x0/0x60 @ 1
[    0.812649] initcall i8237A_init_ops+0x0/0x60 returned 0 after 9 usecs
[    0.813434] calling  umwait_init+0x0/0xb0 @ 1
[    0.813995] initcall umwait_init+0x0/0xb0 returned -19 after 2 usecs
[    0.814601] calling  ioapic_init_ops+0x0/0x30 @ 1
[    0.815012] initcall ioapic_init_ops+0x0/0x30 returned 0 after 0 usecs
[    0.815501] calling  register_e820_pmem+0x0/0x90 @ 1
[    0.815893] initcall register_e820_pmem+0x0/0x90 returned 0 after 4 usecs
[    0.816394] calling  add_pcspkr+0x0/0x80 @ 1
[    0.816822] initcall add_pcspkr+0x0/0x80 returned 0 after 66 usecs
[    0.817281] calling  start_periodic_check_for_corruption+0x0/0x60 @ 1
[    0.817764] initcall start_periodic_check_for_corruption+0x0/0x60 returned 0 after 2 usecs
[    0.818372] calling  audit_classes_init+0x0/0xc0 @ 1
[    0.818765] initcall audit_classes_init+0x0/0xc0 returned 0 after 6 usecs
[    0.819275] calling  pt_dump_init+0x0/0x50 @ 1
[    0.819628] initcall pt_dump_init+0x0/0x50 returned 0 after 2 usecs
[    0.820103] calling  iosf_mbi_init+0x0/0xc0 @ 1
[    0.820487] initcall iosf_mbi_init+0x0/0xc0 returned 0 after 27 usecs
[    0.820962] calling  proc_execdomains_init+0x0/0x30 @ 1
[    0.821368] initcall proc_execdomains_init+0x0/0x30 returned 0 after 4 usecs
[    0.821886] calling  register_warn_debugfs+0x0/0x40 @ 1
[    0.822338] initcall register_warn_debugfs+0x0/0x40 returned 0 after 1 usecs
[    0.822850] calling  cpuhp_sysfs_init+0x0/0x100 @ 1
[    0.823237] initcall cpuhp_sysfs_init+0x0/0x100 returned 0 after 14 usecs
[    0.823744] calling  ioresources_init+0x0/0x60 @ 1
[    0.824176] initcall ioresources_init+0x0/0x60 returned 0 after 2 usecs
[    0.824728] calling  psi_proc_init+0x0/0x90 @ 1
[    0.825092] initcall psi_proc_init+0x0/0x90 returned 0 after 4 usecs
[    0.825558] calling  snapshot_device_init+0x0/0x20 @ 1
[    0.826062] initcall snapshot_device_init+0x0/0x20 returned 0 after 87 usecs
[    0.826585] calling  irq_gc_init_ops+0x0/0x30 @ 1
[    0.826944] initcall irq_gc_init_ops+0x0/0x30 returned 0 after 2 usecs
[    0.827416] calling  irq_pm_init_ops+0x0/0x30 @ 1
[    0.827773] initcall irq_pm_init_ops+0x0/0x30 returned 0 after 0 usecs
[    0.828247] calling  klp_init+0x0/0x40 @ 1
[    0.828566] initcall klp_init+0x0/0x40 returned 0 after 3 usecs
[    0.829005] calling  proc_modules_init+0x0/0x30 @ 1
[    0.829380] initcall proc_modules_init+0x0/0x30 returned 0 after 1 usecs
[    0.829896] calling  timer_sysctl_init+0x0/0x30 @ 1
[    0.830342] initcall timer_sysctl_init+0x0/0x30 returned 0 after 3 usecs
[    0.830925] calling  timekeeping_init_ops+0x0/0x30 @ 1
[    0.831358] initcall timekeeping_init_ops+0x0/0x30 returned 0 after 0 usecs
[    0.831865] calling  init_clocksource_sysfs+0x0/0x40 @ 1
[    0.832297] initcall init_clocksource_sysfs+0x0/0x40 returned 0 after 30 usecs
[    0.832830] calling  init_timer_list_procfs+0x0/0x40 @ 1
[    0.833283] initcall init_timer_list_procfs+0x0/0x40 returned 0 after 2 usecs
[    0.833816] calling  alarmtimer_init+0x0/0xf0 @ 1
[    0.834210] initcall alarmtimer_init+0x0/0xf0 returned 0 after 17 usecs
[    0.834727] calling  init_posix_timers+0x0/0x90 @ 1
[    0.835112] initcall init_posix_timers+0x0/0x90 returned 0 after 4 usecs
[    0.835615] calling  clockevents_init_sysfs+0x0/0xe0 @ 1
[    0.836068] initcall clockevents_init_sysfs+0x0/0xe0 returned 0 after 48 usecs
[    0.836593] calling  proc_dma_init+0x0/0x30 @ 1
[    0.836943] initcall proc_dma_init+0x0/0x30 returned 0 after 2 usecs
[    0.837416] calling  kallsyms_init+0x0/0x30 @ 1
[    0.837795] initcall kallsyms_init+0x0/0x30 returned 0 after 1 usecs
[    0.838387] calling  pid_namespaces_init+0x0/0xc0 @ 1
[    0.838859] initcall pid_namespaces_init+0x0/0xc0 returned 0 after 16 usecs
[    0.839450] calling  ikconfig_init+0x0/0x60 @ 1
[    0.839868] initcall ikconfig_init+0x0/0x60 returned 0 after 0 usecs
[    0.840797] calling  audit_watch_init+0x0/0x60 @ 1
[    0.841257] initcall audit_watch_init+0x0/0x60 returned 0 after 3 usecs
[    0.841887] calling  audit_fsnotify_init+0x0/0x60 @ 1
[    0.842305] initcall audit_fsnotify_init+0x0/0x60 returned 0 after 6 usecs
[    0.842808] calling  audit_tree_init+0x0/0xd0 @ 1
[    0.843164] initcall audit_tree_init+0x0/0xd0 returned 0 after 1 usecs
[    0.843635] calling  seccomp_sysctl_init+0x0/0x40 @ 1
[    0.844018] initcall seccomp_sysctl_init+0x0/0x40 returned 0 after 2 usecs
[    0.844514] calling  utsname_sysctl_init+0x0/0x30 @ 1
[    0.844894] initcall utsname_sysctl_init+0x0/0x30 returned 0 after 4 usecs
[    0.845407] calling  init_tracepoints+0x0/0x50 @ 1
[    0.845775] initcall init_tracepoints+0x0/0x50 returned 0 after 1 usecs
[    0.846414] calling  stack_trace_init+0x0/0xc0 @ 1
[    0.846900] initcall stack_trace_init+0x0/0xc0 returned 0 after 16 usecs
[    0.847418] calling  init_mmio_trace+0x0/0x20 @ 1
[    0.847773] initcall init_mmio_trace+0x0/0x20 returned 0 after 2 usecs
[    0.848244] calling  init_blk_tracer+0x0/0x70 @ 1
[    0.848618] initcall init_blk_tracer+0x0/0x70 returned 0 after 9 usecs
[    0.849089] calling  perf_event_sysfs_init+0x0/0xb0 @ 1
[    0.849628] initcall perf_event_sysfs_init+0x0/0xb0 returned 0 after 118 usecs
[    0.850162] calling  system_trusted_keyring_init+0x0/0x110 @ 1
[    0.850615] Initialise system trusted keyrings
[    0.850969] initcall system_trusted_keyring_init+0x0/0x110 returned 0 after 354 usecs
[    0.851533] calling  blacklist_init+0x0/0x100 @ 1
[    0.851897] Key type blacklist registered
[    0.852227] initcall blacklist_init+0x0/0x100 returned 0 after 331 usecs
[    0.852785] calling  kswapd_init+0x0/0xa0 @ 1
[    0.853322] initcall kswapd_init+0x0/0xa0 returned 0 after 150 usecs
[    0.853802] calling  extfrag_debug_init+0x0/0x70 @ 1
[    0.854233] initcall extfrag_debug_init+0x0/0x70 returned 0 after 4 usecs
[    0.854731] calling  mm_compute_batch_init+0x0/0x30 @ 1
[    0.855134] initcall mm_compute_batch_init+0x0/0x30 returned 0 after 5 usecs
[    0.855648] calling  slab_proc_init+0x0/0x30 @ 1
[    0.856013] initcall slab_proc_init+0x0/0x30 returned 0 after 4 usecs
[    0.856508] calling  workingset_init+0x0/0xd0 @ 1
[    0.856882] workingset: timestamp_bits=36 max_order=21 bucket_order=0
[    0.857385] initcall workingset_init+0x0/0xd0 returned 0 after 505 usecs
[    0.857928] calling  proc_vmalloc_init+0x0/0x50 @ 1
[    0.858466] initcall proc_vmalloc_init+0x0/0x50 returned 0 after 2 usecs
[    0.859155] calling  slab_debugfs_init+0x0/0x70 @ 1
[    0.859786] initcall slab_debugfs_init+0x0/0x70 returned 0 after 18 usecs
[    0.860542] calling  procswaps_init+0x0/0x30 @ 1
[    0.861148] initcall procswaps_init+0x0/0x30 returned 0 after 10 usecs
[    0.861848] calling  zs_init+0x0/0x30 @ 1
[    0.862318] initcall zs_init+0x0/0x30 returned 0 after 7 usecs
[    0.862942] calling  ptdump_debugfs_init+0x0/0x40 @ 1
[    0.863510] initcall ptdump_debugfs_init+0x0/0x40 returned 0 after 7 usecs
[    0.864236] calling  fcntl_init+0x0/0x80 @ 1
[    0.864800] initcall fcntl_init+0x0/0x80 returned 0 after 12 usecs
[    0.865490] calling  proc_filesystems_init+0x0/0x30 @ 1
[    0.865972] initcall proc_filesystems_init+0x0/0x30 returned 0 after 3 usecs
[    0.866525] calling  start_dirtytime_writeback+0x0/0x60 @ 1
[    0.866949] initcall start_dirtytime_writeback+0x0/0x60 returned 0 after 6 usecs
[    0.867483] calling  dio_init+0x0/0x90 @ 1
[    0.867813] initcall dio_init+0x0/0x90 returned 0 after 2 usecs
[    0.868249] calling  dnotify_init+0x0/0x120 @ 1
[    0.868618] initcall dnotify_init+0x0/0x120 returned 0 after 17 usecs
[    0.869092] calling  fanotify_user_setup+0x0/0x250 @ 1
[    0.869487] initcall fanotify_user_setup+0x0/0x250 returned 0 after 3 usecs
[    0.869999] calling  userfaultfd_init+0x0/0xc0 @ 1
[    0.870966] initcall userfaultfd_init+0x0/0xc0 returned 0 after 105 usecs
[    0.871559] calling  aio_setup+0x0/0x120 @ 1
[    0.871969] initcall aio_setup+0x0/0x120 returned 0 after 21 usecs
[    0.872503] calling  mbcache_init+0x0/0x90 @ 1
[    0.872906] initcall mbcache_init+0x0/0x90 returned 0 after 3 usecs
[    0.873447] calling  init_devpts_fs+0x0/0x50 @ 1
[    0.873874] initcall init_devpts_fs+0x0/0x50 returned 0 after 4 usecs
[    0.874443] calling  ext4_init_fs+0x0/0x210 @ 1
[    0.874913] initcall ext4_init_fs+0x0/0x210 returned 0 after 57 usecs
[    0.875474] calling  journal_init+0x0/0x1f0 @ 1
[    0.875911] initcall journal_init+0x0/0x1f0 returned 0 after 19 usecs
[    0.876473] calling  init_squashfs_fs+0x0/0xd0 @ 1
[    0.876908] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.877423] initcall init_squashfs_fs+0x0/0xd0 returned 0 after 517 usecs
[    0.878011] calling  init_fat_fs+0x0/0xb0 @ 1
[    0.878430] initcall init_fat_fs+0x0/0xb0 returned 0 after 4 usecs
[    0.879014] calling  init_vfat_fs+0x0/0x20 @ 1
[    0.879462] initcall init_vfat_fs+0x0/0x20 returned 0 after 4 usecs
[    0.880064] calling  ecryptfs_init+0x0/0x230 @ 1
[    0.880703] initcall ecryptfs_init+0x0/0x230 returned 0 after 208 usecs
[    0.881302] calling  init_nls_cp437+0x0/0x30 @ 1
[    0.881725] initcall init_nls_cp437+0x0/0x30 returned 0 after 2 usecs
[    0.882239] calling  fuse_init+0x0/0x250 @ 1
[    0.882610] fuse: init (API version 7.43)
[    0.883040] initcall fuse_init+0x0/0x250 returned 0 after 430 usecs
[    0.883556] calling  efivarfs_init+0x0/0x20 @ 1
[    0.883906] initcall efivarfs_init+0x0/0x20 returned 0 after 0 usecs
[    0.884379] calling  ipc_init+0x0/0x40 @ 1
[    0.884701] initcall ipc_init+0x0/0x40 returned 0 after 5 usecs
[    0.885139] calling  ipc_sysctl_init+0x0/0x40 @ 1
[    0.885544] initcall ipc_sysctl_init+0x0/0x40 returned 0 after 13 usecs
[    0.886134] calling  init_mqueue_fs+0x0/0x160 @ 1
[    0.886536] initcall init_mqueue_fs+0x0/0x160 returned 0 after 25 usecs
[    0.887028] calling  key_proc_init+0x0/0x80 @ 1
[    0.887386] initcall key_proc_init+0x0/0x80 returned 0 after 2 usecs
[    0.887850] calling  selinux_nf_ip_init+0x0/0x60 @ 1
[    0.888228] initcall selinux_nf_ip_init+0x0/0x60 returned 0 after 2 usecs
[    0.888732] calling  init_sel_fs+0x0/0x140 @ 1
[    0.889088] initcall init_sel_fs+0x0/0x140 returned 0 after 0 usecs
[    0.889559] calling  selnl_init+0x0/0xa0 @ 1
[    0.889956] initcall selnl_init+0x0/0xa0 returned 0 after 6 usecs
[    0.890608] calling  sel_netif_init+0x0/0x50 @ 1
[    0.891129] initcall sel_netif_init+0x0/0x50 returned 0 after 0 usecs
[    0.891831] calling  sel_netnode_init+0x0/0x40 @ 1
[    0.892370] initcall sel_netnode_init+0x0/0x40 returned 0 after 0 usecs
[    0.893047] calling  sel_netport_init+0x0/0x40 @ 1
[    0.893558] initcall sel_netport_init+0x0/0x40 returned 0 after 0 usecs
[    0.894248] calling  aurule_init+0x0/0x40 @ 1
[    0.894726] initcall aurule_init+0x0/0x40 returned 0 after 0 usecs
[    0.895358] calling  apparmor_nf_ip_init+0x0/0x50 @ 1
[    0.895890] initcall apparmor_nf_ip_init+0x0/0x50 returned 0 after 0 usecs
[    0.896586] calling  bpf_crypto_skcipher_init+0x0/0x20 @ 1
[    0.897166] initcall bpf_crypto_skcipher_init+0x0/0x20 returned 0 after 6 usecs
[    0.897809] calling  crypto_hkdf_module_init+0x0/0x20 @ 1
[    0.898345] initcall crypto_hkdf_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.899015] calling  jent_mod_init+0x0/0xf0 @ 1
[    0.908588] initcall jent_mod_init+0x0/0xf0 returned 0 after 9088 usecs
[    0.909341] calling  asymmetric_key_init+0x0/0x20 @ 1
[    0.909906] Key type asymmetric registered
[    0.910376] initcall asymmetric_key_init+0x0/0x20 returned 0 after 471 usecs
[    0.911073] calling  x509_key_init+0x0/0x20 @ 1
[    0.911615] Asymmetric key parser 'x509' registered
[    0.912120] initcall x509_key_init+0x0/0x20 returned 0 after 505 usecs
[    0.912771] calling  crypto_kdf108_init+0x0/0x20 @ 1
[    0.913324] initcall crypto_kdf108_init+0x0/0x20 returned 0 after 0 usecs
[    0.914056] calling  blkdev_init+0x0/0x30 @ 1
[    0.914589] initcall blkdev_init+0x0/0x30 returned 0 after 39 usecs
[    0.915203] calling  proc_genhd_init+0x0/0x50 @ 1
[    0.915682] initcall proc_genhd_init+0x0/0x50 returned 0 after 6 usecs
[    0.916353] calling  bsg_init+0x0/0xa0 @ 1
[    0.916740] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    0.917376] initcall bsg_init+0x0/0xa0 returned 0 after 648 usecs
[    0.917909] calling  throtl_init+0x0/0x50 @ 1
[    0.918406] initcall throtl_init+0x0/0x50 returned 0 after 111 usecs
[    0.918876] calling  ioc_init+0x0/0x20 @ 1
[    0.919197] initcall ioc_init+0x0/0x20 returned 0 after 3 usecs
[    0.919659] calling  deadline_init+0x0/0x20 @ 1
[    0.920001] io scheduler mq-deadline registered
[    0.920343] initcall deadline_init+0x0/0x20 returned 0 after 342 usecs
[    0.920902] calling  bfq_init+0x0/0xf0 @ 1
[    0.921294] io scheduler bfq registered
[    0.921647] initcall bfq_init+0x0/0xf0 returned 0 after 370 usecs
[    0.922183] calling  io_uring_init+0x0/0xe0 @ 1
[    0.922632] initcall io_uring_init+0x0/0xe0 returned 0 after 15 usecs
[    0.923187] calling  blake2s_mod_init+0x0/0x20 @ 1
[    0.923615] initcall blake2s_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.924185] calling  btree_module_init+0x0/0x80 @ 1
[    0.924623] initcall btree_module_init+0x0/0x80 returned 0 after 1 usecs
[    0.925195] calling  percpu_counter_startup+0x0/0x70 @ 1
[    0.927927] initcall percpu_counter_startup+0x0/0x70 returned 0 after 2270 usecs
[    0.928513] calling  digsig_init+0x0/0x50 @ 1
[    0.928870] initcall digsig_init+0x0/0x50 returned 0 after 6 usecs
[    0.929331] calling  phy_core_init+0x0/0x60 @ 1
[    0.929686] initcall phy_core_init+0x0/0x60 returned 0 after 11 usecs
[    0.930176] calling  amd_gpio_driver_init+0x0/0x30 @ 1
[    0.931019] initcall amd_gpio_driver_init+0x0/0x30 returned 0 after 19 usecs
[    0.931537] calling  crystalcove_pwm_driver_init+0x0/0x30 @ 1
[    0.931970] initcall crystalcove_pwm_driver_init+0x0/0x30 returned 0 after 5 usecs
[    0.932514] calling  pwm_lpss_driver_pci_init+0x0/0x30 @ 1
[    0.932932] initcall pwm_lpss_driver_pci_init+0x0/0x30 returned 0 after 11 usecs
[    0.933497] calling  pwm_lpss_driver_platform_init+0x0/0x30 @ 1
[    0.934018] initcall pwm_lpss_driver_platform_init+0x0/0x30 returned 0 after 3 usecs
[    0.934648] calling  ledtrig_disk_init+0x0/0x50 @ 1
[    0.935019] initcall ledtrig_disk_init+0x0/0x50 returned 0 after 2 usecs
[    0.935506] calling  ledtrig_mtd_init+0x0/0x40 @ 1
[    0.935876] initcall ledtrig_mtd_init+0x0/0x40 returned 0 after 0 usecs
[    0.936355] calling  ledtrig_cpu_init+0x0/0x100 @ 1
[    0.936813] ledtrig-cpu: registered to indicate activity on CPUs
[    0.937297] initcall ledtrig_cpu_init+0x0/0x100 returned 0 after 573 usecs
[    0.937887] calling  ledtrig_panic_init+0x0/0x60 @ 1
[    0.938277] initcall ledtrig_panic_init+0x0/0x60 returned 0 after 1 usecs
[    0.938772] calling  pcie_portdrv_init+0x0/0x60 @ 1
[    0.939169] initcall pcie_portdrv_init+0x0/0x60 returned 0 after 30 usecs
[    0.939663] calling  pci_proc_init+0x0/0x80 @ 1
[    0.940025] initcall pci_proc_init+0x0/0x80 returned 0 after 14 usecs
[    0.940499] calling  pci_hotplug_init+0x0/0x50 @ 1
[    0.940928] initcall pci_hotplug_init+0x0/0x50 returned 0 after 0 usecs
[    0.941502] calling  shpcd_init+0x0/0x30 @ 1
[    0.941907] initcall shpcd_init+0x0/0x30 returned 0 after 7 usecs
[    0.942451] calling  pci_ep_cfs_init+0x0/0x100 @ 1
[    0.942916] initcall pci_ep_cfs_init+0x0/0x100 returned 0 after 35 usecs
[    0.943491] calling  pci_epc_init+0x0/0x20 @ 1
[    0.943901] initcall pci_epc_init+0x0/0x20 returned 0 after 7 usecs
[    0.944444] calling  pci_epf_init+0x0/0x50 @ 1
[    0.944856] initcall pci_epf_init+0x0/0x50 returned 0 after 8 usecs
[    0.945405] calling  dw_plat_pcie_driver_init+0x0/0x30 @ 1
[    0.945884] initcall dw_plat_pcie_driver_init+0x0/0x30 returned 0 after 4 usecs
[    0.946415] calling  imsttfb_init+0x0/0x150 @ 1
[    0.946775] initcall imsttfb_init+0x0/0x150 returned 0 after 14 usecs
[    0.947257] calling  asiliantfb_init+0x0/0x60 @ 1
[    0.947695] initcall asiliantfb_init+0x0/0x60 returned 0 after 12 usecs
[    0.948263] calling  vesafb_driver_init+0x0/0x30 @ 1
[    0.948710] initcall vesafb_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.949298] calling  efifb_driver_init+0x0/0x30 @ 1
[    0.949739] initcall efifb_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.950331] calling  simplefb_driver_init+0x0/0x30 @ 1
[    0.950736] initcall simplefb_driver_init+0x0/0x30 returned 0 after 4 usecs
[    0.951243] calling  intel_idle_init+0x0/0xd90 @ 1
[    0.951617] initcall intel_idle_init+0x0/0xd90 returned -19 after 3 usecs
[    0.952103] calling  ged_driver_init+0x0/0x30 @ 1
[    0.952463] initcall ged_driver_init+0x0/0x30 returned 0 after 3 usecs
[    0.952936] calling  acpi_ac_init+0x0/0x60 @ 1
[    0.953298] initcall acpi_ac_init+0x0/0x60 returned 0 after 23 usecs
[    0.953763] calling  acpi_button_driver_init+0x0/0x70 @ 1
[    0.954243] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    0.954896] ACPI: button: Power Button [PWRF]
[    0.955235] probe of LNXPWRBN:00 returned 0 after 1043 usecs
[    0.955662] initcall acpi_button_driver_init+0x0/0x70 returned 0 after 1482 usecs
[    0.956276] calling  acpi_fan_driver_init+0x0/0x30 @ 1
[    0.956671] initcall acpi_fan_driver_init+0x0/0x30 returned 0 after 7 usecs
[    0.957179] calling  acpi_processor_driver_init+0x0/0xd0 @ 1
[    0.957623] probe of cpu0 returned 0 after 15 usecs
[    0.958036] probe of cpu1 returned 0 after 18 usecs
[    0.958445] probe of cpu2 returned 0 after 9 usecs
[    0.958821] probe of cpu3 returned 0 after 11 usecs
[    0.962048] initcall acpi_processor_driver_init+0x0/0xd0 returned 0 after 4449 usecs
[    0.962618] calling  acpi_thermal_init+0x0/0xa0 @ 1
[    0.963111] initcall acpi_thermal_init+0x0/0xa0 returned 0 after 122 usecs
[    0.963610] calling  acpi_battery_init+0x0/0x60 @ 1
[    0.963984] initcall acpi_battery_init+0x0/0x60 returned 0 after 10 usecs
[    0.964477] calling  bgrt_init+0x0/0xe0 @ 1
[    0.964798] initcall bgrt_init+0x0/0xe0 returned -19 after 2 usecs
[    0.965251] calling  acpi_aml_init+0x0/0xe0 @ 1
[    0.965605] initcall acpi_aml_init+0x0/0xe0 returned 0 after 7 usecs
[    0.966090] calling  erst_init+0x0/0x350 @ 1
[    0.966538] initcall erst_init+0x0/0x350 returned 0 after 24 usecs
[    0.967017] calling  gpio_clk_driver_init+0x0/0x30 @ 1
[    0.967411] initcall gpio_clk_driver_init+0x0/0x30 returned 0 after 8 usecs
[    0.967913] calling  gated_fixed_clk_driver_init+0x0/0x30 @ 1
[    0.968338] initcall gated_fixed_clk_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.968874] calling  fch_clk_driver_init+0x0/0x30 @ 1
[    0.969255] initcall fch_clk_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.969761] calling  plt_clk_driver_init+0x0/0x30 @ 1
[    0.970151] initcall plt_clk_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.970656] calling  virtio_mmio_init+0x0/0x30 @ 1
[    0.971025] initcall virtio_mmio_init+0x0/0x30 returned 0 after 3 usecs
[    0.971507] calling  virtio_pci_driver_init+0x0/0x30 @ 1
[    0.983201] ACPI: \_SB_.LNKC: Enabled at IRQ 10
[    0.984323] probe of 0000:00:03.0 returned 0 after 12412 usecs
[    0.989928] Freeing initrd memory: 72972K
[    0.995898] ACPI: \_SB_.LNKB: Enabled at IRQ 10
[    0.996863] probe of 0000:00:06.0 returned 0 after 12101 usecs
[    1.008939] probe of 0000:00:07.0 returned 0 after 11642 usecs
[    1.021147] probe of 0000:00:08.0 returned 0 after 11748 usecs
[    1.021595] initcall virtio_pci_driver_init+0x0/0x30 returned 0 after 49693 usecs
[    1.022160] calling  virtio_balloon_driver_init+0x0/0x30 @ 1
[    1.023057] probe of virtio3 returned 0 after 459 usecs
[    1.023470] initcall virtio_balloon_driver_init+0x0/0x30 returned 0 after 875 usecs
[    1.024022] calling  xenbus_probe_initcall+0x0/0xb0 @ 1
[    1.024415] initcall xenbus_probe_initcall+0x0/0xb0 returned -19 after 0 usecs
[    1.024937] calling  xenbus_init+0x0/0x60 @ 1
[    1.025269] initcall xenbus_init+0x0/0x60 returned -19 after 0 usecs
[    1.025728] calling  xenbus_backend_init+0x0/0x60 @ 1
[    1.026109] initcall xenbus_backend_init+0x0/0x60 returned -19 after 0 usecs
[    1.026634] calling  hyper_sysfs_init+0x0/0x250 @ 1
[    1.027006] initcall hyper_sysfs_init+0x0/0x250 returned -19 after 0 usecs
[    1.027506] calling  hypervisor_subsys_init+0x0/0x40 @ 1
[    1.027906] initcall hypervisor_subsys_init+0x0/0x40 returned -19 after 0 usecs
[    1.028435] calling  platform_driver_init+0x0/0x30 @ 1
[    1.028837] initcall platform_driver_init+0x0/0x30 returned 0 after 14 usecs
[    1.029346] calling  xen_late_init_mcelog+0x0/0x90 @ 1
[    1.029733] initcall xen_late_init_mcelog+0x0/0x90 returned -19 after 0 usecs
[    1.030264] calling  xen_acpi_processor_init+0x0/0x200 @ 1
[    1.030685] initcall xen_acpi_processor_init+0x0/0x200 returned -19 after 0 usecs
[    1.031226] calling  n_null_init+0x0/0x30 @ 1
[    1.031558] initcall n_null_init+0x0/0x30 returned 0 after 3 usecs
[    1.032005] calling  pty_init+0x0/0x400 @ 1
[    1.032398] initcall pty_init+0x0/0x400 returned 0 after 70 usecs
[    1.032850] calling  sysrq_init+0x0/0x90 @ 1
[    1.033183] initcall sysrq_init+0x0/0x90 returned 0 after 2 usecs
[    1.033642] calling  xen_hvc_init+0x0/0x200 @ 1
[    1.034024] initcall xen_hvc_init+0x0/0x200 returned -19 after 0 usecs
[    1.034506] calling  serial8250_init+0x0/0x130 @ 1
[    1.035002] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.035531] probe of 00:00:0 returned 0 after 2 usecs
[    1.035923] probe of 00:00:0.0 returned 0 after 1 usecs
[    1.036482] 00:00: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.037126] probe of 00:00 returned 0 after 1619 usecs
[    1.037551] probe of serial8250:0 returned 0 after 2 usecs
[    1.037971] probe of serial8250:0.1 returned 0 after 1 usecs
[    1.038482] probe of serial8250:0.2 returned 0 after 2 usecs
[    1.038968] probe of serial8250:0.3 returned 0 after 1 usecs
[    1.039452] probe of serial8250:0.4 returned 0 after 1 usecs
[    1.039932] probe of serial8250:0.5 returned 0 after 2 usecs
[    1.040409] probe of serial8250:0.6 returned 0 after 1 usecs
[    1.040888] probe of serial8250:0.7 returned 0 after 4 usecs
[    1.041365] probe of serial8250:0.8 returned 0 after 1 usecs
[    1.041852] probe of serial8250:0.9 returned 0 after 2 usecs
[    1.042343] probe of serial8250:0.10 returned 0 after 2 usecs
[    1.042820] probe of serial8250:0.11 returned 0 after 1 usecs
[    1.043304] probe of serial8250:0.12 returned 0 after 1 usecs
[    1.043780] probe of serial8250:0.13 returned 0 after 1 usecs
[    1.044260] probe of serial8250:0.14 returned 0 after 1 usecs
[    1.044733] probe of serial8250:0.15 returned 0 after 1 usecs
[    1.045261] probe of serial8250:0.16 returned 0 after 1 usecs
[    1.045739] probe of serial8250:0.17 returned 0 after 1 usecs
[    1.046311] probe of serial8250:0.18 returned 0 after 2 usecs
[    1.046800] probe of serial8250:0.19 returned 0 after 2 usecs
[    1.047282] probe of serial8250:0.20 returned 0 after 4 usecs
[    1.047762] probe of serial8250:0.21 returned 0 after 1 usecs
[    1.048242] probe of serial8250:0.22 returned 0 after 1 usecs
[    1.048718] probe of serial8250:0.23 returned 0 after 2 usecs
[    1.049205] probe of serial8250:0.24 returned 0 after 1 usecs
[    1.049683] probe of serial8250:0.25 returned 0 after 2 usecs
[    1.050244] probe of serial8250:0.26 returned 0 after 2 usecs
[    1.051039] probe of serial8250:0.27 returned 0 after 2 usecs
[    1.051517] probe of serial8250:0.28 returned 0 after 2 usecs
[    1.051993] probe of serial8250:0.29 returned 0 after 4 usecs
[    1.052465] probe of serial8250:0.30 returned 0 after 2 usecs
[    1.052938] probe of serial8250:0.31 returned 0 after 1 usecs
[    1.053425] probe of serial8250 returned 0 after 4 usecs
[    1.053866] initcall serial8250_init+0x0/0x130 returned 0 after 18863 usecs
[    1.054384] calling  serial_pci_driver_init+0x0/0x30 @ 1
[    1.054794] initcall serial_pci_driver_init+0x0/0x30 returned 0 after 12 usecs
[    1.055317] calling  pericom8250_pci_driver_init+0x0/0x30 @ 1
[    1.055751] initcall pericom8250_pci_driver_init+0x0/0x30 returned 0 after 5 usecs
[    1.056290] calling  max310x_uart_init+0x0/0x80 @ 1
[    1.056679] initcall max310x_uart_init+0x0/0x80 returned 0 after 12 usecs
[    1.057177] calling  sccnxp_uart_driver_init+0x0/0x30 @ 1
[    1.057587] initcall sccnxp_uart_driver_init+0x0/0x30 returned 0 after 3 usecs
[    1.058121] calling  init_kgdboc+0x0/0x90 @ 1
[    1.058525] probe of kgdboc returned 0 after 6 usecs
[    1.058902] initcall init_kgdboc+0x0/0x90 returned 0 after 398 usecs
[    1.059369] calling  random_sysctls_init+0x0/0x40 @ 1
[    1.059755] initcall random_sysctls_init+0x0/0x40 returned 0 after 5 usecs
[    1.060253] calling  ttyprintk_init+0x0/0x140 @ 1
[    1.060654] initcall ttyprintk_init+0x0/0x140 returned 0 after 39 usecs
[    1.061135] calling  virtio_console_init+0x0/0xf0 @ 1
[    1.065871] probe of virtio2 returned 0 after 4346 usecs
[    1.066532] initcall virtio_console_init+0x0/0xf0 returned 0 after 5016 usecs
[    1.067293] calling  hpet_init+0x0/0xa0 @ 1
[    1.067673] initcall hpet_init+0x0/0xa0 returned 0 after 51 usecs
[    1.068125] calling  agp_init+0x0/0x40 @ 1
[    1.068447] Linux agpgart interface v0.103
[    1.068769] initcall agp_init+0x0/0x40 returned 0 after 322 usecs
[    1.069219] calling  agp_amd64_mod_init+0x0/0x40 @ 1
[    1.069622] initcall agp_amd64_mod_init+0x0/0x40 returned -19 after 21 usecs
[    1.070162] calling  agp_intel_init+0x0/0x40 @ 1
[    1.070573] probe of 0000:00:00.0 returned 19 after 33 usecs
[    1.071005] initcall agp_intel_init+0x0/0x40 returned 0 after 483 usecs
[    1.071496] calling  agp_via_init+0x0/0x40 @ 1
[    1.071851] initcall agp_via_init+0x0/0x40 returned 0 after 8 usecs
[    1.072313] calling  init_tis+0x0/0xf0 @ 1
[    1.072651] initcall init_tis+0x0/0xf0 returned 0 after 18 usecs
[    1.073096] calling  crb_acpi_driver_init+0x0/0x30 @ 1
[    1.073498] initcall crb_acpi_driver_init+0x0/0x30 returned 0 after 9 usecs
[    1.074022] calling  cn_proc_init+0x0/0x60 @ 1
[    1.074375] initcall cn_proc_init+0x0/0x60 returned 0 after 0 usecs
[    1.074835] calling  topology_sysfs_init+0x0/0x40 @ 1
[    1.075236] initcall topology_sysfs_init+0x0/0x40 returned 0 after 19 usecs
[    1.075741] calling  cacheinfo_sysfs_init+0x0/0x40 @ 1
[    1.076425] initcall cacheinfo_sysfs_init+0x0/0x40 returned 0 after 268 usecs
[    1.076966] calling  devcoredump_init+0x0/0x20 @ 1
[    1.077336] initcall devcoredump_init+0x0/0x20 returned 0 after 3 usecs
[    1.077839] calling  loop_init+0x0/0x100 @ 1
[    1.080043] loop: module loaded
[    1.080661] initcall loop_init+0x0/0x100 returned 0 after 2450 usecs
[    1.081127] calling  xlblk_init+0x0/0x190 @ 1
[    1.081463] initcall xlblk_init+0x0/0x190 returned -19 after 0 usecs
[    1.081940] calling  tps65912_i2c_driver_init+0x0/0x30 @ 1
[    1.082364] initcall tps65912_i2c_driver_init+0x0/0x30 returned 0 after 6 usecs
[    1.082902] calling  tps65912_spi_driver_init+0x0/0x30 @ 1
[    1.083319] initcall tps65912_spi_driver_init+0x0/0x30 returned 0 after 3 usecs
[    1.083847] calling  twl_driver_init+0x0/0x30 @ 1
[    1.084206] initcall twl_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.084678] calling  twl4030_audio_driver_init+0x0/0x30 @ 1
[    1.085094] initcall twl4030_audio_driver_init+0x0/0x30 returned 0 after 4 usecs
[    1.085629] calling  twl6040_driver_init+0x0/0x30 @ 1
[    1.086029] initcall twl6040_driver_init+0x0/0x30 returned 0 after 3 usecs
[    1.086533] calling  da9063_i2c_driver_init+0x0/0x30 @ 1
[    1.086935] initcall da9063_i2c_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.087443] calling  max14577_i2c_init+0x0/0x30 @ 1
[    1.087815] initcall max14577_i2c_init+0x0/0x30 returned 0 after 5 usecs
[    1.088301] calling  max77693_i2c_driver_init+0x0/0x30 @ 1
[    1.088716] initcall max77693_i2c_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.089243] calling  adp5520_driver_init+0x0/0x30 @ 1
[    1.089638] initcall adp5520_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.090144] calling  crystal_cove_i2c_driver_init+0x0/0x30 @ 1
[    1.090588] initcall crystal_cove_i2c_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.091139] calling  cht_wc_driver_init+0x0/0x30 @ 1
[    1.091525] initcall cht_wc_driver_init+0x0/0x30 returned 0 after 5 usecs
[    1.092023] calling  e820_pmem_driver_init+0x0/0x30 @ 1
[    1.092420] initcall e820_pmem_driver_init+0x0/0x30 returned 0 after 3 usecs
[    1.092933] calling  hmem_init+0x0/0x40 @ 1
[    1.093261] initcall hmem_init+0x0/0x40 returned 0 after 2 usecs
[    1.093709] calling  udmabuf_dev_init+0x0/0xc0 @ 1
[    1.094113] initcall udmabuf_dev_init+0x0/0xc0 returned 0 after 41 usecs
[    1.094619] calling  init_sd+0x0/0x140 @ 1
[    1.094947] initcall init_sd+0x0/0x140 returned 0 after 8 usecs
[    1.095387] calling  init_sr+0x0/0x60 @ 1
[    1.095705] initcall init_sr+0x0/0x60 returned 0 after 1 usecs
[    1.096138] calling  init_sg+0x0/0x200 @ 1
[    1.096465] initcall init_sg+0x0/0x200 returned 0 after 7 usecs
[    1.096915] calling  piix_init+0x0/0x40 @ 1
[    1.097260] ata_piix 0000:00:01.1: version 2.13
[    1.098377] scsi host0: ata_piix
[    1.098794] scsi host1: ata_piix
[    1.099084] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc5a0 irq 14 lpm-pol 0
[    1.099642] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc5a8 irq 15 lpm-pol 0
[    1.100201] probe of 0000:00:01.1 returned 0 after 2951 usecs
[    1.100632] initcall piix_init+0x0/0x40 returned 0 after 3387 usecs
[    1.101096] calling  sis_pci_driver_init+0x0/0x30 @ 1
[    1.101485] initcall sis_pci_driver_init+0x0/0x30 returned 0 after 6 usecs
[    1.101992] calling  ata_generic_pci_driver_init+0x0/0x30 @ 1
[    1.102589] initcall ata_generic_pci_driver_init+0x0/0x30 returned 0 after 12 usecs
[    1.103142] calling  blackhole_netdev_init+0x0/0x80 @ 1
[    1.103561] initcall blackhole_netdev_init+0x0/0x80 returned 0 after 27 usecs
[    1.104081] calling  fixed_mdio_bus_init+0x0/0xe0 @ 1
[    1.104474] probe of Fixed MDIO bus returned 0 after 2 usecs
[    1.104962] initcall fixed_mdio_bus_init+0x0/0xe0 returned 0 after 497 usecs
[    1.105479] calling  tun_init+0x0/0xd0 @ 1
[    1.105806] tun: Universal TUN/TAP device driver, 1.6
[    1.106427] initcall tun_init+0x0/0xd0 returned 0 after 620 usecs
[    1.106885] calling  ppp_init+0x0/0x120 @ 1
[    1.107211] PPP generic driver version 2.4.2
[    1.107584] initcall ppp_init+0x0/0x120 returned 0 after 372 usecs
[    1.108044] calling  netif_init+0x0/0x80 @ 1
[    1.108372] initcall netif_init+0x0/0x80 returned -19 after 0 usecs
[    1.108832] calling  vfio_init+0x0/0xa0 @ 1
[    1.109258] VFIO - User Level meta-driver version: 0.3
[    1.109649] initcall vfio_init+0x0/0xa0 returned 0 after 491 usecs
[    1.110175] calling  vfio_iommu_type1_init+0x0/0x20 @ 1
[    1.111117] initcall vfio_iommu_type1_init+0x0/0x20 returned 0 after 0 usecs
[    1.111630] calling  vfio_pci_core_init+0x0/0x20 @ 1
[    1.112009] initcall vfio_pci_core_init+0x0/0x20 returned 0 after 3 usecs
[    1.112510] calling  vfio_pci_init+0x0/0x1c0 @ 1
[    1.112882] initcall vfio_pci_init+0x0/0x1c0 returned 0 after 14 usecs
[    1.113356] calling  cdrom_init+0x0/0x20 @ 1
[    1.113691] initcall cdrom_init+0x0/0x20 returned 0 after 4 usecs
[    1.114155] calling  dwc2_platform_driver_init+0x0/0x30 @ 1
[    1.114578] initcall dwc2_platform_driver_init+0x0/0x30 returned 0 after 5 usecs
[    1.115114] calling  ehci_hcd_init+0x0/0x100 @ 1
[    1.115468] initcall ehci_hcd_init+0x0/0x100 returned 0 after 2 usecs
[    1.115939] calling  ehci_pci_init+0x0/0x70 @ 1
[    1.116299] initcall ehci_pci_init+0x0/0x70 returned 0 after 14 usecs
[    1.116810] calling  ehci_platform_init+0x0/0x50 @ 1
[    1.117199] initcall ehci_platform_init+0x0/0x50 returned 0 after 6 usecs
[    1.117696] calling  ohci_hcd_mod_init+0x0/0x80 @ 1
[    1.118078] initcall ohci_hcd_mod_init+0x0/0x80 returned 0 after 2 usecs
[    1.118570] calling  ohci_pci_init+0x0/0x70 @ 1
[    1.118930] initcall ohci_pci_init+0x0/0x70 returned 0 after 12 usecs
[    1.119402] calling  ohci_platform_init+0x0/0x50 @ 1
[    1.119787] initcall ohci_platform_init+0x0/0x50 returned 0 after 2 usecs
[    1.120274] calling  uhci_hcd_init+0x0/0x140 @ 1
[    1.120638] initcall uhci_hcd_init+0x0/0x140 returned 0 after 12 usecs
[    1.121114] calling  xhci_hcd_init+0x0/0x40 @ 1
[    1.121469] initcall xhci_hcd_init+0x0/0x40 returned 0 after 8 usecs
[    1.121948] calling  xhci_pci_init+0x0/0x80 @ 1
[    1.133707] xhci_hcd 0000:00:04.0: xHCI Host Controller
[    1.134138] xhci_hcd 0000:00:04.0: new USB bus registered, assigned bus number 1
[    1.134863] xhci_hcd 0000:00:04.0: hcc params 0x00087001 hci version 0x100 quirks 0x0000000000000010
[    1.135891] xhci_hcd 0000:00:04.0: xHCI Host Controller
[    1.136294] xhci_hcd 0000:00:04.0: new USB bus registered, assigned bus number 2
[    1.136832] xhci_hcd 0000:00:04.0: Host supports USB 3.0 SuperSpeed
[    1.137359] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.15
[    1.137966] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.138548] usb usb1: Product: xHCI Host Controller
[    1.138920] usb usb1: Manufacturer: Linux 6.15.0-rc5+ xhci-hcd
[    1.139353] usb usb1: SerialNumber: 0000:00:04.0
[    1.139815] hub 1-0:1.0: USB hub found
[    1.140155] hub 1-0:1.0: 15 ports detected
[    1.141163] probe of 1-0:1.0 returned 0 after 1351 usecs
[    1.141635] probe of usb1 returned 0 after 1847 usecs
[    1.142092] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.142691] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.15
[    1.143282] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.143804] usb usb2: Product: xHCI Host Controller
[    1.144177] usb usb2: Manufacturer: Linux 6.15.0-rc5+ xhci-hcd
[    1.144608] usb usb2: SerialNumber: 0000:00:04.0
[    1.145054] hub 2-0:1.0: USB hub found
[    1.145392] hub 2-0:1.0: 15 ports detected
[    1.146086] probe of 2-0:1.0 returned 0 after 1034 usecs
[    1.146518] probe of usb2 returned 0 after 1484 usecs
[    1.146931] probe of 0000:00:04.0 returned 0 after 24619 usecs
[    1.147379] initcall xhci_pci_init+0x0/0x80 returned 0 after 25072 usecs
[    1.147868] calling  kgdbdbgp_start_thread+0x0/0x70 @ 1
[    1.148264] initcall kgdbdbgp_start_thread+0x0/0x70 returned 0 after 2 usecs
[    1.148776] calling  i8042_init+0x0/0x750 @ 1
[    1.149150] probe of 00:01 returned 0 after 9 usecs
[    1.149526] probe of 00:02 returned 0 after 3 usecs
[    1.149911] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[    1.151031] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.151417] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.151863] probe of i8042 returned 0 after 1293 usecs
[    1.152254] initcall i8042_init+0x0/0x750 returned 0 after 3139 usecs
[    1.152724] calling  mousedev_init+0x0/0xa0 @ 1
[    1.153142] mousedev: PS/2 mouse device common for all mice
[    1.153562] initcall mousedev_init+0x0/0xa0 returned 0 after 488 usecs
[    1.154075] calling  evdev_init+0x0/0x20 @ 1
[    1.154454] initcall evdev_init+0x0/0x20 returned 0 after 32 usecs
[    1.154909] calling  atkbd_init+0x0/0x40 @ 1
[    1.155254] initcall atkbd_init+0x0/0x40 returned 0 after 13 usecs
[    1.155712] calling  elants_i2c_driver_init+0x0/0x30 @ 1
[    1.156321] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    1.156962] initcall elants_i2c_driver_init+0x0/0x30 returned 0 after 848 usecs
[    1.157503] calling  uinput_misc_init+0x0/0x20 @ 1
[    1.157897] probe of serio0 returned 0 after 1778 usecs
[    1.158443] initcall uinput_misc_init+0x0/0x20 returned 0 after 554 usecs
[    1.158947] calling  cmos_init+0x0/0x90 @ 1
[    1.159293] rtc_cmos 00:04: RTC can wake from S4
[    1.159856] probe of serio1 returned 19 after 1553 usecs
[    1.160274] probe of alarmtimer.0.auto returned 0 after 2 usecs
[    1.160728] rtc_cmos 00:04: registered as rtc0
[    1.161101] rtc_cmos 00:04: setting system clock to 2025-06-23T05:32:46 UTC (1750656766)
[    1.161722] rtc_cmos 00:04: alarms up to one day, y3k, 242 bytes nvram
[    1.162401] probe of 00:04 returned 0 after 3115 usecs
[    1.162789] initcall cmos_init+0x0/0x90 returned 0 after 3511 usecs
[    1.163250] calling  i2c_dev_init+0x0/0xc0 @ 1
[    1.163589] i2c_dev: i2c /dev entries driver
[    1.163925] initcall i2c_dev_init+0x0/0xc0 returned 0 after 335 usecs
[    1.164399] calling  restart_poweroff_driver_init+0x0/0x30 @ 1
[    1.164831] initcall restart_poweroff_driver_init+0x0/0x30 returned 0 after 6 usecs
[    1.165382] calling  thermal_throttle_init_device+0x0/0x60 @ 1
[    1.165827] initcall thermal_throttle_init_device+0x0/0x60 returned 0 after 0 usecs
[    1.166378] calling  watchdog_gov_noop_register+0x0/0x20 @ 1
[    1.166835] initcall watchdog_gov_noop_register+0x0/0x20 returned 0 after 3 usecs
[    1.167380] calling  dm_init+0x0/0x90 @ 1
[    1.167693] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    1.168560] device-mapper: uevent: version 1.0.3
[    1.168968] device-mapper: ioctl: 4.49.0-ioctl (2025-01-17) initialised: dm-devel@lists.linux.dev
[    1.169602] initcall dm_init+0x0/0x90 returned 0 after 1910 usecs
[    1.170061] calling  ghes_edac_init+0x0/0x470 @ 1
[    1.170772] initcall ghes_edac_init+0x0/0x470 returned -19 after 7 usecs
[    1.171260] calling  amd_pstate_init+0x0/0x330 @ 1
[    1.171624] initcall amd_pstate_init+0x0/0x330 returned -19 after 1 usecs
[    1.172123] calling  intel_pstate_init+0x0/0x8e0 @ 1
[    1.172500] intel_pstate: CPU model not supported
[    1.172856] initcall intel_pstate_init+0x0/0x8e0 returned -19 after 357 usecs
[    1.173371] calling  sysfb_init+0x0/0x110 @ 1
[    1.173743] vesafb: mode is 640x480x32, linelength=2560, pages=0
[    1.174240] vesafb: scrolling: redraw
[    1.174559] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.175000] vesafb: framebuffer at 0xf4000000, mapped to 0x000000006aad54aa, using 1216k, total 1216k
[    1.176212] Console: switching to colour frame buffer device 80x30
[    1.176779] fb0: VESA VGA frame buffer device
[    1.177126] probe of vesa-framebuffer.0 returned 0 after 3390 usecs
[    1.177585] initcall sysfb_init+0x0/0x110 returned 0 after 3881 usecs
[    1.178070] calling  esrt_sysfs_init+0x0/0x330 @ 1
[    1.178447] initcall esrt_sysfs_init+0x0/0x330 returned -38 after 0 usecs
[    1.178936] calling  pmc_atom_init+0x0/0x2b0 @ 1
[    1.179292] initcall pmc_atom_init+0x0/0x2b0 returned -19 after 4 usecs
[    1.179775] calling  rproc_virtio_driver_init+0x0/0x30 @ 1
[    1.180192] initcall rproc_virtio_driver_init+0x0/0x30 returned 0 after 7 usecs
[    1.180718] calling  vmgenid_plaform_driver_init+0x0/0x30 @ 1
[    1.181150] initcall vmgenid_plaform_driver_init+0x0/0x30 returned 0 after 3 usecs
[    1.181699] calling  extcon_class_init+0x0/0x60 @ 1
[    1.182083] initcall extcon_class_init+0x0/0x60 returned 0 after 3 usecs
[    1.182576] calling  binder_init+0x0/0x280 @ 1
[    1.183044] initcall binder_init+0x0/0x280 returned 0 after 114 usecs
[    1.183524] calling  sock_diag_init+0x0/0x40 @ 1
[    1.183920] initcall sock_diag_init+0x0/0x40 returned 0 after 13 usecs
[    1.184392] calling  init_net_drop_monitor+0x0/0x120 @ 1
[    1.184785] drop_monitor: Initializing network drop monitor service
[    1.185255] initcall init_net_drop_monitor+0x0/0x120 returned 0 after 469 usecs
[    1.185825] calling  blackhole_init+0x0/0x20 @ 1
[    1.186193] initcall blackhole_init+0x0/0x20 returned 0 after 0 usecs
[    1.186666] calling  gre_offload_init+0x0/0x70 @ 1
[    1.187030] initcall gre_offload_init+0x0/0x70 returned 0 after 0 usecs
[    1.187517] calling  sysctl_ipv4_init+0x0/0x80 @ 1
[    1.187918] initcall sysctl_ipv4_init+0x0/0x80 returned 0 after 39 usecs
[    1.188406] calling  cubictcp_register+0x0/0x90 @ 1
[    1.188824] initcall cubictcp_register+0x0/0x90 returned 0 after 7 usecs
[    1.189306] calling  inet6_init+0x0/0x3f0 @ 1
[    1.189664] NET: Registered PF_INET6 protocol family
[    1.194374] Segment Routing with IPv6
[    1.194691] In-situ OAM (IOAM) with IPv6
[    1.195017] initcall inet6_init+0x0/0x3f0 returned 0 after 5377 usecs
[    1.195495] calling  packet_init+0x0/0xa0 @ 1
[    1.195836] NET: Registered PF_PACKET protocol family
[    1.196218] initcall packet_init+0x0/0xa0 returned 0 after 384 usecs
[    1.196688] calling  strp_dev_init+0x0/0x40 @ 1
[    1.197100] initcall strp_dev_init+0x0/0x40 returned 0 after 62 usecs
[    1.197586] calling  dcbnl_init+0x0/0x40 @ 1
[    1.197927] initcall dcbnl_init+0x0/0x40 returned 0 after 1 usecs
[    1.198380] calling  init_dns_resolver+0x0/0x100 @ 1
[    1.198769] Key type dns_resolver registered
[    1.199115] initcall init_dns_resolver+0x0/0x100 returned 0 after 350 usecs
[    1.199624] calling  handshake_init+0x0/0xb0 @ 1
[    1.200020] initcall handshake_init+0x0/0xb0 returned 0 after 9 usecs
[    1.201107] calling  pm_check_save_msr+0x0/0xd0 @ 1
[    1.201486] initcall pm_check_save_msr+0x0/0xd0 returned 0 after 6 usecs
[    1.201987] calling  mcheck_init_device+0x0/0x160 @ 1
[    1.202598] initcall mcheck_init_device+0x0/0x160 returned 0 after 218 usecs
[    1.203203] calling  dev_mcelog_init_device+0x0/0x100 @ 1
[    1.203728] initcall dev_mcelog_init_device+0x0/0x100 returned 0 after 46 usecs
[    1.204390] calling  kernel_do_mounts_initrd_sysctls_init+0x0/0x40 @ 1
[    1.204880] initcall kernel_do_mounts_initrd_sysctls_init+0x0/0x40 returned 0 after 2 usecs
[    1.205513] calling  tboot_late_init+0x0/0x330 @ 1
[    1.205899] initcall tboot_late_init+0x0/0x330 returned 0 after 0 usecs
[    1.206434] calling  intel_epb_init+0x0/0xa0 @ 1
[    1.206789] initcall intel_epb_init+0x0/0xa0 returned -19 after 0 usecs
[    1.207277] calling  mcheck_late_init+0x0/0x90 @ 1
[    1.207653] initcall mcheck_late_init+0x0/0x90 returned 0 after 4 usecs
[    1.208135] calling  severities_debugfs_init+0x0/0x40 @ 1
[    1.208547] initcall severities_debugfs_init+0x0/0x40 returned 0 after 1 usecs
[    1.209145] calling  microcode_init+0x0/0x1f0 @ 1
[    1.209640] initcall microcode_init+0x0/0x1f0 returned -22 after 3 usecs
[    1.210255] calling  resctrl_arch_late_init+0x0/0x5c0 @ 1
[    1.210671] initcall resctrl_arch_late_init+0x0/0x5c0 returned -19 after 7 usecs
[    1.211219] calling  cpu_init_debugfs+0x0/0xf0 @ 1
[    1.211596] initcall cpu_init_debugfs+0x0/0xf0 returned 0 after 10 usecs
[    1.212088] calling  sld_mitigate_sysctl_init+0x0/0x40 @ 1
[    1.212500] initcall sld_mitigate_sysctl_init+0x0/0x40 returned 0 after 2 usecs
[    1.213029] calling  hpet_insert_resource+0x0/0x40 @ 1
[    1.213418] initcall hpet_insert_resource+0x0/0x40 returned 1 after 2 usecs
[    1.213929] calling  start_sync_check_timer+0x0/0x70 @ 1
[    1.214347] initcall start_sync_check_timer+0x0/0x70 returned 0 after 2 usecs
[    1.214865] calling  update_mp_table+0x0/0x610 @ 1
[    1.215234] initcall update_mp_table+0x0/0x610 returned 0 after 0 usecs
[    1.215718] calling  lapic_insert_resource+0x0/0x60 @ 1
[    1.216110] initcall lapic_insert_resource+0x0/0x60 returned 0 after 2 usecs
[    1.216618] calling  print_ipi_mode+0x0/0x40 @ 1
[    1.216968] IPI shorthand broadcast: enabled
[    1.217366] initcall print_ipi_mode+0x0/0x40 returned 0 after 399 usecs
[    1.217857] calling  print_ICs+0x0/0x1e0 @ 1
[    1.218201] initcall print_ICs+0x0/0x1e0 returned 0 after 2 usecs
[    1.218662] calling  setup_efi_kvm_sev_migration+0x0/0x1c0 @ 1
[    1.219089] initcall setup_efi_kvm_sev_migration+0x0/0x1c0 returned 0 after 0 usecs
[    1.219639] calling  create_tlb_single_page_flush_ceiling+0x0/0x40 @ 1
[    1.220125] initcall create_tlb_single_page_flush_ceiling+0x0/0x40 returned 0 after 4 usecs
[    1.220720] calling  pat_memtype_list_init+0x0/0x50 @ 1
[    1.221112] initcall pat_memtype_list_init+0x0/0x50 returned 0 after 1 usecs
[    1.221627] calling  create_init_pkru_value+0x0/0x50 @ 1
[    1.222029] initcall create_init_pkru_value+0x0/0x50 returned 0 after 3 usecs
[    1.222553] calling  kernel_panic_sysctls_init+0x0/0x40 @ 1
[    1.222978] initcall kernel_panic_sysctls_init+0x0/0x40 returned 0 after 4 usecs
[    1.223510] calling  kernel_panic_sysfs_init+0x0/0x30 @ 1
[    1.223917] initcall kernel_panic_sysfs_init+0x0/0x30 returned 0 after 5 usecs
[    1.224446] calling  kernel_exit_sysctls_init+0x0/0x40 @ 1
[    1.224866] initcall kernel_exit_sysctls_init+0x0/0x40 returned 0 after 0 usecs
[    1.225406] calling  kernel_exit_sysfs_init+0x0/0x30 @ 1
[    1.225819] initcall kernel_exit_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[    1.226346] calling  param_sysfs_builtin_init+0x0/0x200 @ 1
[    1.228154] initcall param_sysfs_builtin_init+0x0/0x200 returned 0 after 1390 usecs
[    1.228716] calling  reboot_ksysfs_init+0x0/0x90 @ 1
[    1.229098] initcall reboot_ksysfs_init+0x0/0x90 returned 0 after 7 usecs
[    1.229592] calling  sched_core_sysctl_init+0x0/0x40 @ 1
[    1.229993] initcall sched_core_sysctl_init+0x0/0x40 returned 0 after 3 usecs
[    1.230919] calling  sched_fair_sysctl_init+0x0/0x40 @ 1
[    1.231322] initcall sched_fair_sysctl_init+0x0/0x40 returned 0 after 10 usecs
[    1.231847] calling  sched_rt_sysctl_init+0x0/0x40 @ 1
[    1.232246] initcall sched_rt_sysctl_init+0x0/0x40 returned 0 after 1 usecs
[    1.232749] calling  sched_dl_sysctl_init+0x0/0x40 @ 1
[    1.233136] initcall sched_dl_sysctl_init+0x0/0x40 returned 0 after 0 usecs
[    1.233672] calling  sched_clock_init_late+0x0/0xb0 @ 1
[    1.234076] sched_clock: Marking stable (1152287891, 81781627)->(1335046335, -100976817)
[    1.234726] initcall sched_clock_init_late+0x0/0xb0 returned 0 after 650 usecs
[    1.235247] calling  sched_init_debug+0x0/0x330 @ 1
[    1.235658] initcall sched_init_debug+0x0/0x330 returned 0 after 40 usecs
[    1.236149] calling  cpu_latency_qos_init+0x0/0x60 @ 1
[    1.236625] initcall cpu_latency_qos_init+0x0/0x60 returned 0 after 89 usecs
[    1.237140] calling  pm_debugfs_init+0x0/0x40 @ 1
[    1.237500] initcall pm_debugfs_init+0x0/0x40 returned 0 after 1 usecs
[    1.238033] calling  printk_late_init+0x0/0x180 @ 1
[    1.238420] initcall printk_late_init+0x0/0x180 returned 0 after 11 usecs
[    1.238917] calling  init_srcu_module_notifier+0x0/0x50 @ 1
[    1.239335] initcall init_srcu_module_notifier+0x0/0x50 returned 0 after 2 usecs
[    1.239867] calling  swiotlb_create_default_debugfs+0x0/0xb0 @ 1
[    1.240321] initcall swiotlb_create_default_debugfs+0x0/0xb0 returned 0 after 12 usecs
[    1.240883] calling  tk_debug_sleep_time_init+0x0/0x40 @ 1
[    1.241289] initcall tk_debug_sleep_time_init+0x0/0x40 returned 0 after 0 usecs
[    1.241832] calling  bpf_ksym_iter_register+0x0/0x30 @ 1
[    1.242243] initcall bpf_ksym_iter_register+0x0/0x30 returned 0 after 0 usecs
[    1.242767] calling  kernel_acct_sysctls_init+0x0/0x40 @ 1
[    1.243178] initcall kernel_acct_sysctls_init+0x0/0x40 returned 0 after 1 usecs
[    1.243711] calling  kexec_core_sysctl_init+0x0/0x40 @ 1
[    1.244118] initcall kexec_core_sysctl_init+0x0/0x40 returned 0 after 4 usecs
[    1.244638] calling  bpf_rstat_kfunc_init+0x0/0x30 @ 1
[    1.245024] initcall bpf_rstat_kfunc_init+0x0/0x30 returned 0 after 1 usecs
[    1.245529] calling  debugfs_kprobe_init+0x0/0x90 @ 1
[    1.245923] initcall debugfs_kprobe_init+0x0/0x90 returned 0 after 3 usecs
[    1.246430] calling  kernel_delayacct_sysctls_init+0x0/0x40 @ 1
[    1.246871] initcall kernel_delayacct_sysctls_init+0x0/0x40 returned 0 after 0 usecs
[    1.247430] calling  taskstats_init+0x0/0x50 @ 1
[    1.247793] registered taskstats version 1
[    1.248114] initcall taskstats_init+0x0/0x50 returned 0 after 330 usecs
[    1.248598] calling  ftrace_sysctl_init+0x0/0x30 @ 1
[    1.248974] initcall ftrace_sysctl_init+0x0/0x30 returned 0 after 1 usecs
[    1.249466] calling  init_hwlat_tracer+0x0/0x130 @ 1
[    1.249992] initcall init_hwlat_tracer+0x0/0x130 returned 0 after 113 usecs
[    1.250510] calling  bpf_key_sig_kfuncs_init+0x0/0x20 @ 1
[    1.250916] initcall bpf_key_sig_kfuncs_init+0x0/0x20 returned 0 after 0 usecs
[    1.251439] calling  bpf_kprobe_multi_kfuncs_init+0x0/0x20 @ 1
[    1.251952] initcall bpf_kprobe_multi_kfuncs_init+0x0/0x20 returned 0 after 0 usecs
[    1.252503] calling  kdb_ftrace_register+0x0/0x20 @ 1
[    1.252885] initcall kdb_ftrace_register+0x0/0x20 returned 0 after 4 usecs
[    1.253379] calling  bpf_global_ma_init+0x0/0x30 @ 1
[    1.253829] initcall bpf_global_ma_init+0x0/0x30 returned 0 after 80 usecs
[    1.254383] calling  bpf_syscall_sysctl_init+0x0/0x40 @ 1
[    1.254790] initcall bpf_syscall_sysctl_init+0x0/0x40 returned 0 after 2 usecs
[    1.255314] calling  unbound_reg_init+0x0/0x30 @ 1
[    1.255680] initcall unbound_reg_init+0x0/0x30 returned 0 after 2 usecs
[    1.256162] calling  kfunc_init+0x0/0x100 @ 1
[    1.256497] initcall kfunc_init+0x0/0x100 returned 0 after 2 usecs
[    1.256950] calling  bpf_map_iter_init+0x0/0x50 @ 1
[    1.257317] initcall bpf_map_iter_init+0x0/0x50 returned 0 after 0 usecs
[    1.257838] calling  init_subsystem+0x0/0x30 @ 1
[    1.258259] initcall init_subsystem+0x0/0x30 returned 0 after 0 usecs
[    1.258485] ata1.00: ATA-7: QEMU HARDDISK, 2.5+, max UDMA/100
[    1.258757] calling  task_iter_init+0x0/0xe0 @ 1
[    1.259192] ata1.00: 83886080 sectors, multi 16: LBA48 
[    1.259640] initcall task_iter_init+0x0/0xe0 returned 0 after 100 usecs
[    1.259929] ata1.01: ATA-7: QEMU HARDDISK, 2.5+, max UDMA/100
[    1.260913] calling  bpf_prog_iter_init+0x0/0x30 @ 1
[    1.261344] ata1.01: 104857600 sectors, multi 16: LBA48 
[    1.261723] initcall bpf_prog_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.262730] calling  bpf_link_iter_init+0x0/0x30 @ 1
[    1.263171] initcall bpf_link_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.263272] scsi 0:0:0:0: Direct-Access     ATA      QEMU HARDDISK    2.5+ PQ: 0 ANSI: 5
[    1.263670] calling  init_trampolines+0x0/0x30 @ 1
[    1.264757] probe of 0:0:0:0 returned 19 after 12 usecs
[    1.264982] initcall init_trampolines+0x0/0x30 returned 0 after 2 usecs
[    1.265833] sd 0:0:0:0: [sda] 83886080 512-byte logical blocks: (42.9 GB/40.0 GiB)
[    1.266109] calling  rqspinlock_register_kfuncs+0x0/0x30 @ 1
[    1.267027] sd 0:0:0:0: [sda] Write Protect is off
[    1.267433] initcall rqspinlock_register_kfuncs+0x0/0x30 returned 0 after 0 usecs
[    1.268051] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.268578] calling  kfunc_init+0x0/0x30 @ 1
[    1.269197] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.269514] initcall kfunc_init+0x0/0x30 returned 0 after 0 usecs
[    1.270174] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.270613] calling  bpf_cgroup_iter_init+0x0/0x30 @ 1
[    1.271670] sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[    1.272039] initcall bpf_cgroup_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.272874] scsi 0:0:1:0: Direct-Access     ATA      QEMU HARDDISK    2.5+ PQ: 0 ANSI: 5
[    1.273265] calling  cpumask_kfunc_init+0x0/0xb0 @ 1
[    1.274572] probe of 0:0:1:0 returned 19 after 3 usecs
[    1.274609] initcall cpumask_kfunc_init+0x0/0xb0 returned 0 after 17 usecs
[    1.275280] scsi 0:0:1:0: Attached scsi generic sg1 type 0
[    1.275678] calling  crypto_kfunc_init+0x0/0xb0 @ 1
[    1.276419] sd 0:0:1:0: [sdb] 104857600 512-byte logical blocks: (53.7 GB/50.0 GiB)
[    1.276712] initcall crypto_kfunc_init+0x0/0xb0 returned 0 after 0 usecs
[    1.277559] sd 0:0:1:0: [sdb] Write Protect is off
[    1.278079] calling  bpf_kmem_cache_iter_init+0x0/0x30 @ 1
[    1.278679] sd 0:0:1:0: [sdb] Mode Sense: 00 3a 00 00
[    1.279177] initcall bpf_kmem_cache_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.279775] sd 0:0:1:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.280293] calling  load_system_certificate_list+0x0/0x40 @ 1
[    1.281284] sd 0:0:1:0: [sdb] Preferred minimum I/O size 512 bytes
[    1.281699] Loading compiled-in X.509 certificates
[    1.283278] Loaded X.509 cert 'Build time autogenerated kernel key: 63dcfa1705afed8feebbcaee12f1a32f27ca64ce'
[    1.283983] initcall load_system_certificate_list+0x0/0x40 returned 0 after 2285 usecs
[    1.284551] calling  vmstat_late_init+0x0/0x30 @ 1
[    1.284922] initcall vmstat_late_init+0x0/0x30 returned 0 after 1 usecs
[    1.285406] calling  fault_around_debugfs+0x0/0x40 @ 1
[    1.285814] initcall fault_around_debugfs+0x0/0x40 returned 0 after 3 usecs
[    1.286323] calling  slab_sysfs_init+0x0/0x110 @ 1
[    1.288477] initcall slab_sysfs_init+0x0/0x110 returned 0 after 1790 usecs
[    1.288990] calling  max_swapfiles_check+0x0/0x20 @ 1
[    1.289376] initcall max_swapfiles_check+0x0/0x20 returned 0 after 0 usecs
[    1.289952] calling  zswap_init+0x0/0x30 @ 1
[    1.290755] initcall zswap_init+0x0/0x30 returned 0 after 0 usecs
[    1.291323] calling  hugetlb_vmemmap_init+0x0/0x90 @ 1
[    1.291711] initcall hugetlb_vmemmap_init+0x0/0x90 returned 0 after 6 usecs
[    1.292210] calling  mempolicy_sysfs_init+0x0/0x2b0 @ 1
[    1.292606] initcall mempolicy_sysfs_init+0x0/0x2b0 returned 0 after 5 usecs
[    1.293129] calling  memory_tier_late_init+0x0/0xc0 @ 1
[    1.293567] Demotion targets for Node 0: null
[    1.293921] initcall memory_tier_late_init+0x0/0xc0 returned 0 after 386 usecs
[    1.294460] calling  split_huge_pages_debugfs+0x0/0x40 @ 1
[    1.294876] initcall split_huge_pages_debugfs+0x0/0x40 returned 0 after 2 usecs
[    1.295397] calling  check_early_ioremap_leak+0x0/0x60 @ 1
[    1.295805] initcall check_early_ioremap_leak+0x0/0x60 returned 0 after 2 usecs
[    1.296329] calling  set_hardened_usercopy+0x0/0x40 @ 1
[    1.296718] initcall set_hardened_usercopy+0x0/0x40 returned 1 after 2 usecs
[    1.297224] calling  mg_debugfs_init+0x0/0x40 @ 1
[    1.297583] initcall mg_debugfs_init+0x0/0x40 returned 0 after 1 usecs
[    1.298197] calling  fscrypt_init+0x0/0xf0 @ 1
[    1.298690]  sda: sda1 sda2
[    1.298897] Key type .fscrypt registered
[    1.299143] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.299334] Key type fscrypt-provisioning registered
[    1.299670] probe of 0:0:0:0 returned 0 after 33964 usecs
[    1.300039] initcall fscrypt_init+0x0/0xf0 returned 0 after 1439 usecs
[    1.300461] sd 0:0:1:0: [sdb] Attached SCSI disk
[    1.300951] calling  pstore_init+0x0/0x40 @ 1
[    1.301492] probe of 0:0:1:0 returned 0 after 25138 usecs
[    1.301853] initcall pstore_init+0x0/0x40 returned 0 after 6 usecs
[    1.302957] calling  init_root_keyring+0x0/0x20 @ 1
[    1.303334] initcall init_root_keyring+0x0/0x20 returned 0 after 7 usecs
[    1.303825] calling  init_trusted+0x0/0x1c0 @ 1
[    1.304178] initcall init_trusted+0x0/0x1c0 returned 0 after 4 usecs
[    1.304646] calling  init_encrypted+0x0/0x100 @ 1
[    1.320329] calling  cryptd_init+0x0/0xff0 [cryptd] @ 107
[    1.321095] cryptd: max_cpu_qlen set to 1000
[    1.321424] initcall cryptd_init+0x0/0xff0 [cryptd] returned 0 after 416 usecs
[    1.323836] calling  aesni_init+0x0/0xff0 [aesni_intel] @ 107
[    1.324328] initcall aesni_init+0x0/0xff0 [aesni_intel] returned 0 after 47 usecs
[    1.330832] Key type encrypted registered
[    1.331169] initcall init_encrypted+0x0/0x100 returned 0 after 6888 usecs
[    1.331666] calling  init_profile_hash+0x0/0xa0 @ 1
[    1.332041] initcall init_profile_hash+0x0/0xa0 returned 0 after 0 usecs
[    1.332582] calling  integrity_fs_init+0x0/0x70 @ 1
[    1.333022] initcall integrity_fs_init+0x0/0x70 returned 0 after 5 usecs
[    1.333605] calling  init_ima+0x0/0xf0 @ 1
[    1.334040] ima: No TPM chip found, activating TPM-bypass!
[    1.334498] ima: Allocated hash algorithm: sha1
[    1.334847] ima: No architecture policies found
[    1.335208] initcall init_ima+0x0/0xf0 returned 0 after 1177 usecs
[    1.335669] calling  init_evm+0x0/0x140 @ 1
[    1.335995] evm: Initialising EVM extended attributes:
[    1.336386] evm: security.selinux
[    1.336657] evm: security.SMACK64 (disabled)
[    1.336987] evm: security.SMACK64EXEC (disabled)
[    1.337338] evm: security.SMACK64TRANSMUTE (disabled)
[    1.337714] evm: security.SMACK64MMAP (disabled)
[    1.338178] evm: security.apparmor
[    1.338486] evm: security.ima
[    1.338729] evm: security.capability
[    1.339010] evm: HMAC attrs: 0x1
[    1.339274] initcall init_evm+0x0/0x140 returned 0 after 3279 usecs
[    1.339729] calling  crypto_algapi_init+0x0/0x20 @ 1
[    1.340105] initcall crypto_algapi_init+0x0/0x20 returned 0 after 3 usecs
[    1.340592] calling  blk_timeout_init+0x0/0x20 @ 1
[    1.340952] initcall blk_timeout_init+0x0/0x20 returned 0 after 0 usecs
[    1.341444] calling  sed_opal_init+0x0/0xa0 @ 1
[    1.341856] initcall sed_opal_init+0x0/0xa0 returned 0 after 4 usecs
[    1.342332] calling  init_error_injection+0x0/0x80 @ 1
[    1.342931] initcall init_error_injection+0x0/0x80 returned 0 after 212 usecs
[    1.343452] calling  depot_debugfs_init+0x0/0x50 @ 1
[    1.343838] initcall depot_debugfs_init+0x0/0x50 returned 0 after 2 usecs
[    1.344332] calling  pci_resource_alignment_sysfs_init+0x0/0x30 @ 1
[    1.344794] initcall pci_resource_alignment_sysfs_init+0x0/0x30 returned 0 after 4 usecs
[    1.345371] calling  pci_sysfs_init+0x0/0xb0 @ 1
[    1.345755] initcall pci_sysfs_init+0x0/0xb0 returned 0 after 30 usecs
[    1.346245] calling  bert_init+0x0/0x2c0 @ 1
[    1.346581] initcall bert_init+0x0/0x2c0 returned 0 after 2 usecs
[    1.347029] calling  clk_debug_init+0x0/0x130 @ 1
[    1.347388] initcall clk_debug_init+0x0/0x130 returned 0 after 5 usecs
[    1.347861] calling  genpd_debug_init+0x0/0x80 @ 1
[    1.348230] initcall genpd_debug_init+0x0/0x80 returned 0 after 1 usecs
[    1.348711] calling  setup_vcpu_hotplug_event+0x0/0x40 @ 1
[    1.349120] initcall setup_vcpu_hotplug_event+0x0/0x40 returned -19 after 0 usecs
[    1.349656] calling  boot_wait_for_devices+0x0/0x40 @ 1
[    1.350084] initcall boot_wait_for_devices+0x0/0x40 returned -19 after 2 usecs
[    1.351140] calling  dmar_free_unused_resources+0x0/0xd0 @ 1
[    1.351605] initcall dmar_free_unused_resources+0x0/0xd0 returned 0 after 4 usecs
[    1.352146] calling  sync_state_resume_initcall+0x0/0x20 @ 1
[    1.352583] initcall sync_state_resume_initcall+0x0/0x20 returned 0 after 0 usecs
[    1.353119] calling  deferred_probe_initcall+0x0/0xa0 @ 1
[    1.353531] initcall deferred_probe_initcall+0x0/0xa0 returned 0 after 9 usecs
[    1.354067] calling  late_resume_init+0x0/0x1b0 @ 1
[    1.354457] PM:   Magic number: 13:733:517
[    1.354851] initcall late_resume_init+0x0/0x1b0 returned 0 after 394 usecs
[    1.355355] calling  sync_debugfs_init+0x0/0x70 @ 1
[    1.355737] initcall sync_debugfs_init+0x0/0x70 returned 0 after 12 usecs
[    1.356231] calling  charger_manager_init+0x0/0xb0 @ 1
[    1.356705] initcall charger_manager_init+0x0/0xb0 returned 0 after 89 usecs
[    1.357221] calling  dm_init_init+0x0/0x780 @ 1
[    1.357567] initcall dm_init_init+0x0/0x780 returned 0 after 0 usecs
[    1.358063] calling  acpi_cpufreq_init+0x0/0x30 @ 1
[    1.358484] initcall acpi_cpufreq_init+0x0/0x30 returned -19 after 9 usecs
[    1.358993] calling  powernowk8_init+0x0/0x1e0 @ 1
[    1.359368] initcall powernowk8_init+0x0/0x1e0 returned -19 after 2 usecs
[    1.359861] calling  pcc_cpufreq_init+0x0/0x30 @ 1
[    1.360231] initcall pcc_cpufreq_init+0x0/0x30 returned -19 after 4 usecs
[    1.360732] calling  centrino_init+0x0/0x40 @ 1
[    1.361078] initcall centrino_init+0x0/0x40 returned -19 after 0 usecs
[    1.361551] calling  edd_init+0x0/0x320 @ 1
[    1.361901] initcall edd_init+0x0/0x320 returned -19 after 2 usecs
[    1.362397] calling  firmware_memmap_init+0x0/0x50 @ 1
[    1.362794] initcall firmware_memmap_init+0x0/0x50 returned 0 after 14 usecs
[    1.363306] calling  register_update_efi_random_seed+0x0/0x30 @ 1
[    1.363758] initcall register_update_efi_random_seed+0x0/0x30 returned 0 after 0 usecs
[    1.364323] calling  efi_shutdown_init+0x0/0x60 @ 1
[    1.364692] initcall efi_shutdown_init+0x0/0x60 returned -19 after 1 usecs
[    1.365191] calling  efi_rci2_sysfs_init+0x0/0x2c0 @ 1
[    1.365578] initcall efi_rci2_sysfs_init+0x0/0x2c0 returned 0 after 0 usecs
[    1.366138] calling  efi_earlycon_unmap_fb+0x0/0x50 @ 1
[    1.366537] initcall efi_earlycon_unmap_fb+0x0/0x50 returned 0 after 0 usecs
[    1.367045] calling  itmt_legacy_init+0x0/0x60 @ 1
[    1.367407] initcall itmt_legacy_init+0x0/0x60 returned -19 after 0 usecs
[    1.367915] calling  cec_init+0x0/0x1e0 @ 1
[    1.368255] RAS: Correctable Errors collector initialized.
[    1.368660] initcall cec_init+0x0/0x1e0 returned 0 after 415 usecs
[    1.369112] calling  bpf_kfunc_init+0x0/0x170 @ 1
[    1.369469] initcall bpf_kfunc_init+0x0/0x170 returned 0 after 1 usecs
[    1.369967] calling  init_subsystem+0x0/0x30 @ 1
[    1.370338] initcall init_subsystem+0x0/0x30 returned 0 after 2 usecs
[    1.370808] calling  xdp_metadata_init+0x0/0x30 @ 1
[    1.371178] initcall xdp_metadata_init+0x0/0x30 returned 0 after 0 usecs
[    1.371668] calling  bpf_sockmap_iter_init+0x0/0x30 @ 1
[    1.372067] initcall bpf_sockmap_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.372575] calling  bpf_sk_storage_map_iter_init+0x0/0x30 @ 1
[    1.373007] initcall bpf_sk_storage_map_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.373554] calling  bpf_prog_test_run_init+0x0/0xb0 @ 1
[    1.373976] initcall bpf_prog_test_run_init+0x0/0xb0 returned 0 after 0 usecs
[    1.374522] calling  bpf_dummy_struct_ops_init+0x0/0x20 @ 1
[    1.374932] initcall bpf_dummy_struct_ops_init+0x0/0x20 returned 0 after 0 usecs
[    1.375459] calling  tcp_congestion_default+0x0/0x30 @ 1
[    1.375863] initcall tcp_congestion_default+0x0/0x30 returned 0 after 1 usecs
[    1.376372] calling  inet_blackhole_dev_init+0x0/0x40 @ 1
[    1.376777] initcall inet_blackhole_dev_init+0x0/0x40 returned 0 after 2 usecs
[    1.377289] calling  tcp_bpf_v4_build_proto+0x0/0xa0 @ 1
[    1.377687] initcall tcp_bpf_v4_build_proto+0x0/0xa0 returned 0 after 2 usecs
[    1.378220] calling  udp_bpf_v4_build_proto+0x0/0x50 @ 1
[    1.378626] initcall udp_bpf_v4_build_proto+0x0/0x50 returned 0 after 0 usecs
[    1.379146] calling  bpf_tcp_ca_kfunc_init+0x0/0x40 @ 1
[    1.379541] initcall bpf_tcp_ca_kfunc_init+0x0/0x40 returned 0 after 0 usecs
[    1.380053] calling  pci_mmcfg_late_insert_resources+0x0/0xd0 @ 1
[    1.380844] initcall pci_mmcfg_late_insert_resources+0x0/0xd0 returned 0 after 0 usecs
[    1.381416] calling  software_resume_initcall+0x0/0x190 @ 1
[    1.381849] initcall software_resume_initcall+0x0/0x190 returned -2 after 3 usecs
[    1.382403] calling  lockup_detector_check+0x0/0x80 @ 1
[    1.382812] initcall lockup_detector_check+0x0/0x80 returned 0 after 12 usecs
[    1.383330] calling  ftrace_check_sync+0x0/0x30 @ 1
[    1.383716] initcall ftrace_check_sync+0x0/0x30 returned 0 after 11 usecs
[    1.384216] calling  latency_fsnotify_init+0x0/0x50 @ 1
[    1.384614] initcall latency_fsnotify_init+0x0/0x50 returned 0 after 5 usecs
[    1.385124] calling  trace_eval_sync+0x0/0x30 @ 1
[    1.385484] initcall trace_eval_sync+0x0/0x30 returned 0 after 1 usecs
[    1.385997] calling  late_trace_init+0x0/0xe0 @ 1
[    1.386396] initcall late_trace_init+0x0/0xe0 returned 0 after 0 usecs
[    1.386868] calling  acpi_gpio_handle_deferred_request_irqs+0x0/0xa0 @ 1
[    1.387359] initcall acpi_gpio_handle_deferred_request_irqs+0x0/0xa0 returned 0 after 0 usecs
[    1.387962] calling  clk_disable_unused+0x0/0x190 @ 1
[    1.388344] clk: Disabling unused clocks
[    1.388656] initcall clk_disable_unused+0x0/0x190 returned 0 after 312 usecs
[    1.389170] calling  genpd_power_off_unused+0x0/0xa0 @ 1
[    1.389567] PM: genpd: Disabling unused power domains
[    1.389961] initcall genpd_power_off_unused+0x0/0xa0 returned 0 after 394 usecs
[    1.390492] calling  balloon_wait_finish+0x0/0x110 @ 1
[    1.390876] initcall balloon_wait_finish+0x0/0x110 returned -19 after 0 usecs
[    1.391388] calling  regulator_init_complete+0x0/0x40 @ 1
[    1.391792] initcall regulator_init_complete+0x0/0x40 returned 0 after 2 usecs
[    1.398511] Freeing unused decrypted memory: 2028K
[    1.400302] Freeing unused kernel image (initmem) memory: 4692K
[    1.400661] Write protecting the kernel read-only data: 26624k
[    1.401203] Freeing unused kernel image (text/rodata gap) memory: 548K
[    1.401665] Freeing unused kernel image (rodata/data gap) memory: 440K
[    1.409021] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    1.409384] Run /init as init process
[    1.409598]   with arguments:
[    1.409778]     /init
[    1.409951]     splash
[    1.410119]   with environment:
[    1.410730]     HOME=/
[    1.410882]     TERM=linux
[    1.411049]     BOOT_IMAGE=/vmlinuz-6.15.0-rc5+
[    1.453092] calling  mac_hid_init+0x0/0xff0 [mac_hid] @ 146
[    1.453960] initcall mac_hid_init+0x0/0xff0 [mac_hid] returned 0 after 163 usecs
[    1.455328] calling  pacpi_pci_driver_init+0x0/0xff0 [pata_acpi] @ 141
[    1.457539] initcall pacpi_pci_driver_init+0x0/0xff0 [pata_acpi] returned 0 after 1501 usecs
[    1.461218] calling  floppy_module_init+0x0/0x1e40 [floppy] @ 147
[    1.475694] calling  serio_raw_drv_init+0x0/0xff0 [serio_raw] @ 152
[    1.475729] calling  drm_core_init+0x0/0xb0 [drm] @ 157
[    1.476463] initcall serio_raw_drv_init+0x0/0xff0 [serio_raw] returned 0 after 98 usecs
[    1.476851] ACPI: bus type drm_connector registered
[    1.478064] initcall drm_core_init+0x0/0xb0 [drm] returned 0 after 1227 usecs
[    1.480084] calling  input_leds_init+0x0/0xff0 [input_leds] @ 144
[    1.482952] FDC 0 is a S82078B
[    1.484127] calling  psmouse_init+0x0/0xa0 [psmouse] @ 159
[    1.485972] initcall psmouse_init+0x0/0xa0 [psmouse] returned 0 after 1282 usecs
[    1.486381] initcall floppy_module_init+0x0/0x1e40 [floppy] returned 0 after 1691 usecs
[    1.487955] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4
[    1.494021] calling  qxl_pci_driver_init+0x0/0xff0 [qxl] @ 157
[    1.508558] Console: switching to colour dummy device 80x25
[    1.509151] qxl 0000:00:02.0: vgaarb: deactivate vga console
[    1.509693] [drm] Device Version 0.0
[    1.509970] [drm] Compression level 0 log level 0
[    1.510347] [drm] 12286 io pages at offset 0x1000000
[    1.510767] [drm] 16777216 byte draw area at offset 0x0
[    1.511181] [drm] RAM header offset: 0x3ffe000
[    1.511730] [drm] qxl: 16M of VRAM memory size
[    1.512139] [drm] qxl: 63M of IO pages memory ready (VRAM domain)
[    1.512580] [drm] qxl: 64M of Surface memory size
[    1.513778] [drm] slot 0 (main): base 0xf4000000, size 0x03ffe000
[    1.514231] [drm] slot 1 (surfaces): base 0xf8000000, size 0x04000000
[    1.515170] [drm] Initialized qxl 0.1.0 for 0000:00:02.0 on minor 0
[    1.516208] fbcon: qxldrmfb (fb0) is primary device
[    1.519430] Console: switching to colour frame buffer device 128x48
[    1.526795] qxl 0000:00:02.0: [drm] fb0: qxldrmfb frame buffer device
[    1.553937] initcall input_leds_init+0x0/0xff0 [input_leds] returned 0 after 59513 usecs
[    1.554728] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3
[    1.555715] probe of serio1 returned 0 after 68992 usecs
[    1.567509] probe of 0000:00:02.0 returned 0 after 73077 usecs
[    1.567925] initcall qxl_pci_driver_init+0x0/0xff0 [qxl] returned 0 after 73503 usecs
[    1.631706] calling  linear_init+0x0/0xff0 [linear] @ 190
[    1.632032] initcall linear_init+0x0/0xff0 [linear] returned 0 after 4 usecs
[    1.715826] EXT4-fs (sda2): mounted filesystem 3516f70c-4dd9-4b0f-bac4-c41778d09bbb ro with ordered data mode. Quota mode: none.
[    1.749014] EXT4-fs (sda2): re-mounted 3516f70c-4dd9-4b0f-bac4-c41778d09bbb r/w.
[    1.763119] EXT4-fs (sda2): re-mounted 3516f70c-4dd9-4b0f-bac4-c41778d09bbb.
[    1.872426] systemd[1]: RTC configured in localtime, applying delta of 480 minutes to system time.
[    1.889829] calling  init_autofs_fs+0x0/0x40 [autofs4] @ 1
[    1.890256] initcall init_autofs_fs+0x0/0x40 [autofs4] returned 0 after 94 usecs
[    1.890731] systemd[1]: Inserted module 'autofs4'
[    1.893600] calling  xt_init+0x0/0xff0 [x_tables] @ 1
[    1.893936] initcall xt_init+0x0/0xff0 [x_tables] returned 0 after 11 usecs
[    1.895953] calling  ip_tables_init+0x0/0xff0 [ip_tables] @ 1
[    1.896285] initcall ip_tables_init+0x0/0xff0 [ip_tables] returned 0 after 7 usecs
[    1.902556] systemd[1]: systemd 245.4-4kylin3.11k30 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)
[    1.903993] systemd[1]: Detected virtualization kvm.
[    1.904315] systemd[1]: Detected architecture x86-64.
[    1.904706] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[    1.930865] systemd[1]: Set hostname to <standardpc>.
[    2.085011] systemd[1]: Configuration file /lib/systemd/system/vdi_usbmagicd.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    2.086260] systemd[1]: Configuration file /lib/systemd/system/vdi_usbipd.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    2.087560] systemd[1]: Configuration file /lib/systemd/system/vdi_super_agent.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    2.094158] systemd[1]: Configuration file /etc/systemd/system/runsunloginclient.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    2.128251] systemd[1]: Created slice system-modprobe.slice.
[    2.128702] systemd[1]: Created slice system-serial\x2dgetty.slice.
[    2.129121] systemd[1]: Created slice User and Session Slice.
[    2.129483] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    2.130027] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    2.130612] systemd[1]: Reached target User and Group Name Lookups.
[    2.130980] systemd[1]: Reached target Remote File Systems.
[    2.131295] systemd[1]: Reached target Slices.
[    2.131562] systemd[1]: Reached target Swap.
[    2.131860] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    2.132278] systemd[1]: Listening on LVM2 poll daemon socket.
[    2.132633] systemd[1]: Listening on Syslog Socket.
[    2.133642] systemd[1]: Listening on Process Core Dump Socket.
[    2.134102] systemd[1]: Listening on fsck to fsckd communication Socket.
[    2.134615] systemd[1]: Listening on initctl Compatibility Named Pipe.
[    2.136432] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
[    2.137036] systemd[1]: Listening on Journal Socket (/dev/log).
[    2.137511] systemd[1]: Listening on Journal Socket.
[    2.137934] systemd[1]: Listening on udev Control Socket.
[    2.138372] systemd[1]: Listening on udev Kernel Socket.
[    2.174194] systemd[1]: Mounting Huge Pages File System...
[    2.176681] systemd[1]: Mounting POSIX Message Queue File System...
[    2.178962] systemd[1]: Mounting Kernel Debug File System...
[    2.181075] systemd[1]: Mounting Kernel Trace File System...
[    2.183108] systemd[1]: Starting Journal Service...
[    2.184437] systemd[1]: Starting Availability of block devices...
[    2.186411] systemd[1]: Starting Set the console keyboard layout...
[    2.187577] systemd[1]: Starting Create list of static device nodes for the current kernel...
[    2.189248] systemd[1]: Starting update duration after shutdown or reboot...
[    2.190709] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[    2.191472] systemd[1]: Condition check resulted in Load Kernel Module drm being skipped.
[    2.194529] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[    2.195248] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[    2.196955] systemd[1]: Starting Load Kernel Modules...
[    2.198286] systemd[1]: Starting Remount Root and Kernel File Systems...
[    2.202491] systemd[1]: Starting udev Coldplug all Devices...
[    2.203883] systemd[1]: Starting Uncomplicated firewall...
[    2.206375] systemd[1]: Mounted Huge Pages File System.
[    2.207610] systemd[1]: Mounted POSIX Message Queue File System.
[    2.208212] systemd[1]: Mounted Kernel Debug File System.
[    2.208303] systemd[1]: Mounted Kernel Trace File System.
[    2.208899] systemd[1]: Finished Availability of block devices.
[    2.212636] systemd[1]: Finished Create list of static device nodes for the current kernel.
[    2.212994] systemd[1]: Finished update duration after shutdown or reboot.
[    2.213283] systemd[1]: Finished Uncomplicated firewall.
[    2.213460] calling  parport_default_proc_register+0x0/0xff0 [parport] @ 346
[    2.213485] initcall parport_default_proc_register+0x0/0xff0 [parport] returned 0 after 19 usecs
[    2.218913] calling  lp_init_module+0x0/0xff0 [lp] @ 346
[    2.220993] lp: driver loaded but no devices found
[    2.221376] initcall lp_init_module+0x0/0xff0 [lp] returned 0 after 1934 usecs
[    2.222208] EXT4-fs (sda2): re-mounted 3516f70c-4dd9-4b0f-bac4-c41778d09bbb.
[    2.225174] systemd[1]: Finished Remount Root and Kernel File Systems.
[    2.226012] calling  ppdev_init+0x0/0xff0 [ppdev] @ 346
[    2.226889] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
[    2.227564] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
[    2.227852] ppdev: user-space parallel port driver
[    2.228577] initcall ppdev_init+0x0/0xff0 [ppdev] returned 0 after 2050 usecs
[    2.229895] systemd[1]: Starting Load/Save Random Seed...
[    2.230787] calling  parport_pc_init+0x0/0xef0 [parport_pc] @ 346
[    2.231133] systemd[1]: Starting Create System Users...
[    2.231574] probe of parport_pc.956 returned 0 after 16 usecs
[    2.232237] probe of parport0 returned 19 after 5 usecs
[    2.232702] probe of parport0 returned 19 after 3 usecs
[    2.236376] probe of parport_pc.888 returned 0 after 2171 usecs
[    2.237274] probe of parport0 returned 19 after 170 usecs
[    2.237653] probe of parport0 returned 19 after 6 usecs
[    2.238171] probe of parport_pc.632 returned 0 after 5 usecs
[    2.238543] probe of parport0 returned 19 after 1 usecs
[    2.239057] probe of parport0 returned 19 after 7 usecs
[    2.239632] initcall parport_pc_init+0x0/0xef0 [parport_pc] returned 0 after 8313 usecs
[    2.242595] systemd[1]: Started Journal Service.
[    2.260544] calling  vmw_pci_driver_init+0x0/0xff0 [vmwgfx] @ 346
[    2.261099] initcall vmw_pci_driver_init+0x0/0xff0 [vmwgfx] returned 0 after 40 usecs
[    2.269750] calling  usbip_core_init+0x0/0xff0 [usbip_core] @ 346
[    2.270437] initcall usbip_core_init+0x0/0xff0 [usbip_core] returned 0 after 69 usecs
[    2.273077] calling  vhci_hcd_init+0x0/0xff0 [vhci_hcd] @ 346
[    2.273475] probe of vhci_hcd.0 returned 0 after 12 usecs
[    2.273854] faux_driver vhci_hcd.0: USB/IP Virtual Host Controller
[    2.274249] faux_driver vhci_hcd.0: new USB bus registered, assigned bus number 3
[    2.274728] vhci_hcd: created sysfs vhci_hcd.0
[    2.275074] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.15
[    2.275584] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.276016] usb usb3: Product: USB/IP Virtual Host Controller
[    2.276422] usb usb3: Manufacturer: Linux 6.15.0-rc5+ vhci_hcd
[    2.276935] usb usb3: SerialNumber: vhci_hcd.0
[    2.277496] hub 3-0:1.0: USB hub found
[    2.277952] hub 3-0:1.0: 8 ports detected
[    2.278402] probe of 3-0:1.0 returned 0 after 910 usecs
[    2.278843] probe of usb3 returned 0 after 1372 usecs
[    2.279200] faux_driver vhci_hcd.0: USB/IP Virtual Host Controller
[    2.279740] faux_driver vhci_hcd.0: new USB bus registered, assigned bus number 4
[    2.280293] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.280886] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.15
[    2.281373] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.281902] usb usb4: Product: USB/IP Virtual Host Controller
[    2.282236] usb usb4: Manufacturer: Linux 6.15.0-rc5+ vhci_hcd
[    2.282688] usb usb4: SerialNumber: vhci_hcd.0
[    2.283194] hub 4-0:1.0: USB hub found
[    2.283528] hub 4-0:1.0: 8 ports detected
[    2.283986] probe of 4-0:1.0 returned 0 after 797 usecs
[    2.284435] probe of usb4 returned 0 after 1267 usecs
[    2.284900] initcall vhci_hcd_init+0x0/0xff0 [vhci_hcd] returned 0 after 11458 usecs
[    2.318541] calling  fq_codel_module_init+0x0/0xff0 [sch_fq_codel] @ 375
[    2.319144] initcall fq_codel_module_init+0x0/0xff0 [sch_fq_codel] returned 0 after 1 usecs
[    2.424248] calling  fw_cfg_sysfs_init+0x0/0xff0 [qemu_fw_cfg] @ 391
[    2.431182] probe of QEMU0002:00 returned 0 after 240 usecs
[    2.432537] initcall fw_cfg_sysfs_init+0x0/0xff0 [qemu_fw_cfg] returned 0 after 7735 usecs
[    2.437956] calling  virtio_input_driver_init+0x0/0xff0 [virtio_input] @ 400
[    2.437958] calling  init_soundcore+0x0/0xff0 [soundcore] @ 386
[    2.437970] calling  smbalert_driver_init+0x0/0xff0 [i2c_smbus] @ 385
[    2.437990] initcall smbalert_driver_init+0x0/0xff0 [i2c_smbus] returned 0 after 15 usecs
[    2.441581] calling  failover_init+0x0/0xff0 [failover] @ 377
[    2.442031] initcall failover_init+0x0/0xff0 [failover] returned 0 after 4 usecs
[    2.443050] calling  piix4_driver_init+0x0/0xff0 [i2c_piix4] @ 385
[    2.443612] piix4_smbus 0000:00:01.3: SMBus Host Controller at 0x700, revision 0
[    2.445085] calling  net_failover_init+0x0/0xff0 [net_failover] @ 377
[    2.445648] initcall net_failover_init+0x0/0xff0 [net_failover] returned 0 after 1 usecs
[    2.445778] initcall init_soundcore+0x0/0xff0 [soundcore] returned 0 after 131 usecs
[    2.454739] calling  alsa_sound_init+0x0/0xa0 [snd] @ 404
[    2.455177] initcall alsa_sound_init+0x0/0xa0 [snd] returned 0 after 12 usecs
[    2.458392] input: QEMU Virtio Tablet as /devices/pci0000:00/0000:00:06.0/virtio1/input/input5
[    2.462466] i2c i2c-0: Memory type 0x07 not supported yet, not instantiating SPD
[    2.463845] probe of 0000:00:01.3 returned 0 after 20260 usecs
[    2.465530] initcall piix4_driver_init+0x0/0xff0 [i2c_piix4] returned 0 after 10365 usecs
[    2.466752] calling  virtio_net_driver_init+0x0/0xff0 [virtio_net] @ 377
[    2.472102] calling  alsa_timer_init+0x0/0xff0 [snd_timer] @ 407
[    2.472762] initcall alsa_timer_init+0x0/0xff0 [snd_timer] returned 0 after 81 usecs
[    2.480348] calling  joydev_init+0x0/0xff0 [joydev] @ 391
[    2.480387] probe of virtio0 returned 0 after 11546 usecs
[    2.481891] initcall virtio_net_driver_init+0x0/0xff0 [virtio_net] returned 0 after 1081 usecs
[    2.485866] probe of virtio1 returned 0 after 47470 usecs
[    2.485863] initcall joydev_init+0x0/0xff0 [joydev] returned 0 after 5053 usecs
[    2.486894] initcall virtio_input_driver_init+0x0/0xff0 [virtio_input] returned 0 after 6084 usecs
[    2.495823] calling  alsa_seq_device_init+0x0/0xff0 [snd_seq_device] @ 407
[    2.496564] initcall alsa_seq_device_init+0x0/0xff0 [snd_seq_device] returned 0 after 236 usecs
[    2.522859] calling  alsa_seq_init+0x0/0x60 [snd_seq] @ 416
[    2.523712] initcall alsa_seq_init+0x0/0x60 [snd_seq] returned 0 after 237 usecs
[    2.549857] calling  alsa_rawmidi_init+0x0/0xff0 [snd_rawmidi] @ 435
[    2.550534] initcall alsa_rawmidi_init+0x0/0xff0 [snd_rawmidi] returned 0 after 1 usecs
[    2.563063] calling  seq_midisynth_driver_init+0x0/0xff0 [snd_seq_midi] @ 461
[    2.563682] initcall seq_midisynth_driver_init+0x0/0xff0 [snd_seq_midi] returned 0 after 21 usecs
[    2.599623] calling  alsa_pcm_init+0x0/0xff0 [snd_pcm] @ 469
[    2.600138] initcall alsa_pcm_init+0x0/0xff0 [snd_pcm] returned 0 after 3 usecs
[    2.600881] virtio_net virtio0 ens3: renamed from eth0
[    2.609209] calling  ac97_bus_init+0x0/0xff0 [ac97_bus] @ 386
[    2.609710] initcall ac97_bus_init+0x0/0xff0 [ac97_bus] returned 0 after 20 usecs
[    2.620961] calling  intel8x0_driver_init+0x0/0xff0 [snd_intel8x0] @ 386
[    2.636000] EXT4-fs (sdb): mounted filesystem 1b1b0571-175b-4b83-9612-38293c03950b r/w with ordered data mode. Quota mode: none.
[    2.642754] calling  cstate_pmu_init+0x0/0xff0 [intel_cstate] @ 378
[    2.643235] initcall cstate_pmu_init+0x0/0xff0 [intel_cstate] returned -19 after 0 usecs
[    2.644437] EXT4-fs (sda1): warning: mounting fs with errors, running e2fsck is recommended
[    2.646918] ACPI: \_SB_.LNKA: Enabled at IRQ 11
[    2.647308] snd_intel8x0 0000:00:05.0: enable KVM optimization
[    2.647954] EXT4-fs (sda1): mounted filesystem cfaaa870-4d52-434c-8626-a398f6c7edd3 r/w with ordered data mode. Quota mode: none.
[    2.715467] calling  rapl_pmu_init+0x0/0xdb0 [rapl] @ 381
[    2.715964] RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer
[    2.716528] initcall rapl_pmu_init+0x0/0xdb0 [rapl] returned 0 after 613 usecs
[    2.720078] calling  sha1_ssse3_mod_init+0x0/0xff0 [sha1_ssse3] @ 378
[    2.720518] initcall sha1_ssse3_mod_init+0x0/0xff0 [sha1_ssse3] returned 0 after 9 usecs
[    2.723852] calling  sha256_ssse3_mod_init+0x0/0xff0 [sha256_ssse3] @ 384
[    2.724428] initcall sha256_ssse3_mod_init+0x0/0xff0 [sha256_ssse3] returned 0 after 13 usecs
[    2.727628] calling  sha512_ssse3_mod_init+0x0/0xff0 [sha512_ssse3] @ 378
[    2.728224] initcall sha512_ssse3_mod_init+0x0/0xff0 [sha512_ssse3] returned 0 after 14 usecs
[    2.732330] calling  ghash_pclmulqdqni_mod_init+0x0/0xff0 [ghash_clmulni_intel] @ 396
[    2.732909] initcall ghash_pclmulqdqni_mod_init+0x0/0xff0 [ghash_clmulni_intel] returned 0 after 9 usecs
[    2.771216] calling  kvm_x86_init+0x0/0x50 [kvm] @ 378
[    2.771794] initcall kvm_x86_init+0x0/0x50 [kvm] returned 0 after 16 usecs
[    2.794442] calling  vmx_init+0x0/0x1c0 [kvm_intel] @ 381
[    2.808336] initcall vmx_init+0x0/0x1c0 [kvm_intel] returned 0 after 13433 usecs
[    2.817261] calling  rapl_init+0x0/0xff0 [intel_rapl_common] @ 378
[    2.817696] initcall rapl_init+0x0/0xff0 [intel_rapl_common] returned 0 after 38 usecs
[    2.832284] calling  intel_rapl_msr_driver_init+0x0/0xff0 [intel_rapl_msr] @ 376
[    2.832714] intel_rapl_msr: PL4 support detected.
[    2.833900] probe of intel_rapl_msr.0 returned 19 after 1191 usecs
[    2.834439] initcall intel_rapl_msr_driver_init+0x0/0xff0 [intel_rapl_msr] returned 0 after 1742 usecs
[    2.912964] probe of 0000:00:05.0 returned 0 after 291429 usecs
[    2.913373] initcall intel8x0_driver_init+0x0/0xff0 [snd_intel8x0] returned 0 after 80676 usecs
[    3.476232] calling  pppox_init+0x0/0xff0 [pppox] @ 917
[    3.476599] NET: Registered PF_PPPOX protocol family
[    3.476903] initcall pppox_init+0x0/0xff0 [pppox] returned 0 after 304 usecs
[    3.488417] calling  udp_tunnel_nic_init_module+0x0/0xff0 [udp_tunnel] @ 939
[    3.490965] initcall udp_tunnel_nic_init_module+0x0/0xff0 [udp_tunnel] returned 0 after 1820 usecs
[    3.512734] calling  l2tp_init+0x0/0xff0 [l2tp_core] @ 939
[    3.513250] l2tp_core: L2TP core driver, V2.0
[    3.513589] initcall l2tp_init+0x0/0xff0 [l2tp_core] returned 0 after 352 usecs
[    3.516421] calling  l2tp_nl_init+0x0/0xff0 [l2tp_netlink] @ 939
[    3.517063] l2tp_netlink: L2TP netlink interface
[    3.517587] initcall l2tp_nl_init+0x0/0xff0 [l2tp_netlink] returned 0 after 525 usecs
[    3.547932] calling  pppol2tp_init+0x0/0xff0 [l2tp_ppp] @ 939
[    3.548402] l2tp_ppp: PPPoL2TP kernel driver, V2.0
[    3.548674] initcall pppol2tp_init+0x0/0xff0 [l2tp_ppp] returned 0 after 278 usecs
[    3.935468] calling  xfrm_user_init+0x0/0xff0 [xfrm_user] @ 1151
[    3.935945] Initializing XFRM netlink socket
[    3.936279] initcall xfrm_user_init+0x0/0xff0 [xfrm_user] returned 0 after 334 usecs
[    8.859077] ukui-settings-d[1528]: segfault at 8 ip 00007f32079a08b5 sp 00007ffe821068c0 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7f320794d000+3c4000] likely on CPU 2 (core 0, socket 2)
[    8.860696] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[    9.716588] ukui-settings-d[1816]: segfault at 28 ip 00007f90a25a08b5 sp 00007ffd84872e40 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7f90a254d000+3c4000] likely on CPU 1 (core 0, socket 1)
[    9.717457] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[   11.333853] ukui-settings-d[2415]: segfault at 28 ip 00007fbd6eba08b5 sp 00007ffe2d3601f0 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7fbd6eb4d000+3c4000] likely on CPU 2 (core 0, socket 2)
[   11.335130] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[   12.056343] ukui-settings-d[3049]: segfault at 8 ip 00007f9e811a08b5 sp 00007ffc36e74ca0 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7f9e8114d000+3c4000] likely on CPU 1 (core 0, socket 1)
[   12.058247] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[   12.526199] ukui-settings-d[3553]: segfault at 28 ip 00007fae68ba08b5 sp 00007fff64258140 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7fae68b4d000+3c4000] likely on CPU 2 (core 0, socket 2)
[   12.528445] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[   12.968263] ukui-settings-d[4021]: segfault at 28 ip 00007f06497a08b5 sp 00007ffc764936a0 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7f064974d000+3c4000] likely on CPU 3 (core 0, socket 3)
[   12.970045] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[   13.469451] ukui-settings-d[4558]: segfault at 91 ip 00007f46ca3a08c9 sp 00007fff82f373c0 error 4 in libQt5Widgets.so.5.12.8[1a08c9,7f46ca34d000+3c4000] likely on CPU 2 (core 0, socket 2)
[   13.471103] Code: 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 48 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 <48> 8b 45 70 48 85 c0 74 3b 48 8b 50 20 48 85 d2 0f 84 b1 00 00 00
[   13.894364] ukui-settings-d[4998]: segfault at 55f90000002a ip 00007fa4afba08d2 sp 00007ffca45447e0 error 4 in libQt5Widgets.so.5.12.8[1a08d2,7fa4afb4d000+3c4000] likely on CPU 0 (core 0, socket 0)
[   13.895802] Code: 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 48 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b 45 70 48 85 c0 74 3b <48> 8b 50 20 48 85 d2 0f 84 b1 00 00 00 8b 52 04 85 d2 0f 84 a6 00
[   14.328020] ukui-settings-d[5024]: segfault at 8 ip 00007fe6203a08b5 sp 00007fff9a22ba00 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7fe62034d000+3c4000] likely on CPU 2 (core 0, socket 2)
[   14.329847] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[   14.767050] ukui-settings-d[5046]: segfault at 28 ip 00007f3517ba08b5 sp 00007fff7a842c70 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7f3517b4d000+3c4000] likely on CPU 1 (core 0, socket 1)
[   14.768555] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[   15.181654] ukui-settings-d[5067]: segfault at 28 ip 00007fc7f2fa08b5 sp 00007fff20450520 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7fc7f2f4d000+3c4000] likely on CPU 2 (core 0, socket 2)
[   15.183157] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[   15.673960] ukui-settings-d[5110]: segfault at 8 ip 00007f6fffba08b5 sp 00007ffe2dd94670 error 4 in libQt5Widgets.so.5.12.8[1a08b5,7f6fffb4d000+3c4000] likely on CPU 2 (core 0, socket 2)
[   15.675277] Code: 00 75 0c 48 83 c4 38 5d 41 5c 41 5d 41 5e c3 e8 31 70 fb ff 90 f3 0f 1e fa 41 56 41 55 49 89 fd 41 54 49 89 f4 55 48 83 ec 38 <48> 8b 6f 08 64 48 8b 04 25 28 00 00 00 48 89 44 24 28 31 c0 48 8b
[   65.081292] systemd-journald[338]: Received client request to flush runtime journal.
[  316.517704] EXT4-fs (sda1): error count since last fsck: 2
[  316.518560] EXT4-fs (sda1): initial error at time 1692063521: ext4_journal_check_start:61
[  316.519688] EXT4-fs (sda1): last error at time 1692063521: ext4_journal_check_start:61
[ 1348.111592] PM: suspend entry (s2idle)
[ 1348.146405] Filesystems sync: 0.034 seconds
[ 1348.259944] Freezing user space processes
[ 1348.263030] Freezing user space processes completed (elapsed 0.002 seconds)
[ 1348.263586] OOM killer disabled.
[ 1348.263834] Freezing remaining freezable tasks
[ 1348.265291] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[ 1348.265924] sound pcmC0D1c: PM: calling do_pcm_suspend [snd_pcm] @ 8554, parent: card0
[ 1348.266376] sound pcmC0D1c: PM: do_pcm_suspend [snd_pcm] returned 0 after 1 usecs
[ 1348.266871] sound pcmC0D0c: PM: calling do_pcm_suspend [snd_pcm] @ 8554, parent: card0
[ 1348.267415] sound pcmC0D0c: PM: do_pcm_suspend [snd_pcm] returned 0 after 0 usecs
[ 1348.267916] sound pcmC0D0p: PM: calling do_pcm_suspend [snd_pcm] @ 8554, parent: card0
[ 1348.268437] sound pcmC0D0p: PM: do_pcm_suspend [snd_pcm] returned 0 after 0 usecs
[ 1348.268954] platform intel_rapl_msr.0: PM: calling platform_pm_suspend @ 8554, parent: platform
[ 1348.269528] platform intel_rapl_msr.0: PM: platform_pm_suspend returned 0 after 0 usecs
[ 1348.270018] input input5: PM: calling input_dev_suspend @ 8554, parent: virtio1
[ 1348.270416] input input5: PM: input_dev_suspend returned 0 after 1 usecs
[ 1348.270807] usb usb4: PM: calling usb_dev_suspend @ 8347, parent: vhci_hcd.0
[ 1348.271196] usb usb3: PM: calling usb_dev_suspend @ 4996, parent: vhci_hcd.0
[ 1348.271623] usb usb3: PM: usb_dev_suspend returned 0 after 43 usecs
[ 1348.293935] usb usb4: PM: usb_dev_suspend returned 0 after 22755 usecs
[ 1348.295148] input input3: PM: calling input_dev_suspend @ 8554, parent: serio1
[ 1348.296353] input input3: PM: input_dev_suspend returned 0 after 1 usecs
[ 1348.297530] leds input1::scrolllock: PM: calling led_suspend @ 8554, parent: input1
[ 1348.298852] leds input1::scrolllock: PM: led_suspend returned 0 after 1 usecs
[ 1348.300107] leds input1::capslock: PM: calling led_suspend @ 8554, parent: input1
[ 1348.301142] leds input1::capslock: PM: led_suspend returned 0 after 0 usecs
[ 1348.302079] input input4: PM: calling input_dev_suspend @ 8554, parent: serio1
[ 1348.303071] input input4: PM: input_dev_suspend returned 0 after 0 usecs
[ 1348.303998] leds input1::numlock: PM: calling led_suspend @ 8554, parent: input1
[ 1348.304822] leds input1::numlock: PM: led_suspend returned 0 after 0 usecs
[ 1348.305478] alarmtimer alarmtimer.0.auto: PM: calling platform_pm_suspend @ 8554, parent: rtc0
[ 1348.306244] alarmtimer alarmtimer.0.auto: PM: platform_pm_suspend returned 0 after 6 usecs
[ 1348.306295] sd 0:0:1:0: PM: calling scsi_bus_suspend @ 8347, parent: target0:0:1
[ 1348.307186] rtc rtc0: PM: calling rtc_suspend @ 8554, parent: 00:04
[ 1348.308640] rtc rtc0: PM: rtc_suspend returned 0 after 0 usecs
[ 1348.309178] input input1: PM: calling input_dev_suspend @ 8554, parent: serio0
[ 1348.309619] input input1: PM: input_dev_suspend returned 0 after 0 usecs
[ 1348.309758] sd 0:0:0:0: PM: calling scsi_bus_suspend @ 96, parent: target0:0:0
[ 1348.310109] psmouse serio1: PM: calling serio_suspend @ 8554, parent: i8042
[ 1348.311353] psmouse serio1: PM: serio_suspend returned 0 after 284 usecs
[ 1348.311848] atkbd serio0: PM: calling serio_suspend @ 8554, parent: i8042
[ 1348.312415] atkbd serio0: PM: serio_suspend returned 0 after 73 usecs
[ 1348.312807] i8042 i8042: PM: calling platform_pm_suspend @ 8554, parent: platform
[ 1348.313213] i8042 i8042: PM: platform_pm_suspend returned 0 after 2 usecs
[ 1348.313612] kgdboc kgdboc: PM: calling platform_pm_suspend @ 8554, parent: platform
[ 1348.313826] usb usb2: PM: calling usb_dev_suspend @ 8563, parent: 0000:00:04.0
[ 1348.314122] kgdboc kgdboc: PM: platform_pm_suspend returned 0 after 0 usecs
[ 1348.314153] usb usb1: PM: calling usb_dev_suspend @ 8564, parent: 0000:00:04.0
[ 1348.314577] usb usb1: PM: usb_dev_suspend returned 0 after 418 usecs
[ 1348.314581] scsi host1: PM: calling scsi_bus_suspend @ 8564, parent: ata2
[ 1348.314583] scsi host1: PM: scsi_bus_suspend returned 0 after 0 usecs
[ 1348.316647]  ata2: PM: calling ata_port_pm_suspend @ 8565, parent: 0000:00:01.1
[ 1348.316669] port serial8250:0.31: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.317129]  ata2: PM: ata_port_pm_suspend returned 0 after 78 usecs
[ 1348.317594] port serial8250:0.31: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.318365] port serial8250:0.30: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.318840] port serial8250:0.30: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.319287] port serial8250:0.29: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.319766] port serial8250:0.29: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.320187] port serial8250:0.28: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.320655] port serial8250:0.28: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.321083] port serial8250:0.27: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.321560] port serial8250:0.27: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.321992] port serial8250:0.26: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.322460] port serial8250:0.26: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.322881] port serial8250:0.25: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.323349] port serial8250:0.25: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.323767] port serial8250:0.24: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.324232] port serial8250:0.24: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.324651] port serial8250:0.23: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.325126] port serial8250:0.23: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.325559] port serial8250:0.22: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.326041] port serial8250:0.22: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.326467] port serial8250:0.21: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.326940] port serial8250:0.21: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.327364] port serial8250:0.20: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.327838] port serial8250:0.20: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.328262] port serial8250:0.19: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.328729] port serial8250:0.19: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.329155] port serial8250:0.18: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.329627] port serial8250:0.18: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.330063] port serial8250:0.17: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.330535] port serial8250:0.17: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.330960] port serial8250:0.16: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.331435] port serial8250:0.16: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.331863] port serial8250:0.15: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.332340] port serial8250:0.15: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.332769] port serial8250:0.14: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.333243] port serial8250:0.14: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.333672] port serial8250:0.13: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.334190] port serial8250:0.13: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.334617] port serial8250:0.12: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.335090] port serial8250:0.12: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.335514] port serial8250:0.11: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.335988] port serial8250:0.11: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.336410] port serial8250:0.10: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.336883] port serial8250:0.10: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.337351] port serial8250:0.9: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.337827] port serial8250:0.9: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.338255] port serial8250:0.8: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.338728] port serial8250:0.8: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.339150] port serial8250:0.7: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.339620] port serial8250:0.7: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.340048] port serial8250:0.6: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.340518] port serial8250:0.6: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.340941] port serial8250:0.5: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.341415] port serial8250:0.5: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.341893] port serial8250:0.4: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.341949] usb usb2: PM: usb_dev_suspend returned 0 after 27286 usecs
[ 1348.342498] port serial8250:0.4: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.343378] port serial8250:0.3: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.343853] port serial8250:0.3: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.344279] port serial8250:0.2: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.344755] port serial8250:0.2: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.345211] port serial8250:0.1: PM: calling pm_runtime_force_suspend @ 8554, parent: serial8250:0
[ 1348.345682] port serial8250:0.1: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.346121] serial8250 serial8250: PM: calling platform_pm_suspend @ 8554, parent: platform
[ 1348.346569] serial8250 serial8250: PM: platform_pm_suspend returned 0 after 4 usecs
[ 1348.346972] port 00:00:0.0: PM: calling pm_runtime_force_suspend @ 8554, parent: 00:00:0
[ 1348.347404] port 00:00:0.0: PM: pm_runtime_force_suspend returned 0 after 0 usecs
[ 1348.347824] input input0: PM: calling input_dev_suspend @ 8554, parent: LNXPWRBN:00
[ 1348.348231] input input0: PM: input_dev_suspend returned 0 after 0 usecs
[ 1348.348600] platform pcspkr: PM: calling platform_pm_suspend @ 8554, parent: platform
[ 1348.349017] platform pcspkr: PM: platform_pm_suspend returned 0 after 0 usecs
[ 1348.349433] rtc_cmos 00:04: PM: calling pnp_bus_suspend @ 8554, parent: pnp0
[ 1348.349868] rtc_cmos 00:04: PM: pnp_bus_suspend returned 0 after 38 usecs
[ 1348.350275] pnp 00:03: PM: calling pnp_bus_suspend @ 8554, parent: pnp0
[ 1348.350650] pnp 00:03: PM: pnp_bus_suspend returned 0 after 0 usecs
[ 1348.350993] i8042 aux 00:02: PM: calling pnp_bus_suspend @ 8554, parent: pnp0
[ 1348.351373] i8042 aux 00:02: PM: pnp_bus_suspend returned 0 after 0 usecs
[ 1348.351735] i8042 kbd 00:01: PM: calling pnp_bus_suspend @ 8554, parent: pnp0
[ 1348.352113] i8042 kbd 00:01: PM: pnp_bus_suspend returned 0 after 0 usecs
[ 1348.352479] serial 00:00: PM: calling pnp_bus_suspend @ 8554, parent: pnp0
[ 1348.352849] serial 00:00: PM: pnp_bus_suspend returned 0 after 5 usecs
[ 1348.353209] button LNXPWRBN:00: PM: calling acpi_button_suspend @ 8554, parent: LNXSYSTM:00
[ 1348.353665] button LNXPWRBN:00: PM: acpi_button_suspend returned 0 after 0 usecs
[ 1348.354072] fw_cfg QEMU0002:00: PM: calling acpi_subsys_suspend @ 8554, parent: pci0000:00
[ 1348.354505] fw_cfg QEMU0002:00: PM: acpi_subsys_suspend returned 0 after 0 usecs
[ 1348.354908] virtio-pci 0000:00:08.0: PM: calling pci_pm_suspend @ 8290, parent: pci0000:00
[ 1348.357824] regulator regulator.0: PM: calling regulator_suspend @ 8554, parent: reg-dummy
[ 1348.364870] virtio-pci 0000:00:08.0: PM: pci_pm_suspend returned 0 after 9522 usecs
[ 1348.365395] regulator regulator.0: PM: regulator_suspend returned 0 after 6 usecs
[ 1348.365430] virtio-pci 0000:00:07.0: PM: calling pci_pm_suspend @ 69, parent: pci0000:00
[ 1348.368118] virtio-pci 0000:00:06.0: PM: calling pci_pm_suspend @ 40, parent: pci0000:00
[ 1348.368818] snd_intel8x0 0000:00:05.0: PM: calling pci_pm_suspend @ 292, parent: pci0000:00
[ 1348.369157] virtio-pci 0000:00:07.0: PM: pci_pm_suspend returned 0 after 3720 usecs
[ 1348.369165] xhci_hcd 0000:00:04.0: PM: calling pci_pm_suspend @ 69, parent: pci0000:00
[ 1348.370285] xhci_hcd 0000:00:04.0: PM: pci_pm_suspend returned 0 after 1116 usecs
[ 1348.370398] sd 0:0:1:0: [sdb] Synchronizing SCSI cache
[ 1348.370577] sd 0:0:1:0: PM: scsi_bus_suspend returned 0 after 62508 usecs
[ 1348.370816] virtio-pci 0000:00:06.0: PM: pci_pm_suspend returned 0 after 1280 usecs
[ 1348.370824] virtio-pci 0000:00:03.0: PM: calling pci_pm_suspend @ 40, parent: pci0000:00
[ 1348.389628] qxl 0000:00:02.0: PM: calling pci_pm_suspend @ 8568, parent: pci0000:00
[ 1348.389690] piix4_smbus 0000:00:01.3: PM: calling pci_pm_suspend @ 8569, parent: pci0000:00
[ 1348.389696] piix4_smbus 0000:00:01.3: PM: pci_pm_suspend returned 0 after 0 usecs
[ 1348.389714] scsi target0:0:1: PM: calling scsi_bus_suspend @ 4996, parent: host0
[ 1348.389719] scsi target0:0:1: PM: scsi_bus_suspend returned 0 after 0 usecs
[ 1348.390069] pci 0000:00:01.0: PM: calling pci_pm_suspend @ 69, parent: pci0000:00
[ 1348.390856] virtio-pci 0000:00:03.0: PM: pci_pm_suspend returned 0 after 20029 usecs
[ 1348.391042] snd_intel8x0 0000:00:05.0: PM: pci_pm_suspend returned 0 after 1426 usecs
[ 1348.391050] pci 0000:00:00.0: PM: calling pci_pm_suspend @ 292, parent: pci0000:00
[ 1348.391053] pci 0000:00:00.0: PM: pci_pm_suspend returned 0 after 0 usecs
[ 1348.391271] pci 0000:00:01.0: PM: pci_pm_suspend returned 0 after 0 usecs
[ 1348.397620] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[ 1348.399923] sd 0:0:0:0: PM: scsi_bus_suspend returned 0 after 89268 usecs
[ 1348.400437] qxl 0000:00:02.0: PM: pci_pm_suspend returned 0 after 9838 usecs
[ 1348.401025] scsi target0:0:0: PM: calling scsi_bus_suspend @ 8562, parent: host0
[ 1348.401653] scsi target0:0:0: PM: scsi_bus_suspend returned 0 after 0 usecs
[ 1348.402364] scsi host0: PM: calling scsi_bus_suspend @ 8564, parent: ata1
[ 1348.402745] scsi host0: PM: scsi_bus_suspend returned 0 after 0 usecs
[ 1348.403113]  ata1: PM: calling ata_port_pm_suspend @ 8566, parent: 0000:00:01.1
[ 1348.403841] ata1.00: Entering standby power mode
[ 1348.404280] ata1.01: Entering standby power mode
[ 1348.404647]  ata1: PM: ata_port_pm_suspend returned 0 after 935 usecs
[ 1348.405198] ata_piix 0000:00:01.1: PM: calling pci_pm_suspend @ 8569, parent: pci0000:00
[ 1348.405929] ata_piix 0000:00:01.1: PM: pci_pm_suspend returned 0 after 290 usecs
[ 1348.406481] fw_cfg QEMU0002:00: PM: calling acpi_subsys_suspend_late @ 8554, parent: pci0000:00
[ 1348.407178] fw_cfg QEMU0002:00: PM: acpi_subsys_suspend_late returned 0 after 1 usecs
[ 1348.407908] virtio-pci 0000:00:08.0: PM: calling pci_pm_suspend_late @ 8566, parent: pci0000:00
[ 1348.408600] virtio-pci 0000:00:08.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 1348.409246] virtio-pci 0000:00:07.0: PM: calling pci_pm_suspend_late @ 8566, parent: pci0000:00
[ 1348.409974] virtio-pci 0000:00:07.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 1348.409985] virtio-pci 0000:00:06.0: PM: calling pci_pm_suspend_late @ 8564, parent: pci0000:00
[ 1348.410624] snd_intel8x0 0000:00:05.0: PM: calling pci_pm_suspend_late @ 8562, parent: pci0000:00
[ 1348.411071] virtio-pci 0000:00:06.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 1348.411787] snd_intel8x0 0000:00:05.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 1348.412202] xhci_hcd 0000:00:04.0: PM: calling pci_pm_suspend_late @ 8564, parent: pci0000:00
[ 1348.412803] virtio-pci 0000:00:03.0: PM: calling pci_pm_suspend_late @ 8566, parent: pci0000:00
[ 1348.413281] xhci_hcd 0000:00:04.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 1348.413756] qxl 0000:00:02.0: PM: calling pci_pm_suspend_late @ 96, parent: pci0000:00
[ 1348.413761] qxl 0000:00:02.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 1348.413766] piix4_smbus 0000:00:01.3: PM: calling pci_pm_suspend_late @ 96, parent: pci0000:00
[ 1348.413768] piix4_smbus 0000:00:01.3: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 1348.413771] ata_piix 0000:00:01.1: PM: calling pci_pm_suspend_late @ 96, parent: pci0000:00
[ 1348.413774] ata_piix 0000:00:01.1: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 1348.413776] pci 0000:00:01.0: PM: calling pci_pm_suspend_late @ 96, parent: pci0000:00
[ 1348.413779] pci 0000:00:01.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 1348.413781] pci 0000:00:00.0: PM: calling pci_pm_suspend_late @ 96, parent: pci0000:00
[ 1348.413783] pci 0000:00:00.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 1348.413989] virtio-pci 0000:00:03.0: PM: pci_pm_suspend_late returned 0 after 0 usecs
[ 1348.420252] fw_cfg QEMU0002:00: PM: calling acpi_subsys_suspend_noirq @ 8554, parent: pci0000:00
[ 1348.420726] fw_cfg QEMU0002:00: PM: acpi_subsys_suspend_noirq returned 0 after 0 usecs
[ 1348.421255] virtio-pci 0000:00:08.0: PM: calling pci_pm_suspend_noirq @ 292, parent: pci0000:00
[ 1348.421788] virtio-pci 0000:00:07.0: PM: calling pci_pm_suspend_noirq @ 8569, parent: pci0000:00
[ 1348.421872] virtio-pci 0000:00:06.0: PM: calling pci_pm_suspend_noirq @ 8568, parent: pci0000:00
[ 1348.422113] virtio-pci 0000:00:08.0: PM: pci_pm_suspend_noirq returned 0 after 263 usecs
[ 1348.422119] snd_intel8x0 0000:00:05.0: PM: calling pci_pm_suspend_noirq @ 292, parent: pci0000:00
[ 1348.422134] xhci_hcd 0000:00:04.0: PM: calling pci_pm_suspend_noirq @ 69, parent: pci0000:00
[ 1348.422515] snd_intel8x0 0000:00:05.0: PM: pci_pm_suspend_noirq returned 0 after 392 usecs
[ 1348.422596] xhci_hcd 0000:00:04.0: PM: pci_pm_suspend_noirq returned 0 after 458 usecs
[ 1348.422603] virtio-pci 0000:00:03.0: PM: calling pci_pm_suspend_noirq @ 69, parent: pci0000:00
[ 1348.423080] virtio-pci 0000:00:07.0: PM: pci_pm_suspend_noirq returned 0 after 568 usecs
[ 1348.423086] qxl 0000:00:02.0: PM: calling pci_pm_suspend_noirq @ 8569, parent: pci0000:00
[ 1348.423089] qxl 0000:00:02.0: PM: pci_pm_suspend_noirq returned 0 after 0 usecs
[ 1348.423092] piix4_smbus 0000:00:01.3: PM: calling pci_pm_suspend_noirq @ 8569, parent: pci0000:00
[ 1348.423151] virtio-pci 0000:00:03.0: PM: pci_pm_suspend_noirq returned 0 after 545 usecs
[ 1348.423154] ata_piix 0000:00:01.1: PM: calling pci_pm_suspend_noirq @ 69, parent: pci0000:00
[ 1348.423156] ata_piix 0000:00:01.1: PM: pci_pm_suspend_noirq returned 0 after 0 usecs
[ 1348.423159] pci 0000:00:01.0: PM: calling pci_pm_suspend_noirq @ 69, parent: pci0000:00
[ 1348.423589] piix4_smbus 0000:00:01.3: PM: pci_pm_suspend_noirq returned 0 after 494 usecs
[ 1348.423690] pci 0000:00:01.0: PM: pci_pm_suspend_noirq returned 0 after 529 usecs
[ 1348.423696] pci 0000:00:00.0: PM: calling pci_pm_suspend_noirq @ 69, parent: pci0000:00
[ 1348.423930] virtio-pci 0000:00:06.0: PM: pci_pm_suspend_noirq returned 0 after 699 usecs
[ 1348.424006] pci 0000:00:00.0: PM: pci_pm_suspend_noirq returned 0 after 308 usecs
[ 1357.298566] pci 0000:00:00.0: PM: calling pci_pm_resume_noirq @ 8290, parent: pci0000:00
[ 1357.299360] pci 0000:00:00.0: PM: pci_pm_resume_noirq returned 0 after 102 usecs
[ 1357.299978] pci 0000:00:01.0: PM: calling pci_pm_resume_noirq @ 8290, parent: pci0000:00
[ 1357.300731] pci 0000:00:01.0: PM: pci_pm_resume_noirq returned 0 after 66 usecs
[ 1357.301321] ata_piix 0000:00:01.1: PM: calling pci_pm_resume_noirq @ 8290, parent: pci0000:00
[ 1357.302063] fw_cfg QEMU0002:00: PM: calling acpi_subsys_resume_noirq @ 8554, parent: pci0000:00
[ 1357.302071] piix4_smbus 0000:00:01.3: PM: calling pci_pm_resume_noirq @ 39, parent: pci0000:00
[ 1357.302503] ata_piix 0000:00:01.1: PM: pci_pm_resume_noirq returned 0 after 472 usecs
[ 1357.302522] qxl 0000:00:02.0: PM: calling pci_pm_resume_noirq @ 8290, parent: pci0000:00
[ 1357.302525] qxl 0000:00:02.0: PM: pci_pm_resume_noirq returned 0 after 0 usecs
[ 1357.302528] virtio-pci 0000:00:03.0: PM: calling pci_pm_resume_noirq @ 8290, parent: pci0000:00
[ 1357.302531] virtio-pci 0000:00:03.0: PM: pci_pm_resume_noirq returned 0 after 0 usecs
[ 1357.302534] xhci_hcd 0000:00:04.0: PM: calling pci_pm_resume_noirq @ 8290, parent: pci0000:00
[ 1357.302538] xhci_hcd 0000:00:04.0: PM: pci_pm_resume_noirq returned 0 after 0 usecs
[ 1357.302541] snd_intel8x0 0000:00:05.0: PM: calling pci_pm_resume_noirq @ 8290, parent: pci0000:00
[ 1357.302544] snd_intel8x0 0000:00:05.0: PM: pci_pm_resume_noirq returned 0 after 0 usecs
[ 1357.302547] virtio-pci 0000:00:06.0: PM: calling pci_pm_resume_noirq @ 8290, parent: pci0000:00
[ 1357.302549] virtio-pci 0000:00:06.0: PM: pci_pm_resume_noirq returned 0 after 0 usecs
[ 1357.302553] virtio-pci 0000:00:07.0: PM: calling pci_pm_resume_noirq @ 8290, parent: pci0000:00
[ 1357.302555] virtio-pci 0000:00:07.0: PM: pci_pm_resume_noirq returned 0 after 0 usecs
[ 1357.302558] virtio-pci 0000:00:08.0: PM: calling pci_pm_resume_noirq @ 8290, parent: pci0000:00
[ 1357.302561] virtio-pci 0000:00:08.0: PM: pci_pm_resume_noirq returned 0 after 0 usecs
[ 1357.302817] fw_cfg QEMU0002:00: PM: acpi_subsys_resume_noirq returned 0 after 0 usecs
[ 1357.303542] piix4_smbus 0000:00:01.3: PM: pci_pm_resume_noirq returned 0 after 170 usecs
[ 1357.303852] i8042 i8042: PM: calling i8042_pm_resume_noirq @ 8554, parent: platform
[ 1357.311252] i8042 i8042: PM: i8042_pm_resume_noirq returned 0 after 3 usecs
[ 1357.311827] pci 0000:00:00.0: PM: calling pci_pm_resume_early @ 96, parent: pci0000:00
[ 1357.312262] pci 0000:00:00.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 1357.312667] pci 0000:00:01.0: PM: calling pci_pm_resume_early @ 96, parent: pci0000:00
[ 1357.313099] pci 0000:00:01.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 1357.313488] ata_piix 0000:00:01.1: PM: calling pci_pm_resume_early @ 96, parent: pci0000:00
[ 1357.313938] ata_piix 0000:00:01.1: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 1357.313963] fw_cfg QEMU0002:00: PM: calling acpi_subsys_resume_early @ 8554, parent: pci0000:00
[ 1357.313972] piix4_smbus 0000:00:01.3: PM: calling pci_pm_resume_early @ 8566, parent: pci0000:00
[ 1357.313976] piix4_smbus 0000:00:01.3: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 1357.313980] qxl 0000:00:02.0: PM: calling pci_pm_resume_early @ 8566, parent: pci0000:00
[ 1357.313983] qxl 0000:00:02.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 1357.313986] virtio-pci 0000:00:03.0: PM: calling pci_pm_resume_early @ 8566, parent: pci0000:00
[ 1357.313988] virtio-pci 0000:00:03.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 1357.313991] xhci_hcd 0000:00:04.0: PM: calling pci_pm_resume_early @ 8566, parent: pci0000:00
[ 1357.313993] xhci_hcd 0000:00:04.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 1357.313996] snd_intel8x0 0000:00:05.0: PM: calling pci_pm_resume_early @ 8566, parent: pci0000:00
[ 1357.313999] snd_intel8x0 0000:00:05.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 1357.314006] virtio-pci 0000:00:06.0: PM: calling pci_pm_resume_early @ 8566, parent: pci0000:00
[ 1357.314008] virtio-pci 0000:00:06.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 1357.314010] virtio-pci 0000:00:07.0: PM: calling pci_pm_resume_early @ 8566, parent: pci0000:00
[ 1357.314013] virtio-pci 0000:00:07.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 1357.314016] virtio-pci 0000:00:08.0: PM: calling pci_pm_resume_early @ 8566, parent: pci0000:00
[ 1357.314018] virtio-pci 0000:00:08.0: PM: pci_pm_resume_early returned 0 after 0 usecs
[ 1357.323897] fw_cfg QEMU0002:00: PM: acpi_subsys_resume_early returned 0 after 1 usecs
[ 1357.324731] pci 0000:00:00.0: PM: calling pci_pm_resume @ 8568, parent: pci0000:00
[ 1357.325381] pci 0000:00:00.0: calling  quirk_passive_release+0x0/0xb0 @ 8568
[ 1357.326009] pci 0000:00:00.0: quirk_passive_release+0x0/0xb0 took 13 usecs
[ 1357.326019] regulator regulator.0: PM: calling regulator_resume @ 8554, parent: reg-dummy
[ 1357.326614] pci 0000:00:00.0: PM: pci_pm_resume returned 0 after 1233 usecs
[ 1357.327284] regulator regulator.0: PM: regulator_resume returned 0 after 0 usecs
[ 1357.327870] pci 0000:00:01.0: PM: calling pci_pm_resume @ 8568, parent: pci0000:00
[ 1357.328491] fw_cfg QEMU0002:00: PM: calling acpi_subsys_resume @ 8554, parent: pci0000:00
[ 1357.329109] pci 0000:00:01.0: PM: pci_pm_resume returned 0 after 0 usecs
[ 1357.329783] fw_cfg QEMU0002:00: PM: acpi_subsys_resume returned 0 after 0 usecs
[ 1357.329787] button LNXPWRBN:00: PM: calling acpi_button_resume @ 8554, parent: LNXSYSTM:00
[ 1357.330357] ata_piix 0000:00:01.1: PM: calling pci_pm_resume @ 292, parent: pci0000:00
[ 1357.330979] button LNXPWRBN:00: PM: acpi_button_resume returned 0 after 25 usecs
[ 1357.331717] ata_piix 0000:00:01.1: PM: pci_pm_resume returned 0 after 92 usecs
[ 1357.332308] serial 00:00: PM: calling pnp_bus_resume @ 8554, parent: pnp0
[ 1357.332926] piix4_smbus 0000:00:01.3: PM: calling pci_pm_resume @ 292, parent: pci0000:00
[ 1357.334123] serial 00:00: PM: pnp_bus_resume returned 0 after 600 usecs
[ 1357.334773] piix4_smbus 0000:00:01.3: PM: pci_pm_resume returned 0 after 0 usecs
[ 1357.335325] i8042 kbd 00:01: PM: calling pnp_bus_resume @ 8554, parent: pnp0
[ 1357.335943] qxl 0000:00:02.0: PM: calling pci_pm_resume @ 8569, parent: pci0000:00
[ 1357.336522] i8042 kbd 00:01: PM: pnp_bus_resume returned 0 after 0 usecs
[ 1357.338611] virtio-pci 0000:00:03.0: PM: calling pci_pm_resume @ 69, parent: pci0000:00
[ 1357.339833] i8042 aux 00:02: PM: calling pnp_bus_resume @ 8554, parent: pnp0
[ 1357.341695] xhci_hcd 0000:00:04.0: PM: calling pci_pm_resume @ 292, parent: pci0000:00
[ 1357.341766] i8042 aux 00:02: PM: pnp_bus_resume returned 0 after 1 usecs
[ 1357.343033] pnp 00:03: PM: calling pnp_bus_resume @ 8554, parent: pnp0
[ 1357.343766] xhci_hcd 0000:00:04.0: xHC error in resume, USBSTS 0x401, Reinit
[ 1357.344157] pnp 00:03: PM: pnp_bus_resume returned 0 after 0 usecs
[ 1357.344163] rtc_cmos 00:04: PM: calling pnp_bus_resume @ 8554, parent: pnp0
[ 1357.344171] rtc_cmos 00:04: PM: pnp_bus_resume returned 0 after 1 usecs
[ 1357.344191] platform pcspkr: PM: calling platform_pm_resume @ 8554, parent: platform
[ 1357.344195] platform pcspkr: PM: platform_pm_resume returned 0 after 0 usecs
[ 1357.344202] input input0: PM: calling input_dev_resume @ 8554, parent: LNXPWRBN:00
[ 1357.344206] input input0: PM: input_dev_resume returned 0 after 0 usecs
[ 1357.344231] snd_intel8x0 0000:00:05.0: PM: calling pci_pm_resume @ 8568, parent: pci0000:00
[ 1357.346986] virtio-pci 0000:00:03.0: PM: pci_pm_resume returned 0 after 6496 usecs
[ 1357.347167] usb usb1: root hub lost power or was reset
[ 1357.347860] virtio-pci 0000:00:06.0: PM: calling pci_pm_resume @ 69, parent: pci0000:00
[ 1357.348450] usb usb2: root hub lost power or was reset
[ 1357.350720] virtio-pci 0000:00:06.0: PM: pci_pm_resume returned 0 after 1649 usecs
[ 1357.351363] virtio-pci 0000:00:07.0: PM: calling pci_pm_resume @ 8571, parent: pci0000:00
[ 1357.351844] virtio-pci 0000:00:08.0: PM: calling pci_pm_resume @ 69, parent: pci0000:00
[ 1357.352527] qxl 0000:00:02.0: PM: pci_pm_resume returned 0 after 15351 usecs
[ 1357.354063] port 00:00:0.0: PM: calling pm_runtime_force_resume @ 8554, parent: 00:00:0
[ 1357.354680]  ata1: PM: calling ata_port_pm_resume @ 8569, parent: 0000:00:01.1
[ 1357.355424] port 00:00:0.0: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.355944]  ata1: PM: ata_port_pm_resume returned 0 after 6 usecs
[ 1357.357659]  ata2: PM: calling ata_port_pm_resume @ 8570, parent: 0000:00:01.1
[ 1357.357936] scsi host0: PM: calling scsi_bus_resume @ 8569, parent: ata1
[ 1357.358350]  ata2: PM: ata_port_pm_resume returned 0 after 3 usecs
[ 1357.358973] virtio-pci 0000:00:08.0: PM: pci_pm_resume returned 0 after 5799 usecs
[ 1357.358994] serial8250 serial8250: PM: calling platform_pm_resume @ 8554, parent: platform
[ 1357.358999] serial8250 serial8250: PM: platform_pm_resume returned 0 after 1 usecs
[ 1357.359002] port serial8250:0.1: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359007] port serial8250:0.1: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359009] port serial8250:0.2: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359011] port serial8250:0.2: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359014] port serial8250:0.3: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359016] port serial8250:0.3: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359018] port serial8250:0.4: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359020] port serial8250:0.4: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359022] port serial8250:0.5: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359024] port serial8250:0.5: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359026] port serial8250:0.6: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359029] port serial8250:0.6: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359031] port serial8250:0.7: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359038] port serial8250:0.7: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359040] port serial8250:0.8: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359042] port serial8250:0.8: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359044] port serial8250:0.9: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359047] port serial8250:0.9: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359049] port serial8250:0.10: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359051] port serial8250:0.10: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359053] port serial8250:0.11: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359056] port serial8250:0.11: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359058] port serial8250:0.12: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359063] port serial8250:0.12: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359065] port serial8250:0.13: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359067] port serial8250:0.13: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359069] port serial8250:0.14: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359071] port serial8250:0.14: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359074] port serial8250:0.15: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359076] port serial8250:0.15: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359078] port serial8250:0.16: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359080] port serial8250:0.16: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359083] port serial8250:0.17: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359085] port serial8250:0.17: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359087] port serial8250:0.18: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359089] port serial8250:0.18: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359094] port serial8250:0.19: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359095] snd_intel8x0 0000:00:05.0: PM: pci_pm_resume returned 0 after 14859 usecs
[ 1357.359096] port serial8250:0.19: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359099] port serial8250:0.20: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359101] port serial8250:0.20: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359104] port serial8250:0.21: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359106] port serial8250:0.21: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359108] port serial8250:0.22: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359110] port serial8250:0.22: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359112] port serial8250:0.23: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359115] port serial8250:0.23: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359117] port serial8250:0.24: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359119] port serial8250:0.24: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359122] port serial8250:0.25: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359124] port serial8250:0.25: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359126] port serial8250:0.26: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359128] port serial8250:0.26: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359131] port serial8250:0.27: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.359133] port serial8250:0.27: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.359134] scsi host0: PM: scsi_bus_resume returned 0 after 0 usecs
[ 1357.360007] scsi host1: PM: calling scsi_bus_resume @ 69, parent: ata2
[ 1357.360459] port serial8250:0.28: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.361224] scsi host1: PM: scsi_bus_resume returned 0 after 0 usecs
[ 1357.361719] port serial8250:0.28: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.361722] port serial8250:0.29: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.362700] xhci_hcd 0000:00:04.0: PM: pci_pm_resume returned 0 after 20331 usecs
[ 1357.363183] port serial8250:0.29: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.363871] usb usb1: PM: calling usb_dev_resume @ 8569, parent: 0000:00:04.0
[ 1357.364453] port serial8250:0.30: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.367683] virtio-pci 0000:00:07.0: PM: pci_pm_resume returned 0 after 15296 usecs
[ 1357.368389] port serial8250:0.30: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.369157] usb usb2: PM: calling usb_dev_resume @ 8615, parent: 0000:00:04.0
[ 1357.369431] port serial8250:0.31: PM: calling pm_runtime_force_resume @ 8554, parent: serial8250:0
[ 1357.370949] scsi target0:0:0: PM: calling scsi_bus_resume @ 8632, parent: host0
[ 1357.371421] port serial8250:0.31: PM: pm_runtime_force_resume returned 0 after 0 usecs
[ 1357.371872] scsi target0:0:0: PM: scsi_bus_resume returned 0 after 0 usecs
[ 1357.372515] kgdboc kgdboc: PM: calling platform_pm_resume @ 8554, parent: platform
[ 1357.372976] sd 0:0:0:0: PM: calling scsi_bus_resume @ 8632, parent: target0:0:0
[ 1357.373404] kgdboc kgdboc: PM: platform_pm_resume returned 0 after 0 usecs
[ 1357.373663] scsi target0:0:1: PM: calling scsi_bus_resume @ 8633, parent: host0
[ 1357.373666] scsi target0:0:1: PM: scsi_bus_resume returned 0 after 0 usecs
[ 1357.373669] sd 0:0:1:0: PM: calling scsi_bus_resume @ 8633, parent: target0:0:1
[ 1357.373672] sd 0:0:1:0: PM: scsi_bus_resume returned 0 after 1 usecs
[ 1357.374148] sd 0:0:0:0: PM: scsi_bus_resume returned 0 after 15 usecs
[ 1357.374676] i8042 i8042: PM: calling platform_pm_resume @ 8554, parent: platform
[ 1357.413403] i8042 i8042: PM: platform_pm_resume returned 0 after 3 usecs
[ 1357.413412] atkbd serio0: PM: calling serio_resume @ 8554, parent: i8042
[ 1357.413420] atkbd serio0: PM: serio_resume returned 0 after 4 usecs
[ 1357.413766] psmouse serio1: PM: calling serio_resume @ 8554, parent: i8042
[ 1357.413771] psmouse serio1: PM: serio_resume returned 0 after 2 usecs
[ 1357.413789] input input1: PM: calling input_dev_resume @ 8554, parent: serio0
[ 1357.413794] input input1: PM: input_dev_resume returned 0 after 3 usecs
[ 1357.413806] rtc rtc0: PM: calling rtc_resume @ 8554, parent: 00:04
[ 1357.413809] rtc rtc0: PM: rtc_resume returned 0 after 0 usecs
[ 1357.413811] alarmtimer alarmtimer.0.auto: PM: calling platform_pm_resume @ 8554, parent: rtc0
[ 1357.413813] alarmtimer alarmtimer.0.auto: PM: platform_pm_resume returned 0 after 0 usecs
[ 1357.413825] leds input1::numlock: PM: calling led_resume @ 8554, parent: input1
[ 1357.413828] leds input1::numlock: PM: led_resume returned 0 after 0 usecs
[ 1357.413832] input input4: PM: calling input_dev_resume @ 8554, parent: serio1
[ 1357.413834] input input4: PM: input_dev_resume returned 0 after 0 usecs
[ 1357.413836] leds input1::capslock: PM: calling led_resume @ 8554, parent: input1
[ 1357.413837] leds input1::capslock: PM: led_resume returned 0 after 0 usecs
[ 1357.413841] leds input1::scrolllock: PM: calling led_resume @ 8554, parent: input1
[ 1357.413843] leds input1::scrolllock: PM: led_resume returned 0 after 0 usecs
[ 1357.413845] input input3: PM: calling input_dev_resume @ 8554, parent: serio1
[ 1357.413846] input input3: PM: input_dev_resume returned 0 after 0 usecs
[ 1357.413870] usb usb4: PM: calling usb_dev_resume @ 8642, parent: vhci_hcd.0
[ 1357.413867] usb usb3: PM: calling usb_dev_resume @ 8633, parent: vhci_hcd.0
[ 1357.413907] usb usb3: PM: usb_dev_resume returned 0 after 32 usecs
[ 1357.414078] input input5: PM: calling input_dev_resume @ 8554, parent: virtio1
[ 1357.414081] input input5: PM: input_dev_resume returned 0 after 0 usecs
[ 1357.414085] platform intel_rapl_msr.0: PM: calling platform_pm_resume @ 8554, parent: platform
[ 1357.414087] platform intel_rapl_msr.0: PM: platform_pm_resume returned 0 after 0 usecs
[ 1357.437775] usb usb4: PM: usb_dev_resume returned 0 after 23899 usecs
[ 1357.493766] usb usb1: PM: usb_dev_resume returned 0 after 128451 usecs
[ 1357.514598] sd 0:0:0:0: [sda] Starting disk
[ 1357.537773] sd 0:0:1:0: [sdb] Starting disk
[ 1357.577705] usb usb2: PM: usb_dev_resume returned 0 after 207735 usecs
[ 1357.581887] OOM killer enabled.
[ 1357.582097] Restarting tasks ... done.
[ 1357.586070] random: crng reseeded on system resumption
[ 1357.586574] PM: suspend exit
[ 1568.055474] psmouse serio1: VMMouse at isa0060/serio1/input0 lost sync at byte 1
[ 1568.057442] psmouse serio1: VMMouse at isa0060/serio1/input0 - driver resynced.
[ 1568.281862] psmouse serio1: VMMouse at isa0060/serio1/input0 lost sync at byte 1
[ 1568.297819] psmouse serio1: VMMouse at isa0060/serio1/input0 - driver resynced.

[-- Attachment #5: dmesg-platform bus-device bound-auto resume.log --]
[-- Type: text/x-log, Size: 175540 bytes --]

[    0.000000] Linux version 6.15.0-rc5+ (root@standardpc) (gcc (Ubuntu 9.3.0-10kylin2) 9.3.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #10 SMP PREEMPT_DYNAMIC Fri Jun 20 13:38:04 CST 2025
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-6.15.0-rc5+ root=UUID=3516f70c-4dd9-4b0f-bac4-c41778d09bbb ro quiet splash console=ttyS0 loglevel=7 initcall_debug no_console_suspend ignore_loglevel crashkernel=512M-:192M audit=0 security=kysec
[    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] 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-0x00000000bffdefff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bffdf000-0x00000000bfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable
[    0.000000] printk: debug: ignoring loglevel setting.
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] SMBIOS 2.8 present.
[    0.000000] DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.14.0-0-g155821a1990b-prebuilt.qemu.org 04/01/2014
[    0.000000] DMI: Memory slots populated: 1/1
[    0.000000] Hypervisor detected: KVM
[    0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[    0.000000] kvm-clock: using sched offset of 12007262354 cycles
[    0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    0.000005] tsc: Detected 2803.200 MHz processor
[    0.000579] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000581] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000584] last_pfn = 0x240000 max_arch_pfn = 0x400000000
[    0.000615] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs
[    0.000617] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000654] last_pfn = 0xbffdf max_arch_pfn = 0x400000000
[    0.004602] found SMP MP-table at [mem 0x000f5a40-0x000f5a4f]
[    0.004612] Using GB pages for direct mapping
[    0.004721] RAMDISK: [mem 0x2f169000-0x338abfff]
[    0.004724] ACPI: Early table checksum verification disabled
[    0.004726] ACPI: RSDP 0x00000000000F5A00 000014 (v00 BOCHS )
[    0.004729] ACPI: RSDT 0x00000000BFFE1639 000030 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.004733] ACPI: FACP 0x00000000BFFE150D 000074 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.004737] ACPI: DSDT 0x00000000BFFDFD80 00178D (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.004738] ACPI: FACS 0x00000000BFFDFD40 000040
[    0.004740] ACPI: APIC 0x00000000BFFE1581 000090 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.004742] ACPI: WAET 0x00000000BFFE1611 000028 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.004743] ACPI: Reserving FACP table memory at [mem 0xbffe150d-0xbffe1580]
[    0.004744] ACPI: Reserving DSDT table memory at [mem 0xbffdfd80-0xbffe150c]
[    0.004744] ACPI: Reserving FACS table memory at [mem 0xbffdfd40-0xbffdfd7f]
[    0.004745] ACPI: Reserving APIC table memory at [mem 0xbffe1581-0xbffe1610]
[    0.004745] ACPI: Reserving WAET table memory at [mem 0xbffe1611-0xbffe1638]
[    0.004925] No NUMA configuration found
[    0.004926] Faking a node at [mem 0x0000000000000000-0x000000023fffffff]
[    0.004931] NODE_DATA(0) allocated [mem 0x23ffd59c0-0x23fffffff]
[    0.005294] crashkernel reserved: 0x00000000b3000000 - 0x00000000bf000000 (192 MB)
[    0.005306] Zone ranges:
[    0.005306]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.005307]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.005308]   Normal   [mem 0x0000000100000000-0x000000023fffffff]
[    0.005309]   Device   empty
[    0.005310] Movable zone start for each node
[    0.005311] Early memory node ranges
[    0.005311]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.005312]   node   0: [mem 0x0000000000100000-0x00000000bffdefff]
[    0.005312]   node   0: [mem 0x0000000100000000-0x000000023fffffff]
[    0.005313] Initmem setup node 0 [mem 0x0000000000001000-0x000000023fffffff]
[    0.005512] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.005519] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.024703] On node 0, zone Normal: 33 pages in unavailable ranges
[    0.024989] ACPI: PM-Timer IO Port: 0x608
[    0.025003] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[    0.025034] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
[    0.025036] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.025038] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
[    0.025038] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.025039] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
[    0.025040] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
[    0.025042] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.025044] TSC deadline timer available
[    0.025047] CPU topo: Max. logical packages:   4
[    0.025048] CPU topo: Max. logical dies:       4
[    0.025048] CPU topo: Max. dies per package:   1
[    0.025051] CPU topo: Max. threads per core:   1
[    0.025052] CPU topo: Num. cores per package:     1
[    0.025052] CPU topo: Num. threads per package:   1
[    0.025052] CPU topo: Allowing 4 present CPUs plus 0 hotplug CPUs
[    0.025070] kvm-guest: APIC: eoi() replaced with kvm_guest_apic_eoi_write()
[    0.025082] kvm-guest: KVM setup pv remote TLB flush
[    0.025085] kvm-guest: setup PV sched yield
[    0.025090] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.025091] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[    0.025092] PM: hibernation: Registered nosave memory: [mem 0xbffdf000-0xffffffff]
[    0.025094] [mem 0xc0000000-0xfeffbfff] available for PCI devices
[    0.025095] Booting paravirtualized kernel on KVM
[    0.025096] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.025101] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.025459] percpu: Embedded 61 pages/cpu s212992 r8192 d28672 u524288
[    0.025464] pcpu-alloc: s212992 r8192 d28672 u524288 alloc=1*2097152
[    0.025467] pcpu-alloc: [0] 0 1 2 3 
[    0.025510] kvm-guest: PV spinlocks enabled
[    0.025512] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear)
[    0.025514] Kernel command line: BOOT_IMAGE=/vmlinuz-6.15.0-rc5+ root=UUID=3516f70c-4dd9-4b0f-bac4-c41778d09bbb ro quiet splash console=ttyS0 loglevel=7 initcall_debug no_console_suspend ignore_loglevel crashkernel=512M-:192M audit=0 security=kysec
[    0.025620] audit: disabled (until reboot)
[    0.025631] Unknown kernel command line parameters "splash BOOT_IMAGE=/vmlinuz-6.15.0-rc5+", will be passed to user space.
[    0.025642] random: crng init done
[    0.025643] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    0.026812] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.027412] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.027484] software IO TLB: area num 4.
[    0.041914] Fallback order for Node 0: 0 
[    0.041919] Built 1 zonelists, mobility grouping on.  Total pages: 2097021
[    0.041920] Policy zone: Normal
[    0.041921] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.053578] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.060326] ftrace: allocating 54134 entries in 212 pages
[    0.060328] ftrace: allocated 212 pages with 4 groups
[    0.061072] Dynamic Preempt: voluntary
[    0.061309] rcu: Preemptible hierarchical RCU implementation.
[    0.061310] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[    0.061311] 	Trampoline variant of Tasks RCU enabled.
[    0.061311] 	Rude variant of Tasks RCU enabled.
[    0.061312] 	Tracing variant of Tasks RCU enabled.
[    0.061313] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.061313] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.061318] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.061319] RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.061320] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.064259] NR_IRQS: 524544, nr_irqs: 456, preallocated irqs: 16
[    0.064445] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.064486] calling  con_init+0x0/0x270 @ 0
[    0.064496] Console: colour dummy device 80x25
[    0.064498] initcall con_init+0x0/0x270 returned 0 after 0 usecs
[    0.064499] calling  hvc_console_init+0x0/0x30 @ 0
[    0.064500] initcall hvc_console_init+0x0/0x30 returned 0 after 0 usecs
[    0.064501] calling  xen_cons_init+0x0/0x60 @ 0
[    0.064504] initcall xen_cons_init+0x0/0x60 returned 0 after 0 usecs
[    0.064505] calling  univ8250_console_init+0x0/0x40 @ 0
[    0.064542] printk: legacy console [ttyS0] enabled
[    0.136596] initcall univ8250_console_init+0x0/0x40 returned 0 after 0 usecs
[    0.137145] calling  kgdboc_earlycon_late_init+0x0/0x40 @ 0
[    0.137584] initcall kgdboc_earlycon_late_init+0x0/0x40 returned 0 after 0 usecs
[    0.138179] ACPI: Core revision 20240827
[    0.138549] APIC: Switch to symmetric I/O mode setup
[    0.139110] x2apic enabled
[    0.139559] APIC: Switched APIC routing to: physical x2apic
[    0.140011] kvm-guest: APIC: send_IPI_mask() replaced with kvm_send_ipi_mask()
[    0.140572] kvm-guest: APIC: send_IPI_mask_allbutself() replaced with kvm_send_ipi_mask_allbutself()
[    0.141263] kvm-guest: setup PV IPIs
[    0.142182] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x28680fa287f, max_idle_ns: 440795281151 ns
[    0.143005] Calibrating delay loop (skipped) preset value.. 5606.40 BogoMIPS (lpj=11212800)
[    0.143780] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.144385] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.144833] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.145330] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.146091] Spectre V2 : Spectre BHI mitigation: SW BHB clearing on syscall and VM exit
[    0.146929] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[    0.147001] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[    0.147001] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.147001] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.147001] GDS: Unknown: Dependent on hypervisor status
[    0.147001] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.147001] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.147001] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.147001] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    0.147001] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.147001] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    0.147001] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.147001] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.147001] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
[    0.147001] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    0.147001] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    0.147001] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    0.147001] x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
[    0.147001] Freeing SMP alternatives memory: 44K
[    0.147001] pid_max: default: 32768 minimum: 301
[    0.147001] LSM: initializing lsm=capability,ima,evm
[    0.147001] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.147001] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.147001] smpboot: CPU0: 11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz (family: 0x6, model: 0x8c, stepping: 0x1)
[    0.147001] calling  init_hw_perf_events+0x0/0x720 @ 1
[    0.147001] Performance Events: Icelake events, full-width counters, Intel PMU driver.
[    0.147001] ... version:                2
[    0.147001] ... bit width:              48
[    0.147001] ... generic registers:      8
[    0.147001] ... value mask:             0000ffffffffffff
[    0.147001] ... max period:             00007fffffffffff
[    0.147006] ... fixed-purpose events:   3
[    0.147326] ... event mask:             00000007000000ff
[    0.147788] initcall init_hw_perf_events+0x0/0x720 returned 0 after 4000 usecs
[    0.148325] calling  mc_debug_enable+0x0/0xa0 @ 1
[    0.148691] initcall mc_debug_enable+0x0/0xa0 returned 0 after 0 usecs
[    0.149179] calling  do_init_real_mode+0x0/0x20 @ 1
[    0.149587] initcall do_init_real_mode+0x0/0x20 returned 0 after 0 usecs
[    0.150090] calling  init_sigframe_size+0x0/0x50 @ 1
[    0.150474] signal: max sigframe size: 3632
[    0.150803] initcall init_sigframe_size+0x0/0x50 returned 0 after 0 usecs
[    0.151004] calling  trace_init_perf_perm_irq_work_exit+0x0/0x20 @ 1
[    0.151477] initcall trace_init_perf_perm_irq_work_exit+0x0/0x20 returned 0 after 0 usecs
[    0.152072] calling  cache_ap_register+0x0/0x70 @ 1
[    0.152452] initcall cache_ap_register+0x0/0x70 returned 0 after 0 usecs
[    0.152953] calling  bp_init_aperfmperf+0x0/0x2c0 @ 1
[    0.153348] initcall bp_init_aperfmperf+0x0/0x2c0 returned 0 after 0 usecs
[    0.153854] calling  save_builtin_microcode+0x0/0xe0 @ 1
[    0.154257] initcall save_builtin_microcode+0x0/0xe0 returned 0 after 0 usecs
[    0.154780] calling  save_microcode_in_initrd+0x0/0x110 @ 1
[    0.155005] initcall save_microcode_in_initrd+0x0/0x110 returned 0 after 0 usecs
[    0.155577] calling  register_nmi_cpu_backtrace_handler+0x0/0x30 @ 1
[    0.156056] initcall register_nmi_cpu_backtrace_handler+0x0/0x30 returned 0 after 0 usecs
[    0.156685] calling  numachip_system_init+0x0/0x80 @ 1
[    0.157093] initcall numachip_system_init+0x0/0x80 returned 0 after 0 usecs
[    0.157615] calling  kvm_setup_vsyscall_timeinfo+0x0/0x190 @ 1
[    0.158059] initcall kvm_setup_vsyscall_timeinfo+0x0/0x190 returned 0 after 0 usecs
[    0.158621] calling  spawn_ksoftirqd+0x0/0x60 @ 1
[    0.163006] initcall spawn_ksoftirqd+0x0/0x60 returned 0 after 8000 usecs
[    0.163518] calling  init_signal_sysctls+0x0/0x40 @ 1
[    0.163914] initcall init_signal_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.164420] calling  init_umh_sysctls+0x0/0x40 @ 1
[    0.164793] initcall init_umh_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.165296] calling  kthreads_init+0x0/0x40 @ 1
[    0.165657] initcall kthreads_init+0x0/0x40 returned 0 after 0 usecs
[    0.166132] calling  migration_init+0x0/0x40 @ 1
[    0.166494] initcall migration_init+0x0/0x40 returned 0 after 0 usecs
[    0.166975] calling  printk_set_kthreads_ready+0x0/0x50 @ 1
[    0.167005] initcall printk_set_kthreads_ready+0x0/0x50 returned 0 after 0 usecs
[    0.167545] calling  srcu_bootup_announce+0x0/0x90 @ 1
[    0.167936] rcu: Hierarchical SRCU implementation.
[    0.168308] rcu: 	Max phase no-delay instances is 1000.
[    0.168711] initcall srcu_bootup_announce+0x0/0x90 returned 0 after 0 usecs
[    0.169233] calling  rcu_spawn_gp_kthread+0x0/0x260 @ 1
[    0.171034] initcall rcu_spawn_gp_kthread+0x0/0x260 returned 0 after 4000 usecs
[    0.171758] calling  check_cpu_stall_init+0x0/0x30 @ 1
[    0.172161] initcall check_cpu_stall_init+0x0/0x30 returned 0 after 0 usecs
[    0.172715] calling  rcu_sysrq_init+0x0/0x40 @ 1
[    0.173129] initcall rcu_sysrq_init+0x0/0x40 returned 0 after 0 usecs
[    0.173621] calling  trace_init_flags_sys_enter+0x0/0x20 @ 1
[    0.174394] initcall trace_init_flags_sys_enter+0x0/0x20 returned 0 after 0 usecs
[    0.174950] calling  trace_init_flags_sys_exit+0x0/0x20 @ 1
[    0.175009] initcall trace_init_flags_sys_exit+0x0/0x20 returned 0 after 0 usecs
[    0.175557] calling  tmigr_init+0x0/0x190 @ 1
[    0.175920] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[    0.176537] initcall tmigr_init+0x0/0x190 returned 0 after 0 usecs
[    0.177001] calling  cpu_stop_init+0x0/0xa0 @ 1
[    0.179014] initcall cpu_stop_init+0x0/0xa0 returned 0 after 4000 usecs
[    0.179640] calling  init_kprobes+0x0/0x1e0 @ 1
[    0.180166] initcall init_kprobes+0x0/0x1e0 returned 0 after 0 usecs
[    0.180653] calling  init_trace_printk+0x0/0x20 @ 1
[    0.181027] initcall init_trace_printk+0x0/0x20 returned 0 after 0 usecs
[    0.181520] calling  event_trace_enable_again+0x0/0x60 @ 1
[    0.181933] initcall event_trace_enable_again+0x0/0x60 returned 0 after 0 usecs
[    0.182465] calling  irq_work_init_threads+0x0/0x10 @ 1
[    0.182858] initcall irq_work_init_threads+0x0/0x10 returned 0 after 0 usecs
[    0.183003] calling  static_call_init+0x0/0xe0 @ 1
[    0.183370] initcall static_call_init+0x0/0xe0 returned 0 after 0 usecs
[    0.183874] calling  jump_label_init_module+0x0/0x20 @ 1
[    0.184275] initcall jump_label_init_module+0x0/0x20 returned 0 after 0 usecs
[    0.184800] calling  init_zero_pfn+0x0/0x50 @ 1
[    0.185154] initcall init_zero_pfn+0x0/0x50 returned 0 after 0 usecs
[    0.185631] calling  init_fs_inode_sysctls+0x0/0x40 @ 1
[    0.186033] initcall init_fs_inode_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.186552] calling  init_fs_locks_sysctls+0x0/0x40 @ 1
[    0.186952] initcall init_fs_locks_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.187003] calling  init_fs_sysctls+0x0/0x40 @ 1
[    0.187371] initcall init_fs_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.187941] calling  init_security_keys_sysctls+0x0/0x40 @ 1
[    0.188451] initcall init_security_keys_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.189097] calling  dynamic_debug_init+0x0/0x2b0 @ 1
[    0.189618] initcall dynamic_debug_init+0x0/0x2b0 returned 0 after 0 usecs
[    0.190218] calling  unpopulated_init+0x0/0x70 @ 1
[    0.190657] initcall unpopulated_init+0x0/0x70 returned -19 after 0 usecs
[    0.191003] calling  efi_memreserve_root_init+0x0/0x40 @ 1
[    0.191493] initcall efi_memreserve_root_init+0x0/0x40 returned 0 after 0 usecs
[    0.192123] calling  efi_earlycon_remap_fb+0x0/0x70 @ 1
[    0.192593] initcall efi_earlycon_remap_fb+0x0/0x70 returned 0 after 0 usecs
[    0.193200] calling  idle_inject_init+0x0/0x20 @ 1
[    0.195006] initcall idle_inject_init+0x0/0x20 returned 0 after 4000 usecs
[    0.195980] smp: Bringing up secondary CPUs ...
[    0.199097] smpboot: x86: Booting SMP configuration:
[    0.199555] .... node  #0, CPUs:      #1 #2 #3
[    0.211081] smp: Brought up 1 node, 4 CPUs
[    0.211845] smpboot: Total of 4 processors activated (22425.60 BogoMIPS)
[    0.212998] Memory: 7856808K/8388084K available (17883K kernel code, 5975K rwdata, 7752K rodata, 4692K init, 5544K bss, 524124K reserved, 0K cma-reserved)
[    0.212998] devtmpfs: initialized
[    0.212998] x86/mm: Memory block size: 128MB
[    0.215548] calling  setup_split_lock_delayed_work+0x0/0xa0 @ 1
[    0.216006] initcall setup_split_lock_delayed_work+0x0/0xa0 returned 0 after 0 usecs
[    0.216567] calling  bpf_jit_charge_init+0x0/0x50 @ 1
[    0.216960] initcall bpf_jit_charge_init+0x0/0x50 returned 0 after 0 usecs
[    0.217462] calling  ipc_ns_init+0x0/0x50 @ 1
[    0.217800] initcall ipc_ns_init+0x0/0x50 returned 0 after 0 usecs
[    0.218259] calling  init_mmap_min_addr+0x0/0x50 @ 1
[    0.218638] initcall init_mmap_min_addr+0x0/0x50 returned 0 after 0 usecs
[    0.219005] calling  pci_realloc_setup_params+0x0/0x90 @ 1
[    0.219437] initcall pci_realloc_setup_params+0x0/0x90 returned 0 after 0 usecs
[    0.219973] calling  inet_frag_wq_init+0x0/0x50 @ 1
[    0.220374] initcall inet_frag_wq_init+0x0/0x50 returned 0 after 0 usecs
[    0.220374] calling  xen_pvh_gnttab_setup+0x0/0x50 @ 1
[    0.220374] initcall xen_pvh_gnttab_setup+0x0/0x50 returned -19 after 0 usecs
[    0.220499] calling  e820__register_nvs_regions+0x0/0x70 @ 1
[    0.220929] initcall e820__register_nvs_regions+0x0/0x70 returned 0 after 0 usecs
[    0.221471] calling  cpufreq_register_tsc_scaling+0x0/0x40 @ 1
[    0.223005] initcall cpufreq_register_tsc_scaling+0x0/0x40 returned 0 after 0 usecs
[    0.223562] calling  reboot_init+0x0/0x60 @ 1
[    0.223908] initcall reboot_init+0x0/0x60 returned 0 after 0 usecs
[    0.224377] calling  init_lapic_sysfs+0x0/0x40 @ 1
[    0.224751] initcall init_lapic_sysfs+0x0/0x40 returned 0 after 0 usecs
[    0.225243] calling  alloc_frozen_cpus+0x0/0x30 @ 1
[    0.225620] initcall alloc_frozen_cpus+0x0/0x30 returned 0 after 0 usecs
[    0.226125] calling  cpu_hotplug_pm_sync_init+0x0/0x30 @ 1
[    0.226543] initcall cpu_hotplug_pm_sync_init+0x0/0x30 returned 0 after 0 usecs
[    0.227005] calling  wq_sysfs_init+0x0/0x30 @ 1
[    0.227379] initcall wq_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[    0.227862] calling  ksysfs_init+0x0/0xd0 @ 1
[    0.228215] initcall ksysfs_init+0x0/0xd0 returned 0 after 0 usecs
[    0.228689] calling  schedutil_gov_init+0x0/0x20 @ 1
[    0.229073] initcall schedutil_gov_init+0x0/0x20 returned 0 after 0 usecs
[    0.229599] calling  pm_init+0x0/0x90 @ 1
[    0.229990] initcall pm_init+0x0/0x90 returned 0 after 0 usecs
[    0.230431] calling  pm_disk_init+0x0/0x30 @ 1
[    0.230780] initcall pm_disk_init+0x0/0x30 returned 0 after 0 usecs
[    0.231004] calling  swsusp_header_init+0x0/0x40 @ 1
[    0.231386] initcall swsusp_header_init+0x0/0x40 returned 0 after 0 usecs
[    0.231890] calling  rcu_set_runtime_mode+0x0/0x30 @ 1
[    0.232288] initcall rcu_set_runtime_mode+0x0/0x30 returned 0 after 0 usecs
[    0.232802] calling  rcu_init_tasks_generic+0x0/0x100 @ 1
[    0.233260] initcall rcu_init_tasks_generic+0x0/0x100 returned 0 after 0 usecs
[    0.233260] calling  init_jiffies_clocksource+0x0/0x30 @ 1
[    0.233260] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.235007] initcall init_jiffies_clocksource+0x0/0x30 returned 0 after 4000 usecs
[    0.235670] calling  posixtimer_init+0x0/0xd0 @ 1
[    0.236086] posixtimers hash table entries: 2048 (order: 3, 32768 bytes, linear)
[    0.236737] initcall posixtimer_init+0x0/0xd0 returned 0 after 0 usecs
[    0.237315] calling  futex_init+0x0/0xe0 @ 1
[    0.237718] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.238401] initcall futex_init+0x0/0xe0 returned 0 after 0 usecs
[    0.238997] calling  cgroup_wq_init+0x0/0x40 @ 1
[    0.239378] initcall cgroup_wq_init+0x0/0x40 returned 0 after 0 usecs
[    0.239873] calling  cgroup1_wq_init+0x0/0x40 @ 1
[    0.240239] initcall cgroup1_wq_init+0x0/0x40 returned 0 after 0 usecs
[    0.240731] calling  ftrace_mod_cmd_init+0x0/0x20 @ 1
[    0.241422] initcall ftrace_mod_cmd_init+0x0/0x20 returned 0 after 0 usecs
[    0.241945] calling  init_wakeup_tracer+0x0/0x40 @ 1
[    0.242332] initcall init_wakeup_tracer+0x0/0x40 returned 0 after 0 usecs
[    0.242837] calling  init_graph_trace+0x0/0x70 @ 1
[    0.243006] initcall init_graph_trace+0x0/0x70 returned 0 after 0 usecs
[    0.243499] calling  trace_events_eprobe_init_early+0x0/0x40 @ 1
[    0.243967] initcall trace_events_eprobe_init_early+0x0/0x40 returned 0 after 0 usecs
[    0.244549] calling  trace_events_synth_init_early+0x0/0x40 @ 1
[    0.245000] initcall trace_events_synth_init_early+0x0/0x40 returned 0 after 0 usecs
[    0.245576] calling  init_kprobe_trace_early+0x0/0x40 @ 1
[    0.245994] initcall init_kprobe_trace_early+0x0/0x40 returned 0 after 0 usecs
[    0.246532] calling  bpf_offload_init+0x0/0x30 @ 1
[    0.246904] initcall bpf_offload_init+0x0/0x30 returned 0 after 0 usecs
[    0.247003] calling  cgroup_bpf_wq_init+0x0/0x40 @ 1
[    0.247389] initcall cgroup_bpf_wq_init+0x0/0x40 returned 0 after 0 usecs
[    0.247887] calling  init_events_core_sysctls+0x0/0x40 @ 1
[    0.248304] initcall init_events_core_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.248838] calling  init_callchain_sysctls+0x0/0x40 @ 1
[    0.249251] initcall init_callchain_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.249780] calling  memory_failure_init+0x0/0xd0 @ 1
[    0.250175] initcall memory_failure_init+0x0/0xd0 returned 0 after 0 usecs
[    0.250683] calling  cma_init_reserved_areas+0x0/0x280 @ 1
[    0.251004] initcall cma_init_reserved_areas+0x0/0x280 returned 0 after 0 usecs
[    0.251572] calling  fsnotify_init+0x0/0xa0 @ 1
[    0.251943] initcall fsnotify_init+0x0/0xa0 returned 0 after 0 usecs
[    0.252419] calling  filelock_init+0x0/0x160 @ 1
[    0.252845] initcall filelock_init+0x0/0x160 returned 0 after 0 usecs
[    0.253355] calling  init_script_binfmt+0x0/0x30 @ 1
[    0.253828] initcall init_script_binfmt+0x0/0x30 returned 0 after 0 usecs
[    0.254493] calling  init_elf_binfmt+0x0/0x30 @ 1
[    0.254926] initcall init_elf_binfmt+0x0/0x30 returned 0 after 0 usecs
[    0.255005] calling  init_compat_elf_binfmt+0x0/0x30 @ 1
[    0.255417] initcall init_compat_elf_binfmt+0x0/0x30 returned 0 after 0 usecs
[    0.255953] calling  configfs_init+0x0/0x100 @ 1
[    0.256331] initcall configfs_init+0x0/0x100 returned 0 after 0 usecs
[    0.256823] calling  debugfs_init+0x0/0x110 @ 1
[    0.257182] initcall debugfs_init+0x0/0x110 returned 0 after 0 usecs
[    0.257711] calling  tracefs_init+0x0/0xc0 @ 1
[    0.258126] initcall tracefs_init+0x0/0xc0 returned 0 after 0 usecs
[    0.258690] calling  securityfs_init+0x0/0x90 @ 1
[    0.259025] initcall securityfs_init+0x0/0x90 returned 0 after 0 usecs
[    0.259534] calling  pinctrl_init+0x0/0xd0 @ 1
[    0.259886] pinctrl core: initialized pinctrl subsystem
[    0.260301] initcall pinctrl_init+0x0/0xd0 returned 0 after 0 usecs
[    0.260779] calling  gpiolib_dev_init+0x0/0x170 @ 1
[    0.261169] initcall gpiolib_dev_init+0x0/0x170 returned 0 after 0 usecs
[    0.261667] calling  virtio_init+0x0/0x40 @ 1
[    0.262010] initcall virtio_init+0x0/0x40 returned 0 after 0 usecs
[    0.262471] calling  regulator_init+0x0/0xc0 @ 1
[    0.262876] probe of reg-dummy returned 0 after 0 usecs
[    0.263004] initcall regulator_init+0x0/0xc0 returned 0 after 4000 usecs
[    0.263500] calling  iommu_init+0x0/0x40 @ 1
[    0.263837] initcall iommu_init+0x0/0x40 returned 0 after 0 usecs
[    0.264293] calling  component_debug_init+0x0/0x30 @ 1
[    0.264695] initcall component_debug_init+0x0/0x30 returned 0 after 0 usecs
[    0.265211] calling  early_resume_init+0x0/0xe0 @ 1
[    0.265624] PM: RTC time: 08:08:54, date: 2025-06-23
[    0.266010] initcall early_resume_init+0x0/0xe0 returned 0 after 0 usecs
[    0.266514] calling  opp_debug_init+0x0/0x30 @ 1
[    0.266874] initcall opp_debug_init+0x0/0x30 returned 0 after 0 usecs
[    0.267003] calling  cpufreq_core_init+0x0/0x110 @ 1
[    0.267420] initcall cpufreq_core_init+0x0/0x110 returned 0 after 0 usecs
[    0.267957] calling  cpufreq_gov_performance_init+0x0/0x20 @ 1
[    0.268403] initcall cpufreq_gov_performance_init+0x0/0x20 returned 0 after 0 usecs
[    0.269317] calling  cpufreq_gov_powersave_init+0x0/0x20 @ 1
[    0.269746] initcall cpufreq_gov_powersave_init+0x0/0x20 returned 0 after 0 usecs
[    0.270308] calling  cpufreq_gov_userspace_init+0x0/0x20 @ 1
[    0.270740] initcall cpufreq_gov_userspace_init+0x0/0x20 returned 0 after 0 usecs
[    0.271005] calling  CPU_FREQ_GOV_ONDEMAND_init+0x0/0x20 @ 1
[    0.271438] initcall CPU_FREQ_GOV_ONDEMAND_init+0x0/0x20 returned 0 after 0 usecs
[    0.271999] calling  CPU_FREQ_GOV_CONSERVATIVE_init+0x0/0x20 @ 1
[    0.272454] initcall CPU_FREQ_GOV_CONSERVATIVE_init+0x0/0x20 returned 0 after 0 usecs
[    0.273030] calling  cpuidle_init+0x0/0x30 @ 1
[    0.273384] initcall cpuidle_init+0x0/0x30 returned 0 after 0 usecs
[    0.273861] calling  capsule_reboot_register+0x0/0x20 @ 1
[    0.274272] initcall capsule_reboot_register+0x0/0x20 returned 0 after 0 usecs
[    0.274801] calling  unaccepted_memory_init_kdump+0x0/0x30 @ 1
[    0.275004] initcall unaccepted_memory_init_kdump+0x0/0x30 returned 0 after 0 usecs
[    0.275638] calling  sock_init+0x0/0x100 @ 1
[    0.276740] initcall sock_init+0x0/0x100 returned 0 after 0 usecs
[    0.277225] calling  net_inuse_init+0x0/0x40 @ 1
[    0.277597] initcall net_inuse_init+0x0/0x40 returned 0 after 0 usecs
[    0.278079] calling  sock_struct_check+0x0/0x20 @ 1
[    0.278515] initcall sock_struct_check+0x0/0x20 returned 0 after 0 usecs
[    0.279004] calling  init_default_flow_dissectors+0x0/0x60 @ 1
[    0.279504] initcall init_default_flow_dissectors+0x0/0x60 returned 0 after 0 usecs
[    0.280070] calling  netlink_proto_init+0x0/0x170 @ 1
[    0.280473] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.280933] initcall netlink_proto_init+0x0/0x170 returned 0 after 0 usecs
[    0.281447] calling  genl_init+0x0/0x50 @ 1
[    0.281779] initcall genl_init+0x0/0x50 returned 0 after 0 usecs
[    0.282229] calling  bsp_pm_check_init+0x0/0x30 @ 1
[    0.282607] initcall bsp_pm_check_init+0x0/0x30 returned 0 after 0 usecs
[    0.283004] calling  __gnttab_init+0x0/0x50 @ 1
[    0.283376] initcall __gnttab_init+0x0/0x50 returned -19 after 0 usecs
[    0.283948] calling  irq_sysfs_init+0x0/0xc0 @ 1
[    0.284396] initcall irq_sysfs_init+0x0/0xc0 returned 0 after 0 usecs
[    0.284954] calling  dma_atomic_pool_init+0x0/0x170 @ 1
[    0.285436] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[    0.286061] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.286742] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.287009] initcall dma_atomic_pool_init+0x0/0x170 returned 0 after 4000 usecs
[    0.287548] calling  audit_init+0x0/0x1d0 @ 1
[    0.287950] initcall audit_init+0x0/0x1d0 returned 0 after 0 usecs
[    0.288500] calling  bdi_class_init+0x0/0x50 @ 1
[    0.288936] initcall bdi_class_init+0x0/0x50 returned 0 after 0 usecs
[    0.289509] calling  mm_sysfs_init+0x0/0x40 @ 1
[    0.289932] initcall mm_sysfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.290494] calling  init_per_zone_wmark_min+0x0/0x40 @ 1
[    0.290988] initcall init_per_zone_wmark_min+0x0/0x40 returned 0 after 0 usecs
[    0.291003] calling  gpiolib_sysfs_init+0x0/0x40 @ 1
[    0.291459] initcall gpiolib_sysfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.292053] calling  acpi_gpio_setup_params+0x0/0xe0 @ 1
[    0.292540] initcall acpi_gpio_setup_params+0x0/0xe0 returned 0 after 0 usecs
[    0.293164] calling  pcibus_class_init+0x0/0x20 @ 1
[    0.293613] initcall pcibus_class_init+0x0/0x20 returned 0 after 0 usecs
[    0.294208] calling  pci_driver_init+0x0/0x40 @ 1
[    0.294583] initcall pci_driver_init+0x0/0x40 returned 0 after 0 usecs
[    0.295003] calling  rio_bus_init+0x0/0x50 @ 1
[    0.295356] initcall rio_bus_init+0x0/0x50 returned 0 after 0 usecs
[    0.295825] calling  backlight_class_init+0x0/0x80 @ 1
[    0.296224] initcall backlight_class_init+0x0/0x80 returned 0 after 0 usecs
[    0.296739] calling  xenbus_init+0x0/0x680 @ 1
[    0.297573] initcall xenbus_init+0x0/0x680 returned -19 after 0 usecs
[    0.298123] calling  tty_class_init+0x0/0x20 @ 1
[    0.298496] initcall tty_class_init+0x0/0x20 returned 0 after 0 usecs
[    0.298981] calling  vtconsole_class_init+0x0/0xc0 @ 1
[    0.299016] initcall vtconsole_class_init+0x0/0xc0 returned 0 after 0 usecs
[    0.299556] calling  serdev_init+0x0/0x30 @ 1
[    0.299912] initcall serdev_init+0x0/0x30 returned 0 after 0 usecs
[    0.300380] calling  iommu_dev_init+0x0/0x20 @ 1
[    0.300743] initcall iommu_dev_init+0x0/0x20 returned 0 after 0 usecs
[    0.301227] calling  mipi_dsi_bus_init+0x0/0x20 @ 1
[    0.301613] initcall mipi_dsi_bus_init+0x0/0x20 returned 0 after 0 usecs
[    0.302114] calling  devlink_class_init+0x0/0x50 @ 1
[    0.302501] initcall devlink_class_init+0x0/0x50 returned 0 after 0 usecs
[    0.303004] calling  software_node_init+0x0/0x40 @ 1
[    0.303392] initcall software_node_init+0x0/0x40 returned 0 after 0 usecs
[    0.303903] calling  wakeup_sources_debugfs_init+0x0/0x40 @ 1
[    0.304341] initcall wakeup_sources_debugfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.304901] calling  wakeup_sources_sysfs_init+0x0/0x40 @ 1
[    0.305386] initcall wakeup_sources_sysfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.305948] calling  isa_bus_init+0x0/0x50 @ 1
[    0.306304] initcall isa_bus_init+0x0/0x50 returned 0 after 0 usecs
[    0.306808] calling  regmap_initcall+0x0/0x20 @ 1
[    0.307005] initcall regmap_initcall+0x0/0x20 returned 0 after 0 usecs
[    0.307580] calling  sram_init+0x0/0x30 @ 1
[    0.307975] initcall sram_init+0x0/0x30 returned 0 after 0 usecs
[    0.308508] calling  spi_init+0x0/0xd0 @ 1
[    0.308898] initcall spi_init+0x0/0xd0 returned 0 after 0 usecs
[    0.309407] calling  i2c_init+0x0/0xc0 @ 1
[    0.309741] initcall i2c_init+0x0/0xc0 returned 0 after 0 usecs
[    0.310186] calling  thermal_init+0x0/0x180 @ 1
[    0.310549] thermal_sys: Registered thermal governor 'fair_share'
[    0.310550] thermal_sys: Registered thermal governor 'bang_bang'
[    0.311003] thermal_sys: Registered thermal governor 'step_wise'
[    0.311456] thermal_sys: Registered thermal governor 'user_space'
[    0.311914] initcall thermal_init+0x0/0x180 returned 0 after 4000 usecs
[    0.312873] calling  init_ladder+0x0/0x40 @ 1
[    0.313231] cpuidle: using governor ladder
[    0.313561] initcall init_ladder+0x0/0x40 returned 0 after 0 usecs
[    0.314024] calling  init_menu+0x0/0x20 @ 1
[    0.314359] cpuidle: using governor menu
[    0.314683] initcall init_menu+0x0/0x20 returned 0 after 0 usecs
[    0.315003] calling  teo_governor_init+0x0/0x20 @ 1
[    0.315383] initcall teo_governor_init+0x0/0x20 returned 0 after 0 usecs
[    0.315881] calling  init_haltpoll+0x0/0x40 @ 1
[    0.316270] initcall init_haltpoll+0x0/0x40 returned 0 after 0 usecs
[    0.316841] calling  pcc_init+0x0/0xb0 @ 1
[    0.317241] initcall pcc_init+0x0/0xb0 returned -19 after 0 usecs
[    0.317792] calling  amd_postcore_init+0x0/0x130 @ 1
[    0.318249] initcall amd_postcore_init+0x0/0x130 returned 0 after 0 usecs
[    0.318847] calling  kobject_uevent_init+0x0/0x20 @ 1
[    0.319009] initcall kobject_uevent_init+0x0/0x20 returned 0 after 0 usecs
[    0.319659] calling  report_snp_info+0x0/0xe0 @ 1
[    0.320096] initcall report_snp_info+0x0/0xe0 returned 0 after 0 usecs
[    0.320674] calling  sev_sysfs_init+0x0/0xa0 @ 1
[    0.321102] initcall sev_sysfs_init+0x0/0xa0 returned -19 after 0 usecs
[    0.321691] calling  bts_init+0x0/0x100 @ 1
[    0.322085] initcall bts_init+0x0/0x100 returned -19 after 0 usecs
[    0.322641] calling  pt_init+0x0/0x3b0 @ 1
[    0.323004] initcall pt_init+0x0/0x3b0 returned -19 after 0 usecs
[    0.323546] calling  init_x86_sysctl+0x0/0x40 @ 1
[    0.323988] initcall init_x86_sysctl+0x0/0x40 returned 0 after 0 usecs
[    0.324565] calling  boot_params_ksysfs_init+0x0/0x320 @ 1
[    0.325064] initcall boot_params_ksysfs_init+0x0/0x320 returned 0 after 0 usecs
[    0.325708] calling  sbf_init+0x0/0xf0 @ 1
[    0.326619] initcall sbf_init+0x0/0xf0 returned 0 after 0 usecs
[    0.327003] calling  arch_kdebugfs_init+0x0/0x30 @ 1
[    0.327465] initcall arch_kdebugfs_init+0x0/0x30 returned 0 after 0 usecs
[    0.328067] calling  xfd_update_static_branch+0x0/0x40 @ 1
[    0.328566] initcall xfd_update_static_branch+0x0/0x40 returned 0 after 0 usecs
[    0.329211] calling  mtrr_if_init+0x0/0x70 @ 1
[    0.329626] initcall mtrr_if_init+0x0/0x70 returned 0 after 0 usecs
[    0.330181] calling  activate_jump_labels+0x0/0x50 @ 1
[    0.330640] initcall activate_jump_labels+0x0/0x50 returned 0 after 0 usecs
[    0.331003] calling  init_s4_sigcheck+0x0/0x40 @ 1
[    0.331447] initcall init_s4_sigcheck+0x0/0x40 returned 0 after 0 usecs
[    0.332022] calling  ffh_cstate_init+0x0/0x50 @ 1
[    0.332473] initcall ffh_cstate_init+0x0/0x50 returned 0 after 0 usecs
[    0.333063] calling  kvm_alloc_cpumask+0x0/0xd0 @ 1
[    0.333519] initcall kvm_alloc_cpumask+0x0/0xd0 returned 0 after 0 usecs
[    0.334118] calling  activate_jump_labels+0x0/0x50 @ 1
[    0.334635] initcall activate_jump_labels+0x0/0x50 returned 0 after 0 usecs
[    0.335003] calling  gigantic_pages_init+0x0/0x40 @ 1
[    0.335470] initcall gigantic_pages_init+0x0/0x40 returned 0 after 0 usecs
[    0.336078] calling  uv_rtc_setup_clock+0x0/0x330 @ 1
[    0.336543] initcall uv_rtc_setup_clock+0x0/0x330 returned -19 after 0 usecs
[    0.337165] calling  kcmp_cookies_init+0x0/0x50 @ 1
[    0.337618] initcall kcmp_cookies_init+0x0/0x50 returned 0 after 0 usecs
[    0.338216] calling  cryptomgr_init+0x0/0x20 @ 1
[    0.338642] initcall cryptomgr_init+0x0/0x20 returned 0 after 0 usecs
[    0.339003] calling  crc32_x86_init+0x0/0x100 @ 1
[    0.339491] initcall crc32_x86_init+0x0/0x100 returned 0 after 0 usecs
[    0.340068] calling  crc64_x86_init+0x0/0x170 @ 1
[    0.340571] initcall crc64_x86_init+0x0/0x170 returned 0 after 0 usecs
[    0.341149] calling  crc_t10dif_x86_init+0x0/0xd0 @ 1
[    0.341661] initcall crc_t10dif_x86_init+0x0/0xd0 returned 0 after 0 usecs
[    0.342271] calling  acpi_pci_init+0x0/0x70 @ 1
[    0.342702] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.343003] initcall acpi_pci_init+0x0/0x70 returned 0 after 4000 usecs
[    0.343589] calling  dma_channel_table_init+0x0/0x110 @ 1
[    0.344085] initcall dma_channel_table_init+0x0/0x110 returned 0 after 0 usecs
[    0.344721] calling  dma_bus_init+0x0/0x160 @ 1
[    0.345177] initcall dma_bus_init+0x0/0x160 returned 0 after 0 usecs
[    0.345750] calling  register_xen_pci_notifier+0x0/0x40 @ 1
[    0.346259] initcall register_xen_pci_notifier+0x0/0x40 returned 0 after 0 usecs
[    0.346939] calling  xen_pcpu_init+0x0/0xf0 @ 1
[    0.347003] initcall xen_pcpu_init+0x0/0xf0 returned -19 after 0 usecs
[    0.347497] calling  serial_base_init+0x0/0x70 @ 1
[    0.347938] initcall serial_base_init+0x0/0x70 returned 0 after 0 usecs
[    0.348526] calling  iommu_dma_init+0x0/0x30 @ 1
[    0.348962] initcall iommu_dma_init+0x0/0x30 returned 0 after 0 usecs
[    0.349545] calling  dmi_id_init+0x0/0x400 @ 1
[    0.349985] initcall dmi_id_init+0x0/0x400 returned 0 after 0 usecs
[    0.350543] calling  numachip_timer_init+0x0/0x70 @ 1
[    0.351003] initcall numachip_timer_init+0x0/0x70 returned -19 after 0 usecs
[    0.351623] calling  ts_dmi_init+0x0/0xf0 @ 1
[    0.352035] initcall ts_dmi_init+0x0/0xf0 returned 0 after 0 usecs
[    0.352599] calling  pci_arch_init+0x0/0xa0 @ 1
[    0.353023] PCI: Using configuration type 1 for base access
[    0.353501] initcall pci_arch_init+0x0/0xa0 returned 0 after 0 usecs
[    0.354106] calling  init_vdso_image_64+0x0/0x20 @ 1
[    0.355023] initcall init_vdso_image_64+0x0/0x20 returned 0 after 0 usecs
[    0.355579] calling  init_vdso_image_32+0x0/0x20 @ 1
[    0.356112] initcall init_vdso_image_32+0x0/0x20 returned 0 after 0 usecs
[    0.356633] calling  fixup_ht_bug+0x0/0xe0 @ 1
[    0.356991] initcall fixup_ht_bug+0x0/0xe0 returned 0 after 0 usecs
[    0.357476] calling  mtrr_init_finalize+0x0/0x40 @ 1
[    0.357862] initcall mtrr_init_finalize+0x0/0x40 returned 0 after 0 usecs
[    0.358365] calling  blake2s_mod_init+0x0/0x90 @ 1
[    0.358773] initcall blake2s_mod_init+0x0/0x90 returned 0 after 0 usecs
[    0.359004] calling  uid_cache_init+0x0/0x110 @ 1
[    0.359387] initcall uid_cache_init+0x0/0x110 returned 0 after 0 usecs
[    0.359873] calling  pid_namespace_sysctl_init+0x0/0x30 @ 1
[    0.360298] initcall pid_namespace_sysctl_init+0x0/0x30 returned 0 after 0 usecs
[    0.360846] calling  param_sysfs_init+0x0/0x60 @ 1
[    0.361227] initcall param_sysfs_init+0x0/0x60 returned 0 after 0 usecs
[    0.361717] calling  user_namespace_sysctl_init+0x0/0xf0 @ 1
[    0.362150] initcall user_namespace_sysctl_init+0x0/0xf0 returned 0 after 0 usecs
[    0.362766] calling  proc_schedstat_init+0x0/0x40 @ 1
[    0.363007] initcall proc_schedstat_init+0x0/0x40 returned 0 after 0 usecs
[    0.363619] calling  pm_sysrq_init+0x0/0x30 @ 1
[    0.364056] initcall pm_sysrq_init+0x0/0x30 returned 0 after 0 usecs
[    0.364627] calling  create_proc_profile+0x0/0x60 @ 1
[    0.365090] initcall create_proc_profile+0x0/0x60 returned 0 after 0 usecs
[    0.365687] calling  crash_save_vmcoreinfo_init+0x0/0x6b0 @ 1
[    0.366200] initcall crash_save_vmcoreinfo_init+0x0/0x6b0 returned 0 after 0 usecs
[    0.366759] calling  crash_notes_memory_init+0x0/0x50 @ 1
[    0.367005] initcall crash_notes_memory_init+0x0/0x50 returned 0 after 0 usecs
[    0.367543] calling  crash_hotplug_init+0x0/0x50 @ 1
[    0.367933] initcall crash_hotplug_init+0x0/0x50 returned 66 after 0 usecs
[    0.368488] calling  cgroup_sysfs_init+0x0/0x30 @ 1
[    0.368945] initcall cgroup_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[    0.369539] calling  user_namespaces_init+0x0/0x90 @ 1
[    0.370015] initcall user_namespaces_init+0x0/0x90 returned 0 after 0 usecs
[    0.370635] calling  init_optprobes+0x0/0x50 @ 1
[    0.371003] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.371758] initcall init_optprobes+0x0/0x50 returned 0 after 0 usecs
[    0.372329] calling  hung_task_init+0x0/0x90 @ 1
[    0.372799] initcall hung_task_init+0x0/0x90 returned 0 after 0 usecs
[    0.372799] calling  ftrace_check_for_weak_functions+0x0/0x70 @ 1
[    0.372799] initcall ftrace_check_for_weak_functions+0x0/0x70 returned 0 after 0 usecs
[    0.372803] calling  trace_eval_init+0x0/0xc0 @ 1
[    0.375008] initcall trace_eval_init+0x0/0xc0 returned 0 after 0 usecs
[    0.375518] calling  send_signal_irq_work_init+0x0/0x70 @ 1
[    0.375948] initcall send_signal_irq_work_init+0x0/0x70 returned 0 after 0 usecs
[    0.376507] calling  dev_map_init+0x0/0x30 @ 1
[    0.376864] initcall dev_map_init+0x0/0x30 returned 0 after 0 usecs
[    0.377335] calling  netns_bpf_init+0x0/0x20 @ 1
[    0.377695] initcall netns_bpf_init+0x0/0x20 returned 0 after 0 usecs
[    0.378184] calling  oom_init+0x0/0x60 @ 1
[    0.383011] initcall oom_init+0x0/0x60 returned 0 after 8000 usecs
[    0.384172] calling  init_user_buckets+0x0/0x40 @ 1
[    0.384811] initcall init_user_buckets+0x0/0x40 returned 0 after 0 usecs
[    0.385579] calling  init_vm_util_sysctls+0x0/0x40 @ 1
[    0.386122] initcall init_vm_util_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.386736] calling  default_bdi_init+0x0/0x40 @ 1
[    0.387043] initcall default_bdi_init+0x0/0x40 returned 0 after 0 usecs
[    0.387770] calling  cgwb_init+0x0/0x40 @ 1
[    0.388266] initcall cgwb_init+0x0/0x40 returned 0 after 0 usecs
[    0.388949] calling  percpu_enable_async+0x0/0x20 @ 1
[    0.389535] initcall percpu_enable_async+0x0/0x20 returned 0 after 0 usecs
[    0.390279] calling  kcompactd_init+0x0/0xa0 @ 1
[    0.390837] initcall kcompactd_init+0x0/0xa0 returned 0 after 0 usecs
[    0.391004] calling  init_user_reserve+0x0/0x50 @ 1
[    0.391564] initcall init_user_reserve+0x0/0x50 returned 0 after 0 usecs
[    0.392302] calling  init_admin_reserve+0x0/0x50 @ 1
[    0.392866] initcall init_admin_reserve+0x0/0x50 returned 0 after 0 usecs
[    0.393616] calling  init_reserve_notifier+0x0/0x40 @ 1
[    0.394212] initcall init_reserve_notifier+0x0/0x40 returned 0 after 0 usecs
[    0.394986] calling  swap_init_sysfs+0x0/0x90 @ 1
[    0.395006] initcall swap_init_sysfs+0x0/0x90 returned 0 after 0 usecs
[    0.395764] calling  swapfile_init+0x0/0xe0 @ 1
[    0.396299] initcall swapfile_init+0x0/0xe0 returned 0 after 0 usecs
[    0.397023] calling  hugetlb_init+0x0/0x610 @ 1
[    0.397564] HugeTLB: allocation took 0ms with hugepage_allocation_threads=1
[    0.398221] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.398730] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.399004] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.399509] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.400017] initcall hugetlb_init+0x0/0x610 returned 0 after 4000 usecs
[    0.400522] calling  ksm_init+0x0/0x260 @ 1
[    0.400890] initcall ksm_init+0x0/0x260 returned 0 after 0 usecs
[    0.400890] calling  memory_tier_init+0x0/0xe0 @ 1
[    0.400890] initcall memory_tier_init+0x0/0xe0 returned 0 after 0 usecs
[    0.400890] calling  numa_init_sysfs+0x0/0x90 @ 1
[    0.400890] initcall numa_init_sysfs+0x0/0x90 returned 0 after 0 usecs
[    0.403003] calling  hugepage_init+0x0/0x400 @ 1
[    0.403428] initcall hugepage_init+0x0/0x400 returned 0 after 0 usecs
[    0.403488] calling  mem_cgroup_init+0x0/0xb0 @ 1
[    0.403850] initcall mem_cgroup_init+0x0/0xb0 returned 0 after 0 usecs
[    0.404338] calling  mem_cgroup_swap_init+0x0/0x60 @ 1
[    0.404739] initcall mem_cgroup_swap_init+0x0/0x60 returned 0 after 0 usecs
[    0.405252] calling  page_idle_init+0x0/0x50 @ 1
[    0.405615] initcall page_idle_init+0x0/0x50 returned 0 after 0 usecs
[    0.406103] calling  init_msg_buckets+0x0/0x40 @ 1
[    0.406513] initcall init_msg_buckets+0x0/0x40 returned 0 after 0 usecs
[    0.407004] calling  seqiv_module_init+0x0/0x20 @ 1
[    0.407394] initcall seqiv_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.407892] calling  dh_init+0x0/0x60 @ 1
[    0.408214] initcall dh_init+0x0/0x60 returned 0 after 0 usecs
[    0.408664] calling  rsa_init+0x0/0x80 @ 1
[    0.408990] initcall rsa_init+0x0/0x80 returned 0 after 0 usecs
[    0.409436] calling  hmac_module_init+0x0/0x20 @ 1
[    0.409867] initcall hmac_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.410380] calling  crypto_null_mod_init+0x0/0x80 @ 1
[    0.410853] initcall crypto_null_mod_init+0x0/0x80 returned 0 after 0 usecs
[    0.411008] calling  md5_mod_init+0x0/0x20 @ 1
[    0.411362] initcall md5_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.411836] calling  sha1_generic_mod_init+0x0/0x20 @ 1
[    0.412228] initcall sha1_generic_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.412744] calling  sha256_generic_mod_init+0x0/0x30 @ 1
[    0.413149] initcall sha256_generic_mod_init+0x0/0x30 returned 0 after 0 usecs
[    0.413686] calling  sha512_generic_mod_init+0x0/0x30 @ 1
[    0.414096] initcall sha512_generic_mod_init+0x0/0x30 returned 0 after 0 usecs
[    0.414648] calling  sha3_generic_mod_init+0x0/0x30 @ 1
[    0.415004] initcall sha3_generic_mod_init+0x0/0x30 returned 0 after 0 usecs
[    0.415597] calling  crypto_ecb_module_init+0x0/0x20 @ 1
[    0.416044] initcall crypto_ecb_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.416590] calling  crypto_cbc_module_init+0x0/0x20 @ 1
[    0.417001] initcall crypto_cbc_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.417546] calling  crypto_cts_module_init+0x0/0x20 @ 1
[    0.417954] initcall crypto_cts_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.418484] calling  xts_module_init+0x0/0x20 @ 1
[    0.418864] initcall xts_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.419004] calling  crypto_ctr_module_init+0x0/0x30 @ 1
[    0.419485] initcall crypto_ctr_module_init+0x0/0x30 returned 0 after 0 usecs
[    0.420109] calling  crypto_gcm_module_init+0x0/0x90 @ 1
[    0.420590] initcall crypto_gcm_module_init+0x0/0x90 returned 0 after 0 usecs
[    0.421216] calling  aes_init+0x0/0x20 @ 1
[    0.421600] initcall aes_init+0x0/0x20 returned 0 after 0 usecs
[    0.422125] calling  crc32c_mod_init+0x0/0x40 @ 1
[    0.422558] initcall crc32c_mod_init+0x0/0x40 returned 0 after 0 usecs
[    0.423003] calling  lzo_mod_init+0x0/0x20 @ 1
[    0.423418] initcall lzo_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.423977] calling  lzorle_mod_init+0x0/0x20 @ 1
[    0.424414] initcall lzorle_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.424958] calling  drbg_init+0x0/0x220 @ 1
[    0.425374] initcall drbg_init+0x0/0x220 returned 0 after 0 usecs
[    0.425897] calling  ghash_mod_init+0x0/0x20 @ 1
[    0.426274] initcall ghash_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.426848] calling  ecdh_init+0x0/0x90 @ 1
[    0.427005] initcall ecdh_init+0x0/0x90 returned 0 after 0 usecs
[    0.427546] calling  init_bio+0x0/0xe0 @ 1
[    0.427962] initcall init_bio+0x0/0xe0 returned 0 after 0 usecs
[    0.428499] calling  blk_ioc_init+0x0/0x80 @ 1
[    0.428912] initcall blk_ioc_init+0x0/0x80 returned 0 after 0 usecs
[    0.429471] calling  blk_mq_init+0x0/0x130 @ 1
[    0.429885] initcall blk_mq_init+0x0/0x130 returned 0 after 0 usecs
[    0.430442] calling  genhd_device_init+0x0/0x60 @ 1
[    0.430951] initcall genhd_device_init+0x0/0x60 returned 0 after 0 usecs
[    0.431003] calling  blkcg_punt_bio_init+0x0/0x40 @ 1
[    0.431483] initcall blkcg_punt_bio_init+0x0/0x40 returned 0 after 0 usecs
[    0.431646] calling  blk_integrity_auto_init+0x0/0xe0 @ 1
[    0.432152] initcall blk_integrity_auto_init+0x0/0xe0 returned 0 after 0 usecs
[    0.432152] calling  io_wq_init+0x0/0x50 @ 1
[    0.432152] initcall io_wq_init+0x0/0x50 returned 0 after 0 usecs
[    0.432588] calling  sg_pool_init+0x0/0x110 @ 1
[    0.433014] initcall sg_pool_init+0x0/0x110 returned 0 after 0 usecs
[    0.435003] calling  irq_poll_setup+0x0/0x90 @ 1
[    0.435365] initcall irq_poll_setup+0x0/0x90 returned 0 after 0 usecs
[    0.435849] calling  sx150x_init+0x0/0x30 @ 1
[    0.436197] initcall sx150x_init+0x0/0x30 returned 0 after 0 usecs
[    0.436655] calling  byt_gpio_init+0x0/0x30 @ 1
[    0.437009] initcall byt_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.437552] calling  chv_pinctrl_init+0x0/0x30 @ 1
[    0.437925] initcall chv_pinctrl_init+0x0/0x30 returned 0 after 0 usecs
[    0.438414] calling  gpiolib_debugfs_init+0x0/0x40 @ 1
[    0.439013] initcall gpiolib_debugfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.439541] calling  palmas_gpio_init+0x0/0x30 @ 1
[    0.439916] initcall palmas_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.440438] calling  rc5t583_gpio_init+0x0/0x30 @ 1
[    0.440880] initcall rc5t583_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.441399] calling  tps6586x_gpio_init+0x0/0x30 @ 1
[    0.441793] initcall tps6586x_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.442302] calling  tps65910_gpio_init+0x0/0x30 @ 1
[    0.442696] initcall tps65910_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.443003] calling  pwm_init+0x0/0x70 @ 1
[    0.443337] initcall pwm_init+0x0/0x70 returned 0 after 0 usecs
[    0.443781] calling  leds_init+0x0/0x60 @ 1
[    0.444116] initcall leds_init+0x0/0x60 returned 0 after 0 usecs
[    0.444566] calling  pci_slot_init+0x0/0x60 @ 1
[    0.444925] initcall pci_slot_init+0x0/0x60 returned 0 after 0 usecs
[    0.445404] calling  fbmem_init+0x0/0x90 @ 1
[    0.445766] initcall fbmem_init+0x0/0x90 returned 0 after 0 usecs
[    0.446228] calling  scan_for_dmi_ipmi+0x0/0x300 @ 1
[    0.446652] initcall scan_for_dmi_ipmi+0x0/0x300 returned 0 after 0 usecs
[    0.447003] calling  acpi_init+0x0/0x540 @ 1
[    0.447419] ACPI: Added _OSI(Module Device)
[    0.447812] ACPI: Added _OSI(Processor Device)
[    0.448227] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.448663] ACPI: Added _OSI(Processor Aggregator Device)
[    0.449585] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    0.451068] ACPI: Interpreter enabled
[    0.451447] ACPI: PM: (supports S0 S5)
[    0.451806] ACPI: Using IOAPIC for interrupt routing
[    0.452270] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.453053] PCI: Using E820 reservations for host bridge windows
[    0.453578] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.455527] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.456005] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI HPX-Type3]
[    0.456595] acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    0.457338] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended configuration space under this bridge
[    0.458332] acpiphp: Slot [3] registered
[    0.458655] acpiphp: Slot [4] registered
[    0.458984] acpiphp: Slot [5] registered
[    0.459012] acpiphp: Slot [6] registered
[    0.459333] acpiphp: Slot [7] registered
[    0.459653] acpiphp: Slot [8] registered
[    0.459974] acpiphp: Slot [9] registered
[    0.460293] acpiphp: Slot [10] registered
[    0.460620] acpiphp: Slot [11] registered
[    0.460953] acpiphp: Slot [12] registered
[    0.461278] acpiphp: Slot [13] registered
[    0.461603] acpiphp: Slot [14] registered
[    0.461930] acpiphp: Slot [15] registered
[    0.462256] acpiphp: Slot [16] registered
[    0.462581] acpiphp: Slot [17] registered
[    0.462912] acpiphp: Slot [18] registered
[    0.463011] acpiphp: Slot [19] registered
[    0.463335] acpiphp: Slot [20] registered
[    0.463659] acpiphp: Slot [21] registered
[    0.463982] acpiphp: Slot [22] registered
[    0.464306] acpiphp: Slot [23] registered
[    0.464630] acpiphp: Slot [24] registered
[    0.464960] acpiphp: Slot [25] registered
[    0.465289] acpiphp: Slot [26] registered
[    0.465616] acpiphp: Slot [27] registered
[    0.465943] acpiphp: Slot [28] registered
[    0.466271] acpiphp: Slot [29] registered
[    0.466604] acpiphp: Slot [30] registered
[    0.466933] acpiphp: Slot [31] registered
[    0.467008] PCI host bridge to bus 0000:00
[    0.467723] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.468230] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.468740] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.469291] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]
[    0.469839] pci_bus 0000:00: root bus resource [mem 0x240000000-0x2bfffffff window]
[    0.470413] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.470858] pci 0000:00:00.0: calling  quirk_mmio_always_on+0x0/0x20 @ 1
[    0.471003] pci 0000:00:00.0: quirk_mmio_always_on+0x0/0x20 took 0 usecs
[    0.471511] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 conventional PCI endpoint
[    0.472387] pci 0000:00:00.0: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.472942] pci 0000:00:00.0: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.473967] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 conventional PCI endpoint
[    0.474810] pci 0000:00:01.0: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.475005] pci 0000:00:01.0: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.475636] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180 conventional PCI endpoint
[    0.476764] pci 0000:00:01.1: BAR 4 [io  0xc5a0-0xc5af]
[    0.477192] pci 0000:00:01.1: BAR 0 [io  0x01f0-0x01f7]: legacy IDE quirk
[    0.477710] pci 0000:00:01.1: BAR 1 [io  0x03f6]: legacy IDE quirk
[    0.478173] pci 0000:00:01.1: BAR 2 [io  0x0170-0x0177]: legacy IDE quirk
[    0.478676] pci 0000:00:01.1: BAR 3 [io  0x0376]: legacy IDE quirk
[    0.479008] pci 0000:00:01.1: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.479541] pci 0000:00:01.1: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.480153] pci 0000:00:01.3: calling  acpi_pm_check_blacklist+0x0/0x50 @ 1
[    0.480667] pci 0000:00:01.3: acpi_pm_check_blacklist+0x0/0x50 took 0 usecs
[    0.481178] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000 conventional PCI endpoint
[    0.481970] pci 0000:00:01.3: calling  quirk_piix4_acpi+0x0/0x180 @ 1
[    0.482462] pci 0000:00:01.3: quirk: [io  0x0600-0x063f] claimed by PIIX4 ACPI
[    0.483008] pci 0000:00:01.3: quirk: [io  0x0700-0x070f] claimed by PIIX4 SMB
[    0.483551] pci 0000:00:01.3: quirk_piix4_acpi+0x0/0x180 took 3906 usecs
[    0.484055] pci 0000:00:01.3: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.484589] pci 0000:00:01.3: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.485125] pci 0000:00:01.3: calling  pci_fixup_piix4_acpi+0x0/0x20 @ 1
[    0.485628] pci 0000:00:01.3: pci_fixup_piix4_acpi+0x0/0x20 took 0 usecs
[    0.486211] pci 0000:00:02.0: [1b36:0100] type 00 class 0x030000 conventional PCI endpoint
[    0.488133] pci 0000:00:02.0: BAR 0 [mem 0xf4000000-0xf7ffffff]
[    0.488596] pci 0000:00:02.0: BAR 1 [mem 0xf8000000-0xfbffffff]
[    0.489044] pci 0000:00:02.0: BAR 2 [mem 0xfc054000-0xfc055fff]
[    0.489490] pci 0000:00:02.0: BAR 3 [io  0xc540-0xc55f]
[    0.489897] pci 0000:00:02.0: ROM [mem 0xfc040000-0xfc04ffff pref]
[    0.490378] pci 0000:00:02.0: calling  screen_info_fixup_lfb+0x0/0x170 @ 1
[    0.490900] pci 0000:00:02.0: screen_info_fixup_lfb+0x0/0x170 took 0 usecs
[    0.491005] pci 0000:00:02.0: calling  pci_fixup_video+0x0/0x120 @ 1
[    0.491489] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.492175] pci 0000:00:02.0: pci_fixup_video+0x0/0x120 took 0 usecs
[    0.493120] pci 0000:00:03.0: [1af4:1000] type 00 class 0x020000 conventional PCI endpoint
[    0.495643] pci 0000:00:03.0: BAR 0 [io  0xc560-0xc57f]
[    0.496121] pci 0000:00:03.0: BAR 1 [mem 0xfc056000-0xfc056fff]
[    0.497126] pci 0000:00:03.0: BAR 4 [mem 0xfebf0000-0xfebf3fff 64bit pref]
[    0.497729] pci 0000:00:03.0: ROM [mem 0xfc000000-0xfc03ffff pref]
[    0.498772] pci 0000:00:04.0: [1b36:000d] type 00 class 0x0c0330 conventional PCI endpoint
[    0.499328] pci 0000:00:04.0: BAR 0 [mem 0xfc050000-0xfc053fff 64bit]
[    0.500255] pci 0000:00:05.0: [8086:2415] type 00 class 0x040100 conventional PCI endpoint
[    0.501544] pci 0000:00:05.0: BAR 0 [io  0xc000-0xc3ff]
[    0.502035] pci 0000:00:05.0: BAR 1 [io  0xc400-0xc4ff]
[    0.502538] pci 0000:00:05.0: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.503005] pci 0000:00:05.0: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.503868] pci 0000:00:06.0: [1af4:1052] type 00 class 0x098000 conventional PCI endpoint
[    0.505175] pci 0000:00:06.0: BAR 1 [mem 0xfc057000-0xfc057fff]
[    0.505732] pci 0000:00:06.0: BAR 4 [mem 0xfebf4000-0xfebf7fff 64bit pref]
[    0.507051] pci 0000:00:07.0: [1af4:1003] type 00 class 0x078000 conventional PCI endpoint
[    0.508462] pci 0000:00:07.0: BAR 0 [io  0xc500-0xc53f]
[    0.508944] pci 0000:00:07.0: BAR 1 [mem 0xfc058000-0xfc058fff]
[    0.509435] pci 0000:00:07.0: BAR 4 [mem 0xfebf8000-0xfebfbfff 64bit pref]
[    0.510478] pci 0000:00:08.0: [1af4:1002] type 00 class 0x00ff00 conventional PCI endpoint
[    0.511532] pci 0000:00:08.0: BAR 0 [io  0xc580-0xc59f]
[    0.511951] pci 0000:00:08.0: BAR 4 [mem 0xfebfc000-0xfebfffff 64bit pref]
[    0.518246] ACPI: PCI: Interrupt link LNKA configured for IRQ 10
[    0.518854] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[    0.519058] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[    0.519648] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[    0.520150] ACPI: PCI: Interrupt link LNKS configured for IRQ 9
[    0.520765] initcall acpi_init+0x0/0x540 returned 0 after 72000 usecs
[    0.521258] calling  adxl_init+0x0/0x1b0 @ 1
[    0.521599] initcall adxl_init+0x0/0x1b0 returned -19 after 0 usecs
[    0.522072] calling  hmat_init+0x0/0x3d0 @ 1
[    0.522714] initcall hmat_init+0x0/0x3d0 returned 0 after 0 usecs
[    0.523003] calling  acpi_hed_driver_init+0x0/0x30 @ 1
[    0.523412] initcall acpi_hed_driver_init+0x0/0x30 returned 0 after 0 usecs
[    0.523925] calling  pnp_init+0x0/0x20 @ 1
[    0.524255] initcall pnp_init+0x0/0x20 returned 0 after 0 usecs
[    0.524714] calling  balloon_init+0x0/0x2d0 @ 1
[    0.525091] initcall balloon_init+0x0/0x2d0 returned -19 after 0 usecs
[    0.525575] calling  xen_setup_shutdown_event+0x0/0x50 @ 1
[    0.526009] initcall xen_setup_shutdown_event+0x0/0x50 returned -19 after 0 usecs
[    0.526637] calling  xenbus_probe_backend_init+0x0/0xa0 @ 1
[    0.527010] initcall xenbus_probe_backend_init+0x0/0xa0 returned 0 after 0 usecs
[    0.527716] calling  xenbus_probe_frontend_init+0x0/0x60 @ 1
[    0.528158] initcall xenbus_probe_frontend_init+0x0/0x60 returned 0 after 0 usecs
[    0.528719] calling  xen_acpi_pad_init+0x0/0x60 @ 1
[    0.529108] initcall xen_acpi_pad_init+0x0/0x60 returned -19 after 0 usecs
[    0.529619] calling  misc_init+0x0/0xb0 @ 1
[    0.529957] initcall misc_init+0x0/0xb0 returned 0 after 0 usecs
[    0.530408] calling  tpm_init+0x0/0xe0 @ 1
[    0.530786] initcall tpm_init+0x0/0xe0 returned 0 after 0 usecs
[    0.531004] calling  iommu_subsys_init+0x0/0x170 @ 1
[    0.531385] iommu: Default domain type: Translated
[    0.531758] iommu: DMA domain TLB invalidation policy: lazy mode
[    0.532213] initcall iommu_subsys_init+0x0/0x170 returned 0 after 0 usecs
[    0.532718] calling  cn_init+0x0/0xf0 @ 1
[    0.533052] initcall cn_init+0x0/0xf0 returned 0 after 0 usecs
[    0.533498] calling  pm860x_i2c_init+0x0/0x50 @ 1
[    0.533877] initcall pm860x_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.534387] calling  wm8400_driver_init+0x0/0x50 @ 1
[    0.534770] initcall wm8400_driver_init+0x0/0x50 returned 0 after 0 usecs
[    0.535003] calling  wm831x_i2c_init+0x0/0x50 @ 1
[    0.535368] initcall wm831x_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.535859] calling  wm831x_spi_init+0x0/0x40 @ 1
[    0.536224] initcall wm831x_spi_init+0x0/0x40 returned 0 after 0 usecs
[    0.536716] calling  wm8350_i2c_init+0x0/0x30 @ 1
[    0.537082] initcall wm8350_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.537564] calling  tps65910_i2c_init+0x0/0x30 @ 1
[    0.537946] initcall tps65910_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.538444] calling  ezx_pcap_init+0x0/0x30 @ 1
[    0.538799] initcall ezx_pcap_init+0x0/0x30 returned 0 after 0 usecs
[    0.539003] calling  da903x_init+0x0/0x30 @ 1
[    0.539349] initcall da903x_init+0x0/0x30 returned 0 after 0 usecs
[    0.539825] calling  da9052_spi_init+0x0/0x50 @ 1
[    0.540200] initcall da9052_spi_init+0x0/0x50 returned 0 after 0 usecs
[    0.540693] calling  da9052_i2c_init+0x0/0x50 @ 1
[    0.541065] initcall da9052_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.541553] calling  lp8788_init+0x0/0x30 @ 1
[    0.541896] initcall lp8788_init+0x0/0x30 returned 0 after 0 usecs
[    0.542405] calling  da9055_i2c_init+0x0/0x50 @ 1
[    0.542841] initcall da9055_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.543003] calling  max77843_i2c_init+0x0/0x30 @ 1
[    0.543431] initcall max77843_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.543939] calling  max8925_i2c_init+0x0/0x50 @ 1
[    0.544318] initcall max8925_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.544817] calling  max8997_i2c_init+0x0/0x30 @ 1
[    0.545198] initcall max8997_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.545706] calling  max8998_i2c_init+0x0/0x30 @ 1
[    0.546086] initcall max8998_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.546583] calling  tps6586x_init+0x0/0x30 @ 1
[    0.546941] initcall tps6586x_init+0x0/0x30 returned 0 after 0 usecs
[    0.547003] calling  tps65090_init+0x0/0x30 @ 1
[    0.547427] initcall tps65090_init+0x0/0x30 returned 0 after 0 usecs
[    0.547989] calling  aat2870_init+0x0/0x30 @ 1
[    0.548402] initcall aat2870_init+0x0/0x30 returned 0 after 0 usecs
[    0.548962] calling  palmas_i2c_init+0x0/0x30 @ 1
[    0.549419] initcall palmas_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.549909] calling  rc5t583_i2c_init+0x0/0x30 @ 1
[    0.550760] initcall rc5t583_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.551006] calling  as3711_i2c_init+0x0/0x30 @ 1
[    0.551375] initcall as3711_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.551866] calling  libnvdimm_init+0x0/0x70 @ 1
[    0.552248] initcall libnvdimm_init+0x0/0x70 returned 0 after 0 usecs
[    0.552749] calling  dax_core_init+0x0/0x110 @ 1
[    0.553134] initcall dax_core_init+0x0/0x110 returned 0 after 0 usecs
[    0.553638] calling  dma_buf_init+0x0/0xb0 @ 1
[    0.554006] initcall dma_buf_init+0x0/0xb0 returned 0 after 0 usecs
[    0.554493] calling  init_scsi+0x0/0xa0 @ 1
[    0.554988] SCSI subsystem initialized
[    0.555004] initcall init_scsi+0x0/0xa0 returned 0 after 4000 usecs
[    0.555488] calling  ata_init+0x0/0x410 @ 1
[    0.555858] libata version 3.00 loaded.
[    0.555858] initcall ata_init+0x0/0x410 returned 0 after 0 usecs
[    0.555858] calling  phy_init+0x0/0x2b0 @ 1
[    0.556125] initcall phy_init+0x0/0x2b0 returned 0 after 0 usecs
[    0.556575] calling  usb_common_init+0x0/0x30 @ 1
[    0.556948] initcall usb_common_init+0x0/0x30 returned 0 after 0 usecs
[    0.557440] calling  usb_init+0x0/0x190 @ 1
[    0.557777] ACPI: bus type USB registered
[    0.558108] usbcore: registered new interface driver usbfs
[    0.559007] usbcore: registered new interface driver hub
[    0.559420] usbcore: registered new device driver usb
[    0.559811] initcall usb_init+0x0/0x190 returned 0 after 4000 usecs
[    0.560282] calling  xdbc_init+0x0/0x1e0 @ 1
[    0.560623] initcall xdbc_init+0x0/0x1e0 returned 0 after 0 usecs
[    0.561082] calling  usb_roles_init+0x0/0x20 @ 1
[    0.561443] initcall usb_roles_init+0x0/0x20 returned 0 after 0 usecs
[    0.561920] calling  serio_init+0x0/0x50 @ 1
[    0.562269] initcall serio_init+0x0/0x50 returned 0 after 0 usecs
[    0.562729] calling  input_init+0x0/0x130 @ 1
[    0.563007] initcall input_init+0x0/0x130 returned 0 after 0 usecs
[    0.563473] calling  rtc_init+0x0/0x40 @ 1
[    0.563804] initcall rtc_init+0x0/0x40 returned 0 after 0 usecs
[    0.564252] calling  dw_i2c_init_driver+0x0/0x30 @ 1
[    0.564663] initcall dw_i2c_init_driver+0x0/0x30 returned 0 after 0 usecs
[    0.565178] calling  pps_init+0x0/0xc0 @ 1
[    0.565509] pps_core: LinuxPPS API ver. 1 registered
[    0.565958] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.566668] initcall pps_init+0x0/0xc0 returned 0 after 0 usecs
[    0.567006] calling  ptp_init+0x0/0xa0 @ 1
[    0.567339] PTP clock support registered
[    0.567655] initcall ptp_init+0x0/0xa0 returned 0 after 0 usecs
[    0.568104] calling  power_supply_class_init+0x0/0x30 @ 1
[    0.568524] initcall power_supply_class_init+0x0/0x30 returned 0 after 0 usecs
[    0.569055] calling  hwmon_init+0x0/0x110 @ 1
[    0.569401] initcall hwmon_init+0x0/0x110 returned 0 after 0 usecs
[    0.569873] calling  intel_tcc_init+0x0/0x40 @ 1
[    0.570239] initcall intel_tcc_init+0x0/0x40 returned 0 after 0 usecs
[    0.570849] calling  md_init+0x0/0x190 @ 1
[    0.571064] initcall md_init+0x0/0x190 returned 0 after 0 usecs
[    0.571471] calling  edac_init+0x0/0x90 @ 1
[    0.571826] EDAC MC: Ver: 3.0.0
[    0.572224] initcall edac_init+0x0/0x90 returned 0 after 0 usecs
[    0.572224] calling  mmc_init+0x0/0x50 @ 1
[    0.572224] initcall mmc_init+0x0/0x50 returned 0 after 0 usecs
[    0.572249] calling  dmi_init+0x0/0x140 @ 1
[    0.572598] initcall dmi_init+0x0/0x140 returned 0 after 0 usecs
[    0.573061] calling  efisubsys_init+0x0/0x610 @ 1
[    0.573428] initcall efisubsys_init+0x0/0x610 returned 0 after 0 usecs
[    0.575004] calling  vme_init+0x0/0x20 @ 1
[    0.575336] initcall vme_init+0x0/0x20 returned 0 after 0 usecs
[    0.575790] calling  remoteproc_init+0x0/0x80 @ 1
[    0.576181] initcall remoteproc_init+0x0/0x80 returned 0 after 0 usecs
[    0.576674] calling  devfreq_init+0x0/0xe0 @ 1
[    0.577040] initcall devfreq_init+0x0/0xe0 returned 0 after 0 usecs
[    0.577040] calling  devfreq_event_init+0x0/0x60 @ 1
[    0.577040] initcall devfreq_event_init+0x0/0x60 returned 0 after 0 usecs
[    0.577040] calling  devfreq_simple_ondemand_init+0x0/0x20 @ 1
[    0.579004] initcall devfreq_simple_ondemand_init+0x0/0x20 returned 0 after 0 usecs
[    0.579562] calling  devfreq_performance_init+0x0/0x20 @ 1
[    0.579994] initcall devfreq_performance_init+0x0/0x20 returned 0 after 0 usecs
[    0.580551] calling  devfreq_powersave_init+0x0/0x20 @ 1
[    0.580993] initcall devfreq_powersave_init+0x0/0x20 returned 0 after 0 usecs
[    0.581623] calling  devfreq_userspace_init+0x0/0x20 @ 1
[    0.582089] initcall devfreq_userspace_init+0x0/0x20 returned 0 after 0 usecs
[    0.582621] calling  devfreq_passive_init+0x0/0x20 @ 1
[    0.583004] initcall devfreq_passive_init+0x0/0x20 returned 0 after 0 usecs
[    0.583517] calling  ras_init+0x0/0x20 @ 1
[    0.583844] initcall ras_init+0x0/0x20 returned 0 after 0 usecs
[    0.584288] calling  nvmem_init+0x0/0x20 @ 1
[    0.584631] initcall nvmem_init+0x0/0x20 returned 0 after 0 usecs
[    0.585095] calling  dpll_init+0x0/0x20 @ 1
[    0.585444] initcall dpll_init+0x0/0x20 returned 0 after 0 usecs
[    0.585893] calling  proto_init+0x0/0x20 @ 1
[    0.586231] initcall proto_init+0x0/0x20 returned 0 after 0 usecs
[    0.586686] calling  net_dev_init+0x0/0x3a0 @ 1
[    0.587080] initcall net_dev_init+0x0/0x3a0 returned 0 after 0 usecs
[    0.587684] calling  neigh_init+0x0/0x30 @ 1
[    0.588081] initcall neigh_init+0x0/0x30 returned 0 after 0 usecs
[    0.588628] calling  fib_notifier_init+0x0/0x20 @ 1
[    0.589085] initcall fib_notifier_init+0x0/0x20 returned 0 after 0 usecs
[    0.589680] calling  netdev_genl_init+0x0/0x50 @ 1
[    0.590131] initcall netdev_genl_init+0x0/0x50 returned 0 after 0 usecs
[    0.590717] calling  page_pool_user_init+0x0/0x20 @ 1
[    0.591004] initcall page_pool_user_init+0x0/0x20 returned 0 after 0 usecs
[    0.591611] calling  fib_rules_init+0x0/0x80 @ 1
[    0.592041] initcall fib_rules_init+0x0/0x80 returned 0 after 0 usecs
[    0.592615] calling  init_cgroup_netprio+0x0/0x30 @ 1
[    0.593083] initcall init_cgroup_netprio+0x0/0x30 returned 0 after 0 usecs
[    0.593690] calling  bpf_lwt_init+0x0/0x30 @ 1
[    0.594106] initcall bpf_lwt_init+0x0/0x30 returned 0 after 0 usecs
[    0.594666] calling  pktsched_init+0x0/0xc0 @ 1
[    0.595087] initcall pktsched_init+0x0/0xc0 returned 0 after 0 usecs
[    0.595659] calling  tc_filter_init+0x0/0xa0 @ 1
[    0.596096] initcall tc_filter_init+0x0/0xa0 returned 0 after 0 usecs
[    0.596672] calling  tc_action_init+0x0/0x30 @ 1
[    0.597109] initcall tc_action_init+0x0/0x30 returned 0 after 0 usecs
[    0.597593] calling  ethnl_init+0x0/0x80 @ 1
[    0.597955] initcall ethnl_init+0x0/0x80 returned 0 after 0 usecs
[    0.598419] calling  nexthop_init+0x0/0x40 @ 1
[    0.598772] initcall nexthop_init+0x0/0x40 returned 0 after 0 usecs
[    0.599003] calling  devlink_init+0x0/0x70 @ 1
[    0.599377] initcall devlink_init+0x0/0x70 returned 0 after 0 usecs
[    0.599932] calling  wireless_nlevent_init+0x0/0x50 @ 1
[    0.600408] initcall wireless_nlevent_init+0x0/0x50 returned 0 after 0 usecs
[    0.601029] calling  rfkill_init+0x0/0x130 @ 1
[    0.601465] initcall rfkill_init+0x0/0x130 returned 0 after 0 usecs
[    0.601465] calling  ncsi_init_netlink+0x0/0x20 @ 1
[    0.601465] initcall ncsi_init_netlink+0x0/0x20 returned 0 after 0 usecs
[    0.603003] calling  shaper_init+0x0/0x20 @ 1
[    0.603377] initcall shaper_init+0x0/0x20 returned 0 after 0 usecs
[    0.603845] calling  pci_subsys_init+0x0/0x80 @ 1
[    0.604234] PCI: Using ACPI for IRQ routing
[    0.604629] PCI: pci_cache_line_size set to 64 bytes
[    0.605177] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    0.605706] e820: reserve RAM buffer [mem 0xbffdf000-0xbfffffff]
[    0.606235] initcall pci_subsys_init+0x0/0x80 returned 0 after 0 usecs
[    0.606803] calling  vsprintf_init_hashval+0x0/0x20 @ 1
[    0.607004] initcall vsprintf_init_hashval+0x0/0x20 returned 0 after 0 usecs
[    0.608039] calling  efi_runtime_map_init+0x0/0x260 @ 1
[    0.608515] initcall efi_runtime_map_init+0x0/0x260 returned 0 after 0 usecs
[    0.609134] calling  vga_arb_device_init+0x0/0xa0 @ 1
[    0.609536] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.609536] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.609536] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.611004] vgaarb: loaded
[    0.611238] initcall vga_arb_device_init+0x0/0xa0 returned 0 after 4000 usecs
[    0.611767] calling  watchdog_init+0x0/0xb0 @ 1
[    0.612216] initcall watchdog_init+0x0/0xb0 returned 0 after 0 usecs
[    0.612216] calling  nmi_warning_debugfs+0x0/0x40 @ 1
[    0.612216] initcall nmi_warning_debugfs+0x0/0x40 returned 0 after 0 usecs
[    0.612450] calling  hpet_late_init+0x0/0x420 @ 1
[    0.612826] initcall hpet_late_init+0x0/0x420 returned -19 after 0 usecs
[    0.613326] calling  init_amd_nbs+0x0/0x340 @ 1
[    0.613683] initcall init_amd_nbs+0x0/0x340 returned 0 after 0 usecs
[    0.615004] calling  amd_smn_init+0x0/0x200 @ 1
[    0.615354] initcall amd_smn_init+0x0/0x200 returned 0 after 0 usecs
[    0.615837] calling  iomem_init_inode+0x0/0xa0 @ 1
[    0.616219] initcall iomem_init_inode+0x0/0xa0 returned 0 after 0 usecs
[    0.616707] calling  clocksource_done_booting+0x0/0x50 @ 1
[    0.617160] clocksource: Switched to clocksource kvm-clock
[    0.617577] initcall clocksource_done_booting+0x0/0x50 returned 0 after 419 usecs
[    0.618123] calling  tracer_init_tracefs+0x0/0xd0 @ 1
[    0.618517] initcall tracer_init_tracefs+0x0/0xd0 returned 0 after 5 usecs
[    0.619001] calling  init_trace_printk_function_export+0x0/0x40 @ 1
[    0.619001] initcall init_trace_printk_function_export+0x0/0x40 returned 0 after 499 usecs
[    0.619001] calling  init_graph_tracefs+0x0/0x40 @ 1
[    0.619001] initcall init_graph_tracefs+0x0/0x40 returned 0 after 0 usecs
[    0.619370] calling  trace_events_synth_init+0x0/0x60 @ 1
[    0.619785] initcall trace_events_synth_init+0x0/0x60 returned 0 after 0 usecs
[    0.620319] calling  bpf_event_init+0x0/0x20 @ 1
[    0.620681] initcall bpf_event_init+0x0/0x20 returned 0 after 0 usecs
[    0.620876] calling  init_kprobe_trace+0x0/0x1e0 @ 1
[    0.620876] initcall init_kprobe_trace+0x0/0x1e0 returned 0 after 4 usecs
[    0.620876] calling  init_dynamic_event+0x0/0x40 @ 1
[    0.620876] initcall init_dynamic_event+0x0/0x40 returned 0 after 0 usecs
[    0.622952] calling  init_uprobe_trace+0x0/0x80 @ 1
[    0.623334] initcall init_uprobe_trace+0x0/0x80 returned 0 after 7 usecs
[    0.623827] calling  bpf_init+0x0/0x60 @ 1
[    0.624151] initcall bpf_init+0x0/0x60 returned 0 after 3 usecs
[    0.624594] calling  secretmem_init+0x0/0x60 @ 1
[    0.624958] initcall secretmem_init+0x0/0x60 returned 0 after 5 usecs
[    0.625436] calling  init_fs_stat_sysctls+0x0/0x40 @ 1
[    0.625838] initcall init_fs_stat_sysctls+0x0/0x40 returned 0 after 4 usecs
[    0.626355] calling  init_fs_exec_sysctls+0x0/0x40 @ 1
[    0.626748] initcall init_fs_exec_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.627277] calling  init_pipe_fs+0x0/0x80 @ 1
[    0.627634] initcall init_pipe_fs+0x0/0x80 returned 0 after 6 usecs
[    0.628199] calling  init_fs_namei_sysctls+0x0/0x40 @ 1
[    0.628647] initcall init_fs_namei_sysctls+0x0/0x40 returned 0 after 4 usecs
[    0.629183] calling  init_fs_dcache_sysctls+0x0/0x60 @ 1
[    0.629646] initcall init_fs_dcache_sysctls+0x0/0x60 returned 0 after 7 usecs
[    0.630185] calling  init_fs_namespace_sysctls+0x0/0x40 @ 1
[    0.630626] initcall init_fs_namespace_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.631179] calling  cgroup_writeback_init+0x0/0x40 @ 1
[    0.631587] initcall cgroup_writeback_init+0x0/0x40 returned 0 after 3 usecs
[    0.632122] calling  inotify_user_setup+0x0/0x140 @ 1
[    0.632526] initcall inotify_user_setup+0x0/0x140 returned 0 after 5 usecs
[    0.633049] calling  eventpoll_init+0x0/0x190 @ 1
[    0.633452] initcall eventpoll_init+0x0/0x190 returned 0 after 15 usecs
[    0.633958] calling  anon_inode_init+0x0/0x70 @ 1
[    0.634339] initcall anon_inode_init+0x0/0x70 returned 0 after 7 usecs
[    0.635235] calling  init_dax_wait_table+0x0/0x50 @ 1
[    0.635636] initcall init_dax_wait_table+0x0/0x50 returned 0 after 11 usecs
[    0.636158] calling  proc_locks_init+0x0/0x40 @ 1
[    0.636537] initcall proc_locks_init+0x0/0x40 returned 0 after 10 usecs
[    0.637038] calling  backing_aio_init+0x0/0x90 @ 1
[    0.637412] initcall backing_aio_init+0x0/0x90 returned 0 after 1 usecs
[    0.637915] calling  init_fs_coredump_sysctls+0x0/0x40 @ 1
[    0.638465] initcall init_fs_coredump_sysctls+0x0/0x40 returned 0 after 3 usecs
[    0.639221] calling  init_vm_drop_caches_sysctls+0x0/0x40 @ 1
[    0.639665] initcall init_vm_drop_caches_sysctls+0x0/0x40 returned 0 after 3 usecs
[    0.640224] calling  iomap_dio_init+0x0/0x40 @ 1
[    0.640590] initcall iomap_dio_init+0x0/0x40 returned 0 after 5 usecs
[    0.641078] calling  iomap_ioend_init+0x0/0x30 @ 1
[    0.641466] initcall iomap_ioend_init+0x0/0x30 returned 0 after 11 usecs
[    0.641982] calling  dquot_init+0x0/0x190 @ 1
[    0.642326] VFS: Disk quotas dquot_6.6.0
[    0.642655] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.643233] initcall dquot_init+0x0/0x190 returned 0 after 906 usecs
[    0.643775] calling  quota_init+0x0/0x40 @ 1
[    0.644128] initcall quota_init+0x0/0x40 returned 0 after 8 usecs
[    0.644639] calling  proc_cmdline_init+0x0/0x50 @ 1
[    0.645021] initcall proc_cmdline_init+0x0/0x50 returned 0 after 2 usecs
[    0.645638] calling  proc_consoles_init+0x0/0x40 @ 1
[    0.646068] initcall proc_consoles_init+0x0/0x40 returned 0 after 2 usecs
[    0.646603] calling  proc_cpuinfo_init+0x0/0x30 @ 1
[    0.646985] initcall proc_cpuinfo_init+0x0/0x30 returned 0 after 0 usecs
[    0.647479] calling  proc_devices_init+0x0/0x40 @ 1
[    0.647853] initcall proc_devices_init+0x0/0x40 returned 0 after 0 usecs
[    0.648349] calling  proc_interrupts_init+0x0/0x40 @ 1
[    0.648742] initcall proc_interrupts_init+0x0/0x40 returned 0 after 0 usecs
[    0.649255] calling  proc_loadavg_init+0x0/0x40 @ 1
[    0.649722] initcall proc_loadavg_init+0x0/0x40 returned 0 after 0 usecs
[    0.650295] calling  proc_meminfo_init+0x0/0x40 @ 1
[    0.650689] initcall proc_meminfo_init+0x0/0x40 returned 0 after 1 usecs
[    0.651186] calling  proc_stat_init+0x0/0x30 @ 1
[    0.651553] initcall proc_stat_init+0x0/0x30 returned 0 after 1 usecs
[    0.652039] calling  proc_uptime_init+0x0/0x40 @ 1
[    0.652415] initcall proc_uptime_init+0x0/0x40 returned 0 after 0 usecs
[    0.652911] calling  proc_version_init+0x0/0x40 @ 1
[    0.653289] initcall proc_version_init+0x0/0x40 returned 0 after 0 usecs
[    0.653792] calling  proc_softirqs_init+0x0/0x40 @ 1
[    0.654173] initcall proc_softirqs_init+0x0/0x40 returned 0 after 0 usecs
[    0.654681] calling  proc_kcore_init+0x0/0x170 @ 1
[    0.655072] initcall proc_kcore_init+0x0/0x170 returned 0 after 20 usecs
[    0.655566] calling  vmcore_init+0x0/0x920 @ 1
[    0.655910] initcall vmcore_init+0x0/0x920 returned 0 after 0 usecs
[    0.656383] calling  proc_kmsg_init+0x0/0x30 @ 1
[    0.656746] initcall proc_kmsg_init+0x0/0x30 returned 0 after 0 usecs
[    0.657232] calling  proc_page_init+0x0/0x70 @ 1
[    0.657614] initcall proc_page_init+0x0/0x70 returned 0 after 4 usecs
[    0.658181] calling  init_ramfs_fs+0x0/0x20 @ 1
[    0.658610] initcall init_ramfs_fs+0x0/0x20 returned 0 after 2 usecs
[    0.659169] calling  init_hugetlbfs_fs+0x0/0x1c0 @ 1
[    0.659645] initcall init_hugetlbfs_fs+0x0/0x1c0 returned 0 after 25 usecs
[    0.660228] calling  aa_create_aafs+0x0/0x3c0 @ 1
[    0.660604] initcall aa_create_aafs+0x0/0x3c0 returned 0 after 0 usecs
[    0.661143] calling  dynamic_debug_init_control+0x0/0xa0 @ 1
[    0.661609] initcall dynamic_debug_init_control+0x0/0xa0 returned 0 after 9 usecs
[    0.662163] calling  acpi_event_init+0x0/0x50 @ 1
[    0.662545] initcall acpi_event_init+0x0/0x50 returned 0 after 9 usecs
[    0.663049] calling  pnp_system_init+0x0/0x20 @ 1
[    0.663436] initcall pnp_system_init+0x0/0x20 returned 0 after 15 usecs
[    0.663927] calling  pnpacpi_init+0x0/0x80 @ 1
[    0.664276] pnp: PnP ACPI init
[    0.664625] pnp 00:03: [dma 2]
[    0.665400] pnp: PnP ACPI: found 5 devices
[    0.665742] initcall pnpacpi_init+0x0/0x80 returned 0 after 1465 usecs
[    0.666230] calling  chr_dev_init+0x0/0xb0 @ 1
[    0.667682] initcall chr_dev_init+0x0/0xb0 returned 0 after 1094 usecs
[    0.668180] calling  hwrng_modinit+0x0/0xc0 @ 1
[    0.668559] initcall hwrng_modinit+0x0/0xc0 returned 0 after 25 usecs
[    0.669091] calling  firmware_class_init+0x0/0x120 @ 1
[    0.669575] initcall firmware_class_init+0x0/0x120 returned 0 after 9 usecs
[    0.670188] calling  map_properties+0x0/0x670 @ 1
[    0.670628] initcall map_properties+0x0/0x670 returned 0 after 0 usecs
[    0.671206] calling  init_acpi_pm_clocksource+0x0/0x110 @ 1
[    0.676212] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.676967] initcall init_acpi_pm_clocksource+0x0/0x110 returned 0 after 5258 usecs
[    0.677635] calling  powercap_init+0x0/0x290 @ 1
[    0.678080] initcall powercap_init+0x0/0x290 returned 0 after 17 usecs
[    0.678664] calling  sysctl_core_init+0x0/0x40 @ 1
[    0.679116] initcall sysctl_core_init+0x0/0x40 returned 0 after 12 usecs
[    0.679707] calling  eth_offload_init+0x0/0x30 @ 1
[    0.680149] initcall eth_offload_init+0x0/0x30 returned 0 after 0 usecs
[    0.680734] calling  ipv4_offload_init+0x0/0xe0 @ 1
[    0.681181] initcall ipv4_offload_init+0x0/0xe0 returned 0 after 0 usecs
[    0.681775] calling  inet_init+0x0/0x360 @ 1
[    0.682193] NET: Registered PF_INET protocol family
[    0.682948] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.684540] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.685188] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.685848] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.686640] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.687711] TCP: Hash tables configured (established 65536 bind 65536)
[    0.688325] UDP hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.688959] UDP-Lite hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.689660] initcall inet_init+0x0/0x360 returned 0 after 7485 usecs
[    0.690232] calling  af_unix_init+0x0/0x120 @ 1
[    0.690662] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.691177] initcall af_unix_init+0x0/0x120 returned 0 after 517 usecs
[    0.691755] calling  ipv6_offload_init+0x0/0xf0 @ 1
[    0.692203] initcall ipv6_offload_init+0x0/0xf0 returned 0 after 0 usecs
[    0.692793] calling  vlan_offload_init+0x0/0x30 @ 1
[    0.693237] initcall vlan_offload_init+0x0/0x30 returned 0 after 0 usecs
[    0.693762] calling  xsk_init+0x0/0xa0 @ 1
[    0.694092] NET: Registered PF_XDP protocol family
[    0.694465] initcall xsk_init+0x0/0xa0 returned 0 after 374 usecs
[    0.695351] calling  pcibios_assign_resources+0x0/0xe0 @ 1
[    0.695861] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.696412] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.696957] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.697563] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfebfffff window]
[    0.698162] pci_bus 0000:00: resource 8 [mem 0x240000000-0x2bfffffff window]
[    0.698798] initcall pcibios_assign_resources+0x0/0xe0 returned 0 after 2945 usecs
[    0.699477] calling  pci_apply_final_quirks+0x0/0x160 @ 1
[    0.699961] pci 0000:00:00.0: calling  quirk_passive_release+0x0/0xb0 @ 1
[    0.700485] pci 0000:00:01.0: PIIX3: Enabling Passive Release
[    0.700932] pci 0000:00:00.0: quirk_passive_release+0x0/0xb0 took 446 usecs
[    0.701459] pci 0000:00:00.0: calling  quirk_natoma+0x0/0x40 @ 1
[    0.701926] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    0.702428] pci 0000:00:00.0: quirk_natoma+0x0/0x40 took 490 usecs
[    0.703018] pci 0000:00:04.0: calling  quirk_usb_early_handoff+0x0/0x6d0 @ 1
[    0.714730] ACPI: \_SB_.LNKD: Enabled at IRQ 11
[    0.726244] pci 0000:00:04.0: quirk_usb_early_handoff+0x0/0x6d0 took 22069 usecs
[    0.726922] PCI: CLS 0 bytes, default 64
[    0.727257] initcall pci_apply_final_quirks+0x0/0x160 returned 0 after 27300 usecs
[    0.727879] calling  acpi_reserve_resources+0x0/0x120 @ 1
[    0.728298] initcall acpi_reserve_resources+0x0/0x120 returned 0 after 2 usecs
[    0.728832] calling  p2sb_fs_init+0x0/0x160 @ 1
[    0.729209] initcall p2sb_fs_init+0x0/0x160 returned -2 after 20 usecs
[    0.729705] calling  populate_rootfs+0x0/0x60 @ 1
[    0.730113] Trying to unpack rootfs image as initramfs...
[    0.730590] initcall populate_rootfs+0x0/0x60 returned 0 after 515 usecs
[    0.731400] calling  pci_iommu_init+0x0/0x50 @ 1
[    0.731925] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.732630] software IO TLB: mapped [mem 0x00000000af000000-0x00000000b3000000] (64MB)
[    0.733459] initcall pci_iommu_init+0x0/0x50 returned 0 after 1534 usecs
[    0.734218] calling  ir_dev_scope_init+0x0/0x50 @ 1
[    0.734763] initcall ir_dev_scope_init+0x0/0x50 returned 0 after 0 usecs
[    0.735544] calling  snp_init_platform_device+0x0/0x50 @ 1
[    0.736229] initcall snp_init_platform_device+0x0/0x50 returned -19 after 0 usecs
[    0.737156] calling  ia32_binfmt_init+0x0/0x30 @ 1
[    0.737784] initcall ia32_binfmt_init+0x0/0x30 returned 0 after 7 usecs
[    0.738619] calling  amd_ibs_init+0x0/0x370 @ 1
[    0.739120] initcall amd_ibs_init+0x0/0x370 returned -19 after 0 usecs
[    0.739835] calling  amd_uncore_init+0x0/0x1c0 @ 1
[    0.740381] initcall amd_uncore_init+0x0/0x1c0 returned -19 after 0 usecs
[    0.741123] calling  amd_iommu_pc_init+0x0/0x280 @ 1
[    0.741692] initcall amd_iommu_pc_init+0x0/0x280 returned -19 after 0 usecs
[    0.742498] calling  msr_init+0x0/0x70 @ 1
[    0.743058] initcall msr_init+0x0/0x70 returned 0 after 25 usecs
[    0.743832] calling  intel_uncore_init+0x0/0x5b0 @ 1
[    0.744485] initcall intel_uncore_init+0x0/0x5b0 returned -19 after 0 usecs
[    0.745324] calling  register_kernel_offset_dumper+0x0/0x30 @ 1
[    0.745992] initcall register_kernel_offset_dumper+0x0/0x30 returned 0 after 0 usecs
[    0.746824] calling  i8259A_init_ops+0x0/0x40 @ 1
[    0.747365] initcall i8259A_init_ops+0x0/0x40 returned 0 after 1 usecs
[    0.748100] calling  init_tsc_clocksource+0x0/0xe0 @ 1
[    0.748756] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x28680fa287f, max_idle_ns: 440795281151 ns
[    0.749949] initcall init_tsc_clocksource+0x0/0xe0 returned 0 after 1193 usecs
[    0.750801] calling  add_rtc_cmos+0x0/0xc0 @ 1
[    0.751316] initcall add_rtc_cmos+0x0/0xc0 returned 0 after 1 usecs
[    0.752003] calling  i8237A_init_ops+0x0/0x60 @ 1
[    0.752545] initcall i8237A_init_ops+0x0/0x60 returned 0 after 6 usecs
[    0.753265] calling  umwait_init+0x0/0xb0 @ 1
[    0.753830] initcall umwait_init+0x0/0xb0 returned -19 after 0 usecs
[    0.755057] calling  ioapic_init_ops+0x0/0x30 @ 1
[    0.755675] initcall ioapic_init_ops+0x0/0x30 returned 0 after 0 usecs
[    0.756416] calling  register_e820_pmem+0x0/0x90 @ 1
[    0.756982] initcall register_e820_pmem+0x0/0x90 returned 0 after 3 usecs
[    0.757678] calling  add_pcspkr+0x0/0x80 @ 1
[    0.758047] initcall add_pcspkr+0x0/0x80 returned 0 after 31 usecs
[    0.758515] calling  start_periodic_check_for_corruption+0x0/0x60 @ 1
[    0.759000] initcall start_periodic_check_for_corruption+0x0/0x60 returned 0 after 0 usecs
[    0.759603] calling  audit_classes_init+0x0/0xc0 @ 1
[    0.759990] initcall audit_classes_init+0x0/0xc0 returned 0 after 1 usecs
[    0.760514] calling  pt_dump_init+0x0/0x50 @ 1
[    0.760960] initcall pt_dump_init+0x0/0x50 returned 0 after 0 usecs
[    0.761443] calling  iosf_mbi_init+0x0/0xc0 @ 1
[    0.762103] initcall iosf_mbi_init+0x0/0xc0 returned 0 after 226 usecs
[    0.762711] calling  proc_execdomains_init+0x0/0x30 @ 1
[    0.763120] initcall proc_execdomains_init+0x0/0x30 returned 0 after 3 usecs
[    0.763637] calling  register_warn_debugfs+0x0/0x40 @ 1
[    0.764034] initcall register_warn_debugfs+0x0/0x40 returned 0 after 1 usecs
[    0.764548] calling  cpuhp_sysfs_init+0x0/0x100 @ 1
[    0.764930] initcall cpuhp_sysfs_init+0x0/0x100 returned 0 after 9 usecs
[    0.765424] calling  ioresources_init+0x0/0x60 @ 1
[    0.765914] initcall ioresources_init+0x0/0x60 returned 0 after 1 usecs
[    0.766507] calling  psi_proc_init+0x0/0x90 @ 1
[    0.766938] initcall psi_proc_init+0x0/0x90 returned 0 after 1 usecs
[    0.767509] calling  snapshot_device_init+0x0/0x20 @ 1
[    0.768047] initcall snapshot_device_init+0x0/0x20 returned 0 after 64 usecs
[    0.768672] calling  irq_gc_init_ops+0x0/0x30 @ 1
[    0.769107] initcall irq_gc_init_ops+0x0/0x30 returned 0 after 0 usecs
[    0.769671] calling  irq_pm_init_ops+0x0/0x30 @ 1
[    0.770036] initcall irq_pm_init_ops+0x0/0x30 returned 0 after 0 usecs
[    0.770523] calling  klp_init+0x0/0x40 @ 1
[    0.770877] initcall klp_init+0x0/0x40 returned 0 after 2 usecs
[    0.771340] calling  proc_modules_init+0x0/0x30 @ 1
[    0.771723] initcall proc_modules_init+0x0/0x30 returned 0 after 1 usecs
[    0.772220] calling  timer_sysctl_init+0x0/0x30 @ 1
[    0.772602] initcall timer_sysctl_init+0x0/0x30 returned 0 after 3 usecs
[    0.773111] calling  timekeeping_init_ops+0x0/0x30 @ 1
[    0.773509] initcall timekeeping_init_ops+0x0/0x30 returned 0 after 0 usecs
[    0.774034] calling  init_clocksource_sysfs+0x0/0x40 @ 1
[    0.774713] initcall init_clocksource_sysfs+0x0/0x40 returned 0 after 270 usecs
[    0.775367] calling  init_timer_list_procfs+0x0/0x40 @ 1
[    0.775856] initcall init_timer_list_procfs+0x0/0x40 returned 0 after 2 usecs
[    0.776493] calling  alarmtimer_init+0x0/0xf0 @ 1
[    0.776943] initcall alarmtimer_init+0x0/0xf0 returned 0 after 13 usecs
[    0.777503] calling  init_posix_timers+0x0/0x90 @ 1
[    0.777977] initcall init_posix_timers+0x0/0x90 returned 0 after 4 usecs
[    0.778639] calling  clockevents_init_sysfs+0x0/0xe0 @ 1
[    0.779237] initcall clockevents_init_sysfs+0x0/0xe0 returned 0 after 57 usecs
[    0.779780] calling  proc_dma_init+0x0/0x30 @ 1
[    0.780140] initcall proc_dma_init+0x0/0x30 returned 0 after 2 usecs
[    0.780618] calling  kallsyms_init+0x0/0x30 @ 1
[    0.780973] initcall kallsyms_init+0x0/0x30 returned 0 after 1 usecs
[    0.781449] calling  pid_namespaces_init+0x0/0xc0 @ 1
[    0.781869] initcall pid_namespaces_init+0x0/0xc0 returned 0 after 22 usecs
[    0.782383] calling  ikconfig_init+0x0/0x60 @ 1
[    0.782742] initcall ikconfig_init+0x0/0x60 returned 0 after 0 usecs
[    0.783212] calling  audit_watch_init+0x0/0x60 @ 1
[    0.783579] initcall audit_watch_init+0x0/0x60 returned 0 after 0 usecs
[    0.784081] calling  audit_fsnotify_init+0x0/0x60 @ 1
[    0.784474] initcall audit_fsnotify_init+0x0/0x60 returned 0 after 0 usecs
[    0.785521] calling  audit_tree_init+0x0/0xd0 @ 1
[    0.785899] initcall audit_tree_init+0x0/0xd0 returned 0 after 1 usecs
[    0.786390] calling  seccomp_sysctl_init+0x0/0x40 @ 1
[    0.786808] initcall seccomp_sysctl_init+0x0/0x40 returned 0 after 3 usecs
[    0.787328] calling  utsname_sysctl_init+0x0/0x30 @ 1
[    0.787727] initcall utsname_sysctl_init+0x0/0x30 returned 0 after 5 usecs
[    0.788234] calling  init_tracepoints+0x0/0x50 @ 1
[    0.788607] initcall init_tracepoints+0x0/0x50 returned 0 after 1 usecs
[    0.789101] calling  stack_trace_init+0x0/0xc0 @ 1
[    0.789481] initcall stack_trace_init+0x0/0xc0 returned 0 after 10 usecs
[    0.789991] calling  init_mmio_trace+0x0/0x20 @ 1
[    0.790358] initcall init_mmio_trace+0x0/0x20 returned 0 after 1 usecs
[    0.790858] calling  init_blk_tracer+0x0/0x70 @ 1
[    0.791235] initcall init_blk_tracer+0x0/0x70 returned 0 after 4 usecs
[    0.791719] calling  perf_event_sysfs_init+0x0/0xb0 @ 1
[    0.792191] initcall perf_event_sysfs_init+0x0/0xb0 returned 0 after 69 usecs
[    0.792721] calling  system_trusted_keyring_init+0x0/0x110 @ 1
[    0.793171] Initialise system trusted keyrings
[    0.793568] initcall system_trusted_keyring_init+0x0/0x110 returned 0 after 397 usecs
[    0.794166] calling  blacklist_init+0x0/0x100 @ 1
[    0.794655] Key type blacklist registered
[    0.794995] initcall blacklist_init+0x0/0x100 returned 0 after 342 usecs
[    0.795497] calling  kswapd_init+0x0/0xa0 @ 1
[    0.795919] initcall kswapd_init+0x0/0xa0 returned 0 after 76 usecs
[    0.796399] calling  extfrag_debug_init+0x0/0x70 @ 1
[    0.796793] initcall extfrag_debug_init+0x0/0x70 returned 0 after 4 usecs
[    0.797309] calling  mm_compute_batch_init+0x0/0x30 @ 1
[    0.797749] initcall mm_compute_batch_init+0x0/0x30 returned 0 after 1 usecs
[    0.798346] calling  slab_proc_init+0x0/0x30 @ 1
[    0.798723] initcall slab_proc_init+0x0/0x30 returned 0 after 2 usecs
[    0.799217] calling  workingset_init+0x0/0xd0 @ 1
[    0.799597] workingset: timestamp_bits=36 max_order=21 bucket_order=0
[    0.800143] initcall workingset_init+0x0/0xd0 returned 0 after 546 usecs
[    0.800656] calling  proc_vmalloc_init+0x0/0x50 @ 1
[    0.801041] initcall proc_vmalloc_init+0x0/0x50 returned 0 after 2 usecs
[    0.801576] calling  slab_debugfs_init+0x0/0x70 @ 1
[    0.802032] initcall slab_debugfs_init+0x0/0x70 returned 0 after 10 usecs
[    0.802583] calling  procswaps_init+0x0/0x30 @ 1
[    0.802949] initcall procswaps_init+0x0/0x30 returned 0 after 1 usecs
[    0.803436] calling  zs_init+0x0/0x30 @ 1
[    0.803761] initcall zs_init+0x0/0x30 returned 0 after 0 usecs
[    0.804202] calling  ptdump_debugfs_init+0x0/0x40 @ 1
[    0.804667] initcall ptdump_debugfs_init+0x0/0x40 returned 0 after 1 usecs
[    0.805272] calling  fcntl_init+0x0/0x80 @ 1
[    0.805680] initcall fcntl_init+0x0/0x80 returned 0 after 2 usecs
[    0.806224] calling  proc_filesystems_init+0x0/0x30 @ 1
[    0.806698] initcall proc_filesystems_init+0x0/0x30 returned 0 after 0 usecs
[    0.807234] calling  start_dirtytime_writeback+0x0/0x60 @ 1
[    0.807677] initcall start_dirtytime_writeback+0x0/0x60 returned 0 after 5 usecs
[    0.808233] calling  dio_init+0x0/0x90 @ 1
[    0.808562] initcall dio_init+0x0/0x90 returned 0 after 0 usecs
[    0.809006] calling  dnotify_init+0x0/0x120 @ 1
[    0.809372] initcall dnotify_init+0x0/0x120 returned 0 after 11 usecs
[    0.809879] calling  fanotify_user_setup+0x0/0x250 @ 1
[    0.810278] initcall fanotify_user_setup+0x0/0x250 returned 0 after 3 usecs
[    0.810906] calling  userfaultfd_init+0x0/0xc0 @ 1
[    0.811568] initcall userfaultfd_init+0x0/0xc0 returned 0 after 152 usecs
[    0.812222] calling  aio_setup+0x0/0x120 @ 1
[    0.812600] initcall aio_setup+0x0/0x120 returned 0 after 30 usecs
[    0.813072] calling  mbcache_init+0x0/0x90 @ 1
[    0.813434] initcall mbcache_init+0x0/0x90 returned 0 after 4 usecs
[    0.813923] calling  init_devpts_fs+0x0/0x50 @ 1
[    0.814292] initcall init_devpts_fs+0x0/0x50 returned 0 after 5 usecs
[    0.815160] calling  ext4_init_fs+0x0/0x210 @ 1
[    0.815586] initcall ext4_init_fs+0x0/0x210 returned 0 after 65 usecs
[    0.816070] calling  journal_init+0x0/0x1f0 @ 1
[    0.816434] initcall journal_init+0x0/0x1f0 returned 0 after 11 usecs
[    0.816912] calling  init_squashfs_fs+0x0/0xd0 @ 1
[    0.817291] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.817747] initcall init_squashfs_fs+0x0/0xd0 returned 0 after 459 usecs
[    0.818257] calling  init_fat_fs+0x0/0xb0 @ 1
[    0.818614] initcall init_fat_fs+0x0/0xb0 returned 0 after 3 usecs
[    0.819077] calling  init_vfat_fs+0x0/0x20 @ 1
[    0.819427] initcall init_vfat_fs+0x0/0x20 returned 0 after 1 usecs
[    0.819894] calling  ecryptfs_init+0x0/0x230 @ 1
[    0.820382] initcall ecryptfs_init+0x0/0x230 returned 0 after 130 usecs
[    0.820902] calling  init_nls_cp437+0x0/0x30 @ 1
[    0.821267] initcall init_nls_cp437+0x0/0x30 returned 0 after 0 usecs
[    0.821758] calling  fuse_init+0x0/0x250 @ 1
[    0.822097] fuse: init (API version 7.43)
[    0.822458] initcall fuse_init+0x0/0x250 returned 0 after 360 usecs
[    0.822954] calling  efivarfs_init+0x0/0x20 @ 1
[    0.823313] initcall efivarfs_init+0x0/0x20 returned 0 after 1 usecs
[    0.823793] calling  ipc_init+0x0/0x40 @ 1
[    0.824126] initcall ipc_init+0x0/0x40 returned 0 after 5 usecs
[    0.824576] calling  ipc_sysctl_init+0x0/0x40 @ 1
[    0.824954] initcall ipc_sysctl_init+0x0/0x40 returned 0 after 8 usecs
[    0.825442] calling  init_mqueue_fs+0x0/0x160 @ 1
[    0.825839] initcall init_mqueue_fs+0x0/0x160 returned 0 after 19 usecs
[    0.826338] calling  key_proc_init+0x0/0x80 @ 1
[    0.826715] initcall key_proc_init+0x0/0x80 returned 0 after 1 usecs
[    0.827221] calling  selinux_nf_ip_init+0x0/0x60 @ 1
[    0.827679] initcall selinux_nf_ip_init+0x0/0x60 returned 0 after 0 usecs
[    0.828205] calling  init_sel_fs+0x0/0x140 @ 1
[    0.828562] initcall init_sel_fs+0x0/0x140 returned 0 after 0 usecs
[    0.829030] calling  selnl_init+0x0/0xa0 @ 1
[    0.829376] initcall selnl_init+0x0/0xa0 returned 0 after 8 usecs
[    0.829842] calling  sel_netif_init+0x0/0x50 @ 1
[    0.830204] initcall sel_netif_init+0x0/0x50 returned 0 after 0 usecs
[    0.830710] calling  sel_netnode_init+0x0/0x40 @ 1
[    0.831089] initcall sel_netnode_init+0x0/0x40 returned 0 after 0 usecs
[    0.831590] calling  sel_netport_init+0x0/0x40 @ 1
[    0.831968] initcall sel_netport_init+0x0/0x40 returned 0 after 0 usecs
[    0.832463] calling  aurule_init+0x0/0x40 @ 1
[    0.832816] initcall aurule_init+0x0/0x40 returned 0 after 0 usecs
[    0.833294] calling  apparmor_nf_ip_init+0x0/0x50 @ 1
[    0.833728] initcall apparmor_nf_ip_init+0x0/0x50 returned 0 after 0 usecs
[    0.834246] calling  bpf_crypto_skcipher_init+0x0/0x20 @ 1
[    0.834672] initcall bpf_crypto_skcipher_init+0x0/0x20 returned 0 after 0 usecs
[    0.835321] calling  crypto_hkdf_module_init+0x0/0x20 @ 1
[    0.835817] initcall crypto_hkdf_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.836455] calling  jent_mod_init+0x0/0xf0 @ 1
[    0.843015] initcall jent_mod_init+0x0/0xf0 returned 0 after 6135 usecs
[    0.843640] calling  asymmetric_key_init+0x0/0x20 @ 1
[    0.844164] Key type asymmetric registered
[    0.845005] initcall asymmetric_key_init+0x0/0x20 returned 0 after 842 usecs
[    0.845844] calling  x509_key_init+0x0/0x20 @ 1
[    0.846406] Asymmetric key parser 'x509' registered
[    0.847019] initcall x509_key_init+0x0/0x20 returned 0 after 612 usecs
[    0.847795] calling  crypto_kdf108_init+0x0/0x20 @ 1
[    0.848401] initcall crypto_kdf108_init+0x0/0x20 returned 0 after 0 usecs
[    0.849221] calling  blkdev_init+0x0/0x30 @ 1
[    0.849792] initcall blkdev_init+0x0/0x30 returned 0 after 15 usecs
[    0.850502] calling  proc_genhd_init+0x0/0x50 @ 1
[    0.851070] initcall proc_genhd_init+0x0/0x50 returned 0 after 3 usecs
[    0.851843] calling  bsg_init+0x0/0xa0 @ 1
[    0.852359] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    0.853221] initcall bsg_init+0x0/0xa0 returned 0 after 875 usecs
[    0.853969] calling  throtl_init+0x0/0x50 @ 1
[    0.854609] initcall throtl_init+0x0/0x50 returned 0 after 76 usecs
[    0.855338] calling  ioc_init+0x0/0x20 @ 1
[    0.855856] initcall ioc_init+0x0/0x20 returned 0 after 4 usecs
[    0.856561] calling  deadline_init+0x0/0x20 @ 1
[    0.857125] io scheduler mq-deadline registered
[    0.857688] initcall deadline_init+0x0/0x20 returned 0 after 564 usecs
[    0.858456] calling  bfq_init+0x0/0xf0 @ 1
[    0.858600] Freeing initrd memory: 72972K
[    0.858997] io scheduler bfq registered
[    0.859982] initcall bfq_init+0x0/0xf0 returned 0 after 1000 usecs
[    0.860719] calling  io_uring_init+0x0/0xe0 @ 1
[    0.861290] initcall io_uring_init+0x0/0xe0 returned 0 after 13 usecs
[    0.862031] calling  blake2s_mod_init+0x0/0x20 @ 1
[    0.862628] initcall blake2s_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.863411] calling  btree_module_init+0x0/0x80 @ 1
[    0.863992] initcall btree_module_init+0x0/0x80 returned 0 after 1 usecs
[    0.864782] calling  percpu_counter_startup+0x0/0x70 @ 1
[    0.865557] initcall percpu_counter_startup+0x0/0x70 returned 0 after 132 usecs
[    0.866392] calling  digsig_init+0x0/0x50 @ 1
[    0.866946] initcall digsig_init+0x0/0x50 returned 0 after 4 usecs
[    0.867678] calling  phy_core_init+0x0/0x60 @ 1
[    0.868252] initcall phy_core_init+0x0/0x60 returned 0 after 22 usecs
[    0.869026] calling  amd_gpio_driver_init+0x0/0x30 @ 1
[    0.869668] initcall amd_gpio_driver_init+0x0/0x30 returned 0 after 13 usecs
[    0.870508] calling  crystalcove_pwm_driver_init+0x0/0x30 @ 1
[    0.871215] initcall crystalcove_pwm_driver_init+0x0/0x30 returned 0 after 6 usecs
[    0.872092] calling  pwm_lpss_driver_pci_init+0x0/0x30 @ 1
[    0.872764] initcall pwm_lpss_driver_pci_init+0x0/0x30 returned 0 after 17 usecs
[    0.873629] calling  pwm_lpss_driver_platform_init+0x0/0x30 @ 1
[    0.874334] initcall pwm_lpss_driver_platform_init+0x0/0x30 returned 0 after 4 usecs
[    0.875647] calling  ledtrig_disk_init+0x0/0x50 @ 1
[    0.876245] initcall ledtrig_disk_init+0x0/0x50 returned 0 after 1 usecs
[    0.877026] calling  ledtrig_mtd_init+0x0/0x40 @ 1
[    0.877604] initcall ledtrig_mtd_init+0x0/0x40 returned 0 after 1 usecs
[    0.878387] calling  ledtrig_cpu_init+0x0/0x100 @ 1
[    0.879060] ledtrig-cpu: registered to indicate activity on CPUs
[    0.879779] initcall ledtrig_cpu_init+0x0/0x100 returned 0 after 792 usecs
[    0.880580] calling  ledtrig_panic_init+0x0/0x60 @ 1
[    0.881195] initcall ledtrig_panic_init+0x0/0x60 returned 0 after 1 usecs
[    0.881995] calling  pcie_portdrv_init+0x0/0x60 @ 1
[    0.882628] initcall pcie_portdrv_init+0x0/0x60 returned 0 after 25 usecs
[    0.883406] calling  pci_proc_init+0x0/0x80 @ 1
[    0.883962] initcall pci_proc_init+0x0/0x80 returned 0 after 11 usecs
[    0.884718] calling  pci_hotplug_init+0x0/0x50 @ 1
[    0.885296] initcall pci_hotplug_init+0x0/0x50 returned 0 after 0 usecs
[    0.886072] calling  shpcd_init+0x0/0x30 @ 1
[    0.886620] initcall shpcd_init+0x0/0x30 returned 0 after 10 usecs
[    0.887335] calling  pci_ep_cfs_init+0x0/0x100 @ 1
[    0.887947] initcall pci_ep_cfs_init+0x0/0x100 returned 0 after 24 usecs
[    0.888715] calling  pci_epc_init+0x0/0x20 @ 1
[    0.889268] initcall pci_epc_init+0x0/0x20 returned 0 after 3 usecs
[    0.890009] calling  pci_epf_init+0x0/0x50 @ 1
[    0.890582] initcall pci_epf_init+0x0/0x50 returned 0 after 9 usecs
[    0.891323] calling  dw_plat_pcie_driver_init+0x0/0x30 @ 1
[    0.891975] initcall dw_plat_pcie_driver_init+0x0/0x30 returned 0 after 5 usecs
[    0.892831] calling  imsttfb_init+0x0/0x150 @ 1
[    0.893398] initcall imsttfb_init+0x0/0x150 returned 0 after 10 usecs
[    0.894072] calling  asiliantfb_init+0x0/0x60 @ 1
[    0.894502] initcall asiliantfb_init+0x0/0x60 returned 0 after 13 usecs
[    0.895029] calling  vesafb_driver_init+0x0/0x30 @ 1
[    0.895610] initcall vesafb_driver_init+0x0/0x30 returned 0 after 6 usecs
[    0.896407] calling  efifb_driver_init+0x0/0x30 @ 1
[    0.897003] initcall efifb_driver_init+0x0/0x30 returned 0 after 3 usecs
[    0.897790] calling  simplefb_driver_init+0x0/0x30 @ 1
[    0.898415] initcall simplefb_driver_init+0x0/0x30 returned 0 after 4 usecs
[    0.899236] calling  intel_idle_init+0x0/0xd90 @ 1
[    0.899825] initcall intel_idle_init+0x0/0xd90 returned -19 after 1 usecs
[    0.900618] calling  ged_driver_init+0x0/0x30 @ 1
[    0.901186] initcall ged_driver_init+0x0/0x30 returned 0 after 4 usecs
[    0.901960] calling  acpi_ac_init+0x0/0x60 @ 1
[    0.902540] initcall acpi_ac_init+0x0/0x60 returned 0 after 30 usecs
[    0.903266] calling  acpi_button_driver_init+0x0/0x70 @ 1
[    0.903966] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    0.905359] ACPI: button: Power Button [PWRF]
[    0.905892] probe of LNXPWRBN:00 returned 0 after 1965 usecs
[    0.906584] initcall acpi_button_driver_init+0x0/0x70 returned 0 after 2670 usecs
[    0.907452] calling  acpi_fan_driver_init+0x0/0x30 @ 1
[    0.908081] initcall acpi_fan_driver_init+0x0/0x30 returned 0 after 4 usecs
[    0.908883] calling  acpi_processor_driver_init+0x0/0xd0 @ 1
[    0.909840] probe of cpu0 returned 0 after 265 usecs
[    0.910477] probe of cpu1 returned 0 after 16 usecs
[    0.911094] probe of cpu2 returned 0 after 14 usecs
[    0.911694] probe of cpu3 returned 0 after 13 usecs
[    0.912681] initcall acpi_processor_driver_init+0x0/0xd0 returned 0 after 3111 usecs
[    0.913577] calling  acpi_thermal_init+0x0/0xa0 @ 1
[    0.914257] initcall acpi_thermal_init+0x0/0xa0 returned 0 after 87 usecs
[    0.915027] calling  acpi_battery_init+0x0/0x60 @ 1
[    0.915635] initcall acpi_battery_init+0x0/0x60 returned 0 after 18 usecs
[    0.916426] calling  bgrt_init+0x0/0xe0 @ 1
[    0.916928] initcall bgrt_init+0x0/0xe0 returned -19 after 0 usecs
[    0.917666] calling  acpi_aml_init+0x0/0xe0 @ 1
[    0.918233] initcall acpi_aml_init+0x0/0xe0 returned 0 after 7 usecs
[    0.918995] calling  erst_init+0x0/0x350 @ 1
[    0.919521] initcall erst_init+0x0/0x350 returned 0 after 0 usecs
[    0.920212] calling  gpio_clk_driver_init+0x0/0x30 @ 1
[    0.920818] initcall gpio_clk_driver_init+0x0/0x30 returned 0 after 6 usecs
[    0.921623] calling  gated_fixed_clk_driver_init+0x0/0x30 @ 1
[    0.922314] initcall gated_fixed_clk_driver_init+0x0/0x30 returned 0 after 3 usecs
[    0.923196] calling  fch_clk_driver_init+0x0/0x30 @ 1
[    0.923802] initcall fch_clk_driver_init+0x0/0x30 returned 0 after 3 usecs
[    0.924594] calling  plt_clk_driver_init+0x0/0x30 @ 1
[    0.925206] initcall plt_clk_driver_init+0x0/0x30 returned 0 after 3 usecs
[    0.926019] calling  virtio_mmio_init+0x0/0x30 @ 1
[    0.926605] initcall virtio_mmio_init+0x0/0x30 returned 0 after 4 usecs
[    0.927354] calling  virtio_pci_driver_init+0x0/0x30 @ 1
[    0.939074] ACPI: \_SB_.LNKC: Enabled at IRQ 10
[    0.940271] probe of 0000:00:03.0 returned 0 after 12262 usecs
[    0.952047] ACPI: \_SB_.LNKB: Enabled at IRQ 10
[    0.953229] probe of 0000:00:06.0 returned 0 after 12265 usecs
[    0.965515] probe of 0000:00:07.0 returned 0 after 11576 usecs
[    0.977475] probe of 0000:00:08.0 returned 0 after 11248 usecs
[    0.978065] initcall virtio_pci_driver_init+0x0/0x30 returned 0 after 50064 usecs
[    0.978740] calling  virtio_balloon_driver_init+0x0/0x30 @ 1
[    0.979513] probe of virtio3 returned 0 after 251 usecs
[    0.980013] initcall virtio_balloon_driver_init+0x0/0x30 returned 0 after 755 usecs
[    0.980692] calling  xenbus_probe_initcall+0x0/0xb0 @ 1
[    0.981173] initcall xenbus_probe_initcall+0x0/0xb0 returned -19 after 0 usecs
[    0.981821] calling  xenbus_init+0x0/0x60 @ 1
[    0.982232] initcall xenbus_init+0x0/0x60 returned -19 after 0 usecs
[    0.982813] calling  xenbus_backend_init+0x0/0x60 @ 1
[    0.983282] initcall xenbus_backend_init+0x0/0x60 returned -19 after 0 usecs
[    0.983916] calling  hyper_sysfs_init+0x0/0x250 @ 1
[    0.984438] initcall hyper_sysfs_init+0x0/0x250 returned -19 after 0 usecs
[    0.985187] calling  hypervisor_subsys_init+0x0/0x40 @ 1
[    0.985797] initcall hypervisor_subsys_init+0x0/0x40 returned -19 after 0 usecs
[    0.986477] calling  platform_driver_init+0x0/0x30 @ 1
[    0.987098] initcall platform_driver_init+0x0/0x30 returned 0 after 21 usecs
[    0.987957] calling  xen_late_init_mcelog+0x0/0x90 @ 1
[    0.988566] initcall xen_late_init_mcelog+0x0/0x90 returned -19 after 0 usecs
[    0.989406] calling  xen_acpi_processor_init+0x0/0x200 @ 1
[    0.990078] initcall xen_acpi_processor_init+0x0/0x200 returned -19 after 0 usecs
[    0.991143] calling  n_null_init+0x0/0x30 @ 1
[    0.991597] initcall n_null_init+0x0/0x30 returned 0 after 0 usecs
[    0.992203] calling  pty_init+0x0/0x400 @ 1
[    0.992698] initcall pty_init+0x0/0x400 returned 0 after 69 usecs
[    0.993266] calling  sysrq_init+0x0/0x90 @ 1
[    0.993712] initcall sysrq_init+0x0/0x90 returned 0 after 4 usecs
[    0.994314] calling  xen_hvc_init+0x0/0x200 @ 1
[    0.995315] initcall xen_hvc_init+0x0/0x200 returned -19 after 0 usecs
[    0.995958] calling  serial8250_init+0x0/0x130 @ 1
[    0.996468] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.997206] probe of 00:00:0 returned 0 after 4 usecs
[    0.997837] probe of 00:00:0.0 returned 0 after 3 usecs
[    0.998696] 00:00: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.999740] probe of 00:00 returned 0 after 2565 usecs
[    1.000416] probe of serial8250:0 returned 0 after 4 usecs
[    1.001121] probe of serial8250:0.1 returned 0 after 4 usecs
[    1.001941] probe of serial8250:0.2 returned 0 after 3 usecs
[    1.002697] probe of serial8250:0.3 returned 0 after 3 usecs
[    1.003400] probe of serial8250:0.4 returned 0 after 3 usecs
[    1.004086] probe of serial8250:0.5 returned 0 after 3 usecs
[    1.004754] probe of serial8250:0.6 returned 0 after 3 usecs
[    1.005458] probe of serial8250:0.7 returned 0 after 4 usecs
[    1.006263] probe of serial8250:0.8 returned 0 after 3 usecs
[    1.006999] probe of serial8250:0.9 returned 0 after 4 usecs
[    1.007680] probe of serial8250:0.10 returned 0 after 4 usecs
[    1.008395] probe of serial8250:0.11 returned 0 after 3 usecs
[    1.009124] probe of serial8250:0.12 returned 0 after 3 usecs
[    1.009947] probe of serial8250:0.13 returned 0 after 3 usecs
[    1.010825] probe of serial8250:0.14 returned 0 after 3 usecs
[    1.011631] probe of serial8250:0.15 returned 0 after 4 usecs
[    1.012405] probe of serial8250:0.16 returned 0 after 3 usecs
[    1.013334] probe of serial8250:0.17 returned 0 after 3 usecs
[    1.014139] probe of serial8250:0.18 returned 0 after 3 usecs
[    1.014953] probe of serial8250:0.19 returned 0 after 4 usecs
[    1.015760] probe of serial8250:0.20 returned 0 after 4 usecs
[    1.016599] probe of serial8250:0.21 returned 0 after 3 usecs
[    1.017370] probe of serial8250:0.22 returned 0 after 3 usecs
[    1.018131] probe of serial8250:0.23 returned 0 after 4 usecs
[    1.018857] probe of serial8250:0.24 returned 0 after 5 usecs
[    1.019689] probe of serial8250:0.25 returned 0 after 4 usecs
[    1.020414] probe of serial8250:0.26 returned 0 after 3 usecs
[    1.021115] probe of serial8250:0.27 returned 0 after 3 usecs
[    1.021826] probe of serial8250:0.28 returned 0 after 3 usecs
[    1.022547] probe of serial8250:0.29 returned 0 after 3 usecs
[    1.023239] probe of serial8250:0.30 returned 0 after 3 usecs
[    1.023959] probe of serial8250:0.31 returned 0 after 4 usecs
[    1.024723] probe of serial8250 returned 0 after 6 usecs
[    1.025410] initcall serial8250_init+0x0/0x130 returned 0 after 28943 usecs
[    1.026964] calling  serial_pci_driver_init+0x0/0x30 @ 1
[    1.027601] initcall serial_pci_driver_init+0x0/0x30 returned 0 after 41 usecs
[    1.028390] calling  pericom8250_pci_driver_init+0x0/0x30 @ 1
[    1.029250] initcall pericom8250_pci_driver_init+0x0/0x30 returned 0 after 27 usecs
[    1.030067] calling  max310x_uart_init+0x0/0x80 @ 1
[    1.030647] initcall max310x_uart_init+0x0/0x80 returned 0 after 33 usecs
[    1.031380] calling  sccnxp_uart_driver_init+0x0/0x30 @ 1
[    1.032053] initcall sccnxp_uart_driver_init+0x0/0x30 returned 0 after 14 usecs
[    1.032866] calling  init_kgdboc+0x0/0x90 @ 1
[    1.033406] probe of kgdboc returned 0 after 9 usecs
[    1.034055] initcall init_kgdboc+0x0/0x90 returned 0 after 704 usecs
[    1.034936] calling  random_sysctls_init+0x0/0x40 @ 1
[    1.035610] initcall random_sysctls_init+0x0/0x40 returned 0 after 7 usecs
[    1.036382] calling  ttyprintk_init+0x0/0x140 @ 1
[    1.037118] initcall ttyprintk_init+0x0/0x140 returned 0 after 197 usecs
[    1.037890] calling  virtio_console_init+0x0/0xf0 @ 1
[    1.079545] probe of virtio2 returned 0 after 40961 usecs
[    1.080423] initcall virtio_console_init+0x0/0xf0 returned 0 after 41881 usecs
[    1.081598] calling  hpet_init+0x0/0xa0 @ 1
[    1.082363] initcall hpet_init+0x0/0xa0 returned 0 after 90 usecs
[    1.083375] calling  agp_init+0x0/0x40 @ 1
[    1.083902] Linux agpgart interface v0.103
[    1.084413] initcall agp_init+0x0/0x40 returned 0 after 510 usecs
[    1.085130] calling  agp_amd64_mod_init+0x0/0x40 @ 1
[    1.085762] initcall agp_amd64_mod_init+0x0/0x40 returned -19 after 37 usecs
[    1.086576] calling  agp_intel_init+0x0/0x40 @ 1
[    1.087205] probe of 0000:00:00.0 returned 19 after 41 usecs
[    1.087867] initcall agp_intel_init+0x0/0x40 returned 0 after 705 usecs
[    1.088635] calling  agp_via_init+0x0/0x40 @ 1
[    1.089187] initcall agp_via_init+0x0/0x40 returned 0 after 8 usecs
[    1.089909] calling  init_tis+0x0/0xf0 @ 1
[    1.090443] initcall init_tis+0x0/0xf0 returned 0 after 21 usecs
[    1.091155] calling  crb_acpi_driver_init+0x0/0x30 @ 1
[    1.091802] initcall crb_acpi_driver_init+0x0/0x30 returned 0 after 21 usecs
[    1.092594] calling  cn_proc_init+0x0/0x60 @ 1
[    1.093125] initcall cn_proc_init+0x0/0x60 returned 0 after 1 usecs
[    1.093839] calling  topology_sysfs_init+0x0/0x40 @ 1
[    1.094481] initcall topology_sysfs_init+0x0/0x40 returned 0 after 30 usecs
[    1.095294] calling  cacheinfo_sysfs_init+0x0/0x40 @ 1
[    1.096088] initcall cacheinfo_sysfs_init+0x0/0x40 returned 0 after 179 usecs
[    1.096911] calling  devcoredump_init+0x0/0x20 @ 1
[    1.097489] initcall devcoredump_init+0x0/0x20 returned 0 after 4 usecs
[    1.098257] calling  loop_init+0x0/0x100 @ 1
[    1.100038] loop: module loaded
[    1.100459] initcall loop_init+0x0/0x100 returned 0 after 1672 usecs
[    1.101209] calling  xlblk_init+0x0/0x190 @ 1
[    1.101751] initcall xlblk_init+0x0/0x190 returned -19 after 0 usecs
[    1.102493] calling  tps65912_i2c_driver_init+0x0/0x30 @ 1
[    1.103172] initcall tps65912_i2c_driver_init+0x0/0x30 returned 0 after 10 usecs
[    1.104036] calling  tps65912_spi_driver_init+0x0/0x30 @ 1
[    1.104702] initcall tps65912_spi_driver_init+0x0/0x30 returned 0 after 4 usecs
[    1.105570] calling  twl_driver_init+0x0/0x30 @ 1
[    1.106154] initcall twl_driver_init+0x0/0x30 returned 0 after 4 usecs
[    1.106940] calling  twl4030_audio_driver_init+0x0/0x30 @ 1
[    1.107618] initcall twl4030_audio_driver_init+0x0/0x30 returned 0 after 7 usecs
[    1.108484] calling  twl6040_driver_init+0x0/0x30 @ 1
[    1.109496] initcall twl6040_driver_init+0x0/0x30 returned 0 after 4 usecs
[    1.110284] calling  da9063_i2c_driver_init+0x0/0x30 @ 1
[    1.110916] initcall da9063_i2c_driver_init+0x0/0x30 returned 0 after 4 usecs
[    1.111758] calling  max14577_i2c_init+0x0/0x30 @ 1
[    1.112368] initcall max14577_i2c_init+0x0/0x30 returned 0 after 6 usecs
[    1.113127] calling  max77693_i2c_driver_init+0x0/0x30 @ 1
[    1.113768] initcall max77693_i2c_driver_init+0x0/0x30 returned 0 after 3 usecs
[    1.114594] calling  adp5520_driver_init+0x0/0x30 @ 1
[    1.115222] initcall adp5520_driver_init+0x0/0x30 returned 0 after 4 usecs
[    1.116028] calling  crystal_cove_i2c_driver_init+0x0/0x30 @ 1
[    1.116700] initcall crystal_cove_i2c_driver_init+0x0/0x30 returned 0 after 3 usecs
[    1.117562] calling  cht_wc_driver_init+0x0/0x30 @ 1
[    1.118169] initcall cht_wc_driver_init+0x0/0x30 returned 0 after 3 usecs
[    1.118942] calling  e820_pmem_driver_init+0x0/0x30 @ 1
[    1.119557] initcall e820_pmem_driver_init+0x0/0x30 returned 0 after 6 usecs
[    1.120356] calling  hmem_init+0x0/0x40 @ 1
[    1.120881] initcall hmem_init+0x0/0x40 returned 0 after 4 usecs
[    1.121576] calling  udmabuf_dev_init+0x0/0xc0 @ 1
[    1.122004] initcall udmabuf_dev_init+0x0/0xc0 returned 0 after 53 usecs
[    1.122507] calling  init_sd+0x0/0x140 @ 1
[    1.122859] initcall init_sd+0x0/0x140 returned 0 after 9 usecs
[    1.123302] calling  init_sr+0x0/0x60 @ 1
[    1.123620] initcall init_sr+0x0/0x60 returned 0 after 1 usecs
[    1.124055] calling  init_sg+0x0/0x200 @ 1
[    1.124384] initcall init_sg+0x0/0x200 returned 0 after 8 usecs
[    1.124826] calling  piix_init+0x0/0x40 @ 1
[    1.125170] ata_piix 0000:00:01.1: version 2.13
[    1.126137] scsi host0: ata_piix
[    1.126498] scsi host1: ata_piix
[    1.126793] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc5a0 irq 14 lpm-pol 0
[    1.127371] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc5a8 irq 15 lpm-pol 0
[    1.127960] probe of 0000:00:01.1 returned 0 after 2797 usecs
[    1.128413] initcall piix_init+0x0/0x40 returned 0 after 3257 usecs
[    1.128887] calling  sis_pci_driver_init+0x0/0x30 @ 1
[    1.129285] initcall sis_pci_driver_init+0x0/0x30 returned 0 after 7 usecs
[    1.129813] calling  ata_generic_pci_driver_init+0x0/0x30 @ 1
[    1.130263] initcall ata_generic_pci_driver_init+0x0/0x30 returned 0 after 5 usecs
[    1.130838] calling  blackhole_netdev_init+0x0/0x80 @ 1
[    1.131270] initcall blackhole_netdev_init+0x0/0x80 returned 0 after 21 usecs
[    1.131871] calling  fixed_mdio_bus_init+0x0/0xe0 @ 1
[    1.132292] probe of Fixed MDIO bus returned 0 after 3 usecs
[    1.132827] initcall fixed_mdio_bus_init+0x0/0xe0 returned 0 after 566 usecs
[    1.133348] calling  tun_init+0x0/0xd0 @ 1
[    1.133683] tun: Universal TUN/TAP device driver, 1.6
[    1.134136] initcall tun_init+0x0/0xd0 returned 0 after 453 usecs
[    1.134610] calling  ppp_init+0x0/0x120 @ 1
[    1.134947] PPP generic driver version 2.4.2
[    1.135338] initcall ppp_init+0x0/0x120 returned 0 after 390 usecs
[    1.135801] calling  netif_init+0x0/0x80 @ 1
[    1.136198] initcall netif_init+0x0/0x80 returned -19 after 0 usecs
[    1.136677] calling  vfio_init+0x0/0xa0 @ 1
[    1.137073] VFIO - User Level meta-driver version: 0.3
[    1.137469] initcall vfio_init+0x0/0xa0 returned 0 after 457 usecs
[    1.137941] calling  vfio_iommu_type1_init+0x0/0x20 @ 1
[    1.138336] initcall vfio_iommu_type1_init+0x0/0x20 returned 0 after 0 usecs
[    1.139292] calling  vfio_pci_core_init+0x0/0x20 @ 1
[    1.139681] initcall vfio_pci_core_init+0x0/0x20 returned 0 after 1 usecs
[    1.140185] calling  vfio_pci_init+0x0/0x1c0 @ 1
[    1.140561] initcall vfio_pci_init+0x0/0x1c0 returned 0 after 15 usecs
[    1.141046] calling  cdrom_init+0x0/0x20 @ 1
[    1.141385] initcall cdrom_init+0x0/0x20 returned 0 after 3 usecs
[    1.141849] calling  dwc2_platform_driver_init+0x0/0x30 @ 1
[    1.142282] initcall dwc2_platform_driver_init+0x0/0x30 returned 0 after 7 usecs
[    1.142834] calling  ehci_hcd_init+0x0/0x100 @ 1
[    1.143200] initcall ehci_hcd_init+0x0/0x100 returned 0 after 4 usecs
[    1.143677] calling  ehci_pci_init+0x0/0x70 @ 1
[    1.144039] initcall ehci_pci_init+0x0/0x70 returned 0 after 8 usecs
[    1.144515] calling  ehci_platform_init+0x0/0x50 @ 1
[    1.144925] initcall ehci_platform_init+0x0/0x50 returned 0 after 3 usecs
[    1.145439] calling  ohci_hcd_mod_init+0x0/0x80 @ 1
[    1.145825] initcall ohci_hcd_mod_init+0x0/0x80 returned 0 after 1 usecs
[    1.146331] calling  ohci_pci_init+0x0/0x70 @ 1
[    1.146701] initcall ohci_pci_init+0x0/0x70 returned 0 after 7 usecs
[    1.147184] calling  ohci_platform_init+0x0/0x50 @ 1
[    1.147575] initcall ohci_platform_init+0x0/0x50 returned 0 after 2 usecs
[    1.148091] calling  uhci_hcd_init+0x0/0x140 @ 1
[    1.148465] initcall uhci_hcd_init+0x0/0x140 returned 0 after 10 usecs
[    1.148958] calling  xhci_hcd_init+0x0/0x40 @ 1
[    1.149318] initcall xhci_hcd_init+0x0/0x40 returned 0 after 3 usecs
[    1.149804] calling  xhci_pci_init+0x0/0x80 @ 1
[    1.161428] xhci_hcd 0000:00:04.0: xHCI Host Controller
[    1.161861] xhci_hcd 0000:00:04.0: new USB bus registered, assigned bus number 1
[    1.162571] xhci_hcd 0000:00:04.0: hcc params 0x00087001 hci version 0x100 quirks 0x0000000000000010
[    1.163596] xhci_hcd 0000:00:04.0: xHCI Host Controller
[    1.163999] xhci_hcd 0000:00:04.0: new USB bus registered, assigned bus number 2
[    1.164544] xhci_hcd 0000:00:04.0: Host supports USB 3.0 SuperSpeed
[    1.165063] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.15
[    1.165749] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.166349] usb usb1: Product: xHCI Host Controller
[    1.166741] usb usb1: Manufacturer: Linux 6.15.0-rc5+ xhci-hcd
[    1.167182] usb usb1: SerialNumber: 0000:00:04.0
[    1.167638] hub 1-0:1.0: USB hub found
[    1.167985] hub 1-0:1.0: 15 ports detected
[    1.169011] probe of 1-0:1.0 returned 0 after 1375 usecs
[    1.169442] probe of usb1 returned 0 after 1828 usecs
[    1.169862] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.170471] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.15
[    1.171089] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.171631] usb usb2: Product: xHCI Host Controller
[    1.172015] usb usb2: Manufacturer: Linux 6.15.0-rc5+ xhci-hcd
[    1.172462] usb usb2: SerialNumber: 0000:00:04.0
[    1.172906] hub 2-0:1.0: USB hub found
[    1.173250] hub 2-0:1.0: 15 ports detected
[    1.173892] probe of 2-0:1.0 returned 0 after 988 usecs
[    1.174311] probe of usb2 returned 0 after 1418 usecs
[    1.174722] probe of 0000:00:04.0 returned 0 after 24558 usecs
[    1.175184] initcall xhci_pci_init+0x0/0x80 returned 0 after 25023 usecs
[    1.175698] calling  kgdbdbgp_start_thread+0x0/0x70 @ 1
[    1.176107] initcall kgdbdbgp_start_thread+0x0/0x70 returned 0 after 0 usecs
[    1.176643] calling  i8042_init+0x0/0x750 @ 1
[    1.177007] probe of 00:01 returned 0 after 6 usecs
[    1.177400] probe of 00:02 returned 0 after 3 usecs
[    1.177804] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[    1.178955] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.179360] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.179800] probe of i8042 returned 0 after 1376 usecs
[    1.180198] initcall i8042_init+0x0/0x750 returned 0 after 3209 usecs
[    1.180676] calling  mousedev_init+0x0/0xa0 @ 1
[    1.181081] mousedev: PS/2 mouse device common for all mice
[    1.181504] initcall mousedev_init+0x0/0xa0 returned 0 after 476 usecs
[    1.181993] calling  evdev_init+0x0/0x20 @ 1
[    1.182359] initcall evdev_init+0x0/0x20 returned 0 after 23 usecs
[    1.182837] calling  atkbd_init+0x0/0x40 @ 1
[    1.183187] initcall atkbd_init+0x0/0x40 returned 0 after 8 usecs
[    1.183652] calling  elants_i2c_driver_init+0x0/0x30 @ 1
[    1.184085] initcall elants_i2c_driver_init+0x0/0x30 returned 0 after 20 usecs
[    1.184635] calling  uinput_misc_init+0x0/0x20 @ 1
[    1.185044] initcall uinput_misc_init+0x0/0x20 returned 0 after 40 usecs
[    1.185589] calling  cmos_init+0x0/0x90 @ 1
[    1.185937] rtc_cmos 00:04: RTC can wake from S4
[    1.186564] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    1.187300] probe of alarmtimer.0.auto returned 0 after 2 usecs
[    1.187760] rtc_cmos 00:04: registered as rtc0
[    1.188150] rtc_cmos 00:04: setting system clock to 2025-06-23T08:08:55 UTC (1750666135)
[    1.188780] rtc_cmos 00:04: alarms up to one day, y3k, 242 bytes nvram
[    1.189269] probe of 00:04 returned 0 after 3336 usecs
[    1.189708] initcall cmos_init+0x0/0x90 returned 0 after 3787 usecs
[    1.190176] calling  i2c_dev_init+0x0/0xc0 @ 1
[    1.190523] i2c_dev: i2c /dev entries driver
[    1.190863] probe of serio0 returned 0 after 6793 usecs
[    1.191394] initcall i2c_dev_init+0x0/0xc0 returned 0 after 871 usecs
[    1.191997] calling  restart_poweroff_driver_init+0x0/0x30 @ 1
[    1.192603] probe of serio1 returned 19 after 1251 usecs
[    1.193091] initcall restart_poweroff_driver_init+0x0/0x30 returned 0 after 563 usecs
[    1.193783] calling  thermal_throttle_init_device+0x0/0x60 @ 1
[    1.194324] initcall thermal_throttle_init_device+0x0/0x60 returned 0 after 0 usecs
[    1.195003] calling  watchdog_gov_noop_register+0x0/0x20 @ 1
[    1.195436] initcall watchdog_gov_noop_register+0x0/0x20 returned 0 after 0 usecs
[    1.195990] calling  dm_init+0x0/0x90 @ 1
[    1.196313] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    1.197203] device-mapper: uevent: version 1.0.3
[    1.197625] device-mapper: ioctl: 4.49.0-ioctl (2025-01-17) initialised: dm-devel@lists.linux.dev
[    1.198299] initcall dm_init+0x0/0x90 returned 0 after 1985 usecs
[    1.199186] calling  ghes_edac_init+0x0/0x470 @ 1
[    1.199557] initcall ghes_edac_init+0x0/0x470 returned -19 after 1 usecs
[    1.200059] calling  amd_pstate_init+0x0/0x330 @ 1
[    1.200430] initcall amd_pstate_init+0x0/0x330 returned -19 after 0 usecs
[    1.200931] calling  intel_pstate_init+0x0/0x8e0 @ 1
[    1.201314] intel_pstate: CPU model not supported
[    1.201686] initcall intel_pstate_init+0x0/0x8e0 returned -19 after 373 usecs
[    1.202211] calling  sysfb_init+0x0/0x110 @ 1
[    1.202587] vesafb: mode is 640x480x32, linelength=2560, pages=0
[    1.203038] vesafb: scrolling: redraw
[    1.203399] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.203921] vesafb: framebuffer at 0xf4000000, mapped to 0x000000003ac1c200, using 1216k, total 1216k
[    1.205240] Console: switching to colour frame buffer device 80x30
[    1.205904] fb0: VESA VGA frame buffer device
[    1.206322] probe of vesa-framebuffer.0 returned 0 after 3738 usecs
[    1.206871] initcall sysfb_init+0x0/0x110 returned 0 after 4312 usecs
[    1.207351] calling  esrt_sysfs_init+0x0/0x330 @ 1
[    1.207724] initcall esrt_sysfs_init+0x0/0x330 returned -38 after 0 usecs
[    1.208226] calling  pmc_atom_init+0x0/0x2b0 @ 1
[    1.208590] initcall pmc_atom_init+0x0/0x2b0 returned -19 after 4 usecs
[    1.209082] calling  rproc_virtio_driver_init+0x0/0x30 @ 1
[    1.209510] initcall rproc_virtio_driver_init+0x0/0x30 returned 0 after 8 usecs
[    1.210054] calling  vmgenid_plaform_driver_init+0x0/0x30 @ 1
[    1.210491] initcall vmgenid_plaform_driver_init+0x0/0x30 returned 0 after 3 usecs
[    1.211154] calling  extcon_class_init+0x0/0x60 @ 1
[    1.211545] initcall extcon_class_init+0x0/0x60 returned 0 after 3 usecs
[    1.212069] calling  binder_init+0x0/0x280 @ 1
[    1.212508] initcall binder_init+0x0/0x280 returned 0 after 87 usecs
[    1.213160] calling  sock_diag_init+0x0/0x40 @ 1
[    1.213674] initcall sock_diag_init+0x0/0x40 returned 0 after 10 usecs
[    1.214367] calling  init_net_drop_monitor+0x0/0x120 @ 1
[    1.214967] drop_monitor: Initializing network drop monitor service
[    1.215666] initcall init_net_drop_monitor+0x0/0x120 returned 0 after 699 usecs
[    1.216221] calling  blackhole_init+0x0/0x20 @ 1
[    1.216620] initcall blackhole_init+0x0/0x20 returned 0 after 0 usecs
[    1.217105] calling  gre_offload_init+0x0/0x70 @ 1
[    1.217475] initcall gre_offload_init+0x0/0x70 returned 0 after 0 usecs
[    1.217971] calling  sysctl_ipv4_init+0x0/0x80 @ 1
[    1.218380] initcall sysctl_ipv4_init+0x0/0x80 returned 0 after 36 usecs
[    1.218891] calling  cubictcp_register+0x0/0x90 @ 1
[    1.219271] initcall cubictcp_register+0x0/0x90 returned 0 after 2 usecs
[    1.219769] calling  inet6_init+0x0/0x3f0 @ 1
[    1.220139] NET: Registered PF_INET6 protocol family
[    1.224030] Segment Routing with IPv6
[    1.224485] In-situ OAM (IOAM) with IPv6
[    1.224996] initcall inet6_init+0x0/0x3f0 returned 0 after 4880 usecs
[    1.225752] calling  packet_init+0x0/0xa0 @ 1
[    1.226292] NET: Registered PF_PACKET protocol family
[    1.226938] initcall packet_init+0x0/0xa0 returned 0 after 648 usecs
[    1.227696] calling  strp_dev_init+0x0/0x40 @ 1
[    1.228683] initcall strp_dev_init+0x0/0x40 returned 0 after 427 usecs
[    1.229781] calling  dcbnl_init+0x0/0x40 @ 1
[    1.230127] initcall dcbnl_init+0x0/0x40 returned 0 after 2 usecs
[    1.230602] calling  init_dns_resolver+0x0/0x100 @ 1
[    1.231003] Key type dns_resolver registered
[    1.231346] initcall init_dns_resolver+0x0/0x100 returned 0 after 350 usecs
[    1.231882] calling  handshake_init+0x0/0xb0 @ 1
[    1.232259] initcall handshake_init+0x0/0xb0 returned 0 after 9 usecs
[    1.232752] calling  pm_check_save_msr+0x0/0xd0 @ 1
[    1.233145] initcall pm_check_save_msr+0x0/0xd0 returned 0 after 6 usecs
[    1.233654] calling  mcheck_init_device+0x0/0x160 @ 1
[    1.234278] initcall mcheck_init_device+0x0/0x160 returned 0 after 228 usecs
[    1.234836] calling  dev_mcelog_init_device+0x0/0x100 @ 1
[    1.235317] initcall dev_mcelog_init_device+0x0/0x100 returned 0 after 63 usecs
[    1.235900] calling  kernel_do_mounts_initrd_sysctls_init+0x0/0x40 @ 1
[    1.236403] initcall kernel_do_mounts_initrd_sysctls_init+0x0/0x40 returned 0 after 3 usecs
[    1.237021] calling  tboot_late_init+0x0/0x330 @ 1
[    1.237397] initcall tboot_late_init+0x0/0x330 returned 0 after 0 usecs
[    1.237896] calling  intel_epb_init+0x0/0xa0 @ 1
[    1.238258] initcall intel_epb_init+0x0/0xa0 returned -19 after 0 usecs
[    1.238784] calling  mcheck_late_init+0x0/0x90 @ 1
[    1.239161] initcall mcheck_late_init+0x0/0x90 returned 0 after 4 usecs
[    1.239690] calling  severities_debugfs_init+0x0/0x40 @ 1
[    1.240110] initcall severities_debugfs_init+0x0/0x40 returned 0 after 1 usecs
[    1.240649] calling  microcode_init+0x0/0x1f0 @ 1
[    1.241017] initcall microcode_init+0x0/0x1f0 returned -22 after 0 usecs
[    1.241516] calling  resctrl_arch_late_init+0x0/0x5c0 @ 1
[    1.241947] initcall resctrl_arch_late_init+0x0/0x5c0 returned -19 after 0 usecs
[    1.242490] calling  cpu_init_debugfs+0x0/0xf0 @ 1
[    1.242876] initcall cpu_init_debugfs+0x0/0xf0 returned 0 after 6 usecs
[    1.243371] calling  sld_mitigate_sysctl_init+0x0/0x40 @ 1
[    1.243798] initcall sld_mitigate_sysctl_init+0x0/0x40 returned 0 after 1 usecs
[    1.244359] calling  hpet_insert_resource+0x0/0x40 @ 1
[    1.244761] initcall hpet_insert_resource+0x0/0x40 returned 1 after 0 usecs
[    1.245323] calling  start_sync_check_timer+0x0/0x70 @ 1
[    1.245743] initcall start_sync_check_timer+0x0/0x70 returned 0 after 0 usecs
[    1.246271] calling  update_mp_table+0x0/0x610 @ 1
[    1.246652] initcall update_mp_table+0x0/0x610 returned 0 after 0 usecs
[    1.247147] calling  lapic_insert_resource+0x0/0x60 @ 1
[    1.247550] initcall lapic_insert_resource+0x0/0x60 returned 0 after 0 usecs
[    1.248074] calling  print_ipi_mode+0x0/0x40 @ 1
[    1.248444] IPI shorthand broadcast: enabled
[    1.248786] initcall print_ipi_mode+0x0/0x40 returned 0 after 342 usecs
[    1.249286] calling  print_ICs+0x0/0x1e0 @ 1
[    1.249630] initcall print_ICs+0x0/0x1e0 returned 0 after 0 usecs
[    1.250091] calling  setup_efi_kvm_sev_migration+0x0/0x1c0 @ 1
[    1.250534] initcall setup_efi_kvm_sev_migration+0x0/0x1c0 returned 0 after 0 usecs
[    1.251102] calling  create_tlb_single_page_flush_ceiling+0x0/0x40 @ 1
[    1.251593] initcall create_tlb_single_page_flush_ceiling+0x0/0x40 returned 0 after 1 usecs
[    1.252203] calling  pat_memtype_list_init+0x0/0x50 @ 1
[    1.252607] initcall pat_memtype_list_init+0x0/0x50 returned 0 after 0 usecs
[    1.253142] calling  create_init_pkru_value+0x0/0x50 @ 1
[    1.253555] initcall create_init_pkru_value+0x0/0x50 returned 0 after 1 usecs
[    1.254086] calling  kernel_panic_sysctls_init+0x0/0x40 @ 1
[    1.254516] initcall kernel_panic_sysctls_init+0x0/0x40 returned 0 after 3 usecs
[    1.255065] calling  kernel_panic_sysfs_init+0x0/0x30 @ 1
[    1.255483] initcall kernel_panic_sysfs_init+0x0/0x30 returned 0 after 2 usecs
[    1.256013] calling  kernel_exit_sysctls_init+0x0/0x40 @ 1
[    1.256427] initcall kernel_exit_sysctls_init+0x0/0x40 returned 0 after 0 usecs
[    1.256961] calling  kernel_exit_sysfs_init+0x0/0x30 @ 1
[    1.257366] initcall kernel_exit_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[    1.257924] calling  param_sysfs_builtin_init+0x0/0x200 @ 1
[    1.259426] initcall param_sysfs_builtin_init+0x0/0x200 returned 0 after 1075 usecs
[    1.260008] calling  reboot_ksysfs_init+0x0/0x90 @ 1
[    1.260409] initcall reboot_ksysfs_init+0x0/0x90 returned 0 after 6 usecs
[    1.260937] calling  sched_core_sysctl_init+0x0/0x40 @ 1
[    1.261362] initcall sched_core_sysctl_init+0x0/0x40 returned 0 after 3 usecs
[    1.261920] calling  sched_fair_sysctl_init+0x0/0x40 @ 1
[    1.262331] initcall sched_fair_sysctl_init+0x0/0x40 returned 0 after 1 usecs
[    1.262870] calling  sched_rt_sysctl_init+0x0/0x40 @ 1
[    1.263274] initcall sched_rt_sysctl_init+0x0/0x40 returned 0 after 1 usecs
[    1.263793] calling  sched_dl_sysctl_init+0x0/0x40 @ 1
[    1.264185] initcall sched_dl_sysctl_init+0x0/0x40 returned 0 after 1 usecs
[    1.264699] calling  sched_clock_init_late+0x0/0xb0 @ 1
[    1.265108] sched_clock: Marking stable (1184316051, 78550573)->(1380874116, -118007492)
[    1.265773] initcall sched_clock_init_late+0x0/0xb0 returned 0 after 666 usecs
[    1.266324] calling  sched_init_debug+0x0/0x330 @ 1
[    1.266739] initcall sched_init_debug+0x0/0x330 returned 0 after 25 usecs
[    1.267247] calling  cpu_latency_qos_init+0x0/0x60 @ 1
[    1.267699] initcall cpu_latency_qos_init+0x0/0x60 returned 0 after 55 usecs
[    1.268224] calling  pm_debugfs_init+0x0/0x40 @ 1
[    1.268590] initcall pm_debugfs_init+0x0/0x40 returned 0 after 0 usecs
[    1.269076] calling  printk_late_init+0x0/0x180 @ 1
[    1.269470] initcall printk_late_init+0x0/0x180 returned 0 after 5 usecs
[    1.269989] calling  init_srcu_module_notifier+0x0/0x50 @ 1
[    1.270416] initcall init_srcu_module_notifier+0x0/0x50 returned 0 after 1 usecs
[    1.270968] calling  swiotlb_create_default_debugfs+0x0/0xb0 @ 1
[    1.271430] initcall swiotlb_create_default_debugfs+0x0/0xb0 returned 0 after 6 usecs
[    1.272046] calling  tk_debug_sleep_time_init+0x0/0x40 @ 1
[    1.272463] initcall tk_debug_sleep_time_init+0x0/0x40 returned 0 after 0 usecs
[    1.273052] calling  bpf_ksym_iter_register+0x0/0x30 @ 1
[    1.273465] initcall bpf_ksym_iter_register+0x0/0x30 returned 0 after 0 usecs
[    1.274019] calling  kernel_acct_sysctls_init+0x0/0x40 @ 1
[    1.274440] initcall kernel_acct_sysctls_init+0x0/0x40 returned 0 after 1 usecs
[    1.275012] calling  kexec_core_sysctl_init+0x0/0x40 @ 1
[    1.275446] initcall kexec_core_sysctl_init+0x0/0x40 returned 0 after 19 usecs
[    1.275994] calling  bpf_rstat_kfunc_init+0x0/0x30 @ 1
[    1.276398] initcall bpf_rstat_kfunc_init+0x0/0x30 returned 0 after 0 usecs
[    1.276922] calling  debugfs_kprobe_init+0x0/0x90 @ 1
[    1.277345] initcall debugfs_kprobe_init+0x0/0x90 returned 0 after 4 usecs
[    1.277884] calling  kernel_delayacct_sysctls_init+0x0/0x40 @ 1
[    1.278343] initcall kernel_delayacct_sysctls_init+0x0/0x40 returned 0 after 1 usecs
[    1.278927] calling  taskstats_init+0x0/0x50 @ 1
[    1.279406] registered taskstats version 1
[    1.279735] initcall taskstats_init+0x0/0x50 returned 0 after 443 usecs
[    1.280236] calling  ftrace_sysctl_init+0x0/0x30 @ 1
[    1.280620] initcall ftrace_sysctl_init+0x0/0x30 returned 0 after 1 usecs
[    1.281122] calling  init_hwlat_tracer+0x0/0x130 @ 1
[    1.281607] initcall init_hwlat_tracer+0x0/0x130 returned 0 after 97 usecs
[    1.282126] calling  bpf_key_sig_kfuncs_init+0x0/0x20 @ 1
[    1.282540] initcall bpf_key_sig_kfuncs_init+0x0/0x20 returned 0 after 0 usecs
[    1.283080] calling  bpf_kprobe_multi_kfuncs_init+0x0/0x20 @ 1
[    1.283522] initcall bpf_kprobe_multi_kfuncs_init+0x0/0x20 returned 0 after 0 usecs
[    1.284084] calling  kdb_ftrace_register+0x0/0x20 @ 1
[    1.284474] initcall kdb_ftrace_register+0x0/0x20 returned 0 after 2 usecs
[    1.284982] calling  bpf_global_ma_init+0x0/0x30 @ 1
[    1.285388] initcall bpf_global_ma_init+0x0/0x30 returned 0 after 25 usecs
[    1.285905] calling  bpf_syscall_sysctl_init+0x0/0x40 @ 1
[    1.286336] initcall bpf_syscall_sysctl_init+0x0/0x40 returned 0 after 2 usecs
[    1.286969] calling  unbound_reg_init+0x0/0x30 @ 1
[    1.287549] initcall unbound_reg_init+0x0/0x30 returned 0 after 0 usecs
[    1.287614] ata1.00: ATA-7: QEMU HARDDISK, 2.5+, max UDMA/100
[    1.288053] calling  kfunc_init+0x0/0x100 @ 1
[    1.288055] initcall kfunc_init+0x0/0x100 returned 0 after 0 usecs
[    1.289082] ata1.00: 83886080 sectors, multi 16: LBA48 
[    1.289425] calling  bpf_map_iter_init+0x0/0x50 @ 1
[    1.290000] ata1.01: ATA-7: QEMU HARDDISK, 2.5+, max UDMA/100
[    1.290400] initcall bpf_map_iter_init+0x0/0x50 returned 0 after 1 usecs
[    1.290858] ata1.01: 104857600 sectors, multi 16: LBA48 
[    1.291296] calling  init_subsystem+0x0/0x30 @ 1
[    1.292856] initcall init_subsystem+0x0/0x30 returned 0 after 0 usecs
[    1.293162] scsi 0:0:0:0: Direct-Access     ATA      QEMU HARDDISK    2.5+ PQ: 0 ANSI: 5
[    1.293410] calling  task_iter_init+0x0/0xe0 @ 1
[    1.294494] probe of 0:0:0:0 returned 19 after 8 usecs
[    1.294835] initcall task_iter_init+0x0/0xe0 returned 0 after 0 usecs
[    1.294841] calling  bpf_prog_iter_init+0x0/0x30 @ 1
[    1.295608] sd 0:0:0:0: [sda] 83886080 512-byte logical blocks: (42.9 GB/40.0 GiB)
[    1.295973] initcall bpf_prog_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.296597] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.297149] calling  bpf_link_iter_init+0x0/0x30 @ 1
[    1.297992] sd 0:0:0:0: [sda] Write Protect is off
[    1.298382] initcall bpf_link_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.299021] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.299395] calling  init_trampolines+0x0/0x30 @ 1
[    1.300224] scsi 0:0:1:0: Direct-Access     ATA      QEMU HARDDISK    2.5+ PQ: 0 ANSI: 5
[    1.300577] initcall init_trampolines+0x0/0x30 returned 0 after 0 usecs
[    1.301765] probe of 0:0:1:0 returned 19 after 4 usecs
[    1.301836] calling  rqspinlock_register_kfuncs+0x0/0x30 @ 1
[    1.302645] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.303102] initcall rqspinlock_register_kfuncs+0x0/0x30 returned 0 after 0 usecs
[    1.303859] sd 0:0:1:0: Attached scsi generic sg1 type 0
[    1.304452] calling  kfunc_init+0x0/0x30 @ 1
[    1.305369] sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[    1.305755] initcall kfunc_init+0x0/0x30 returned 0 after 0 usecs
[    1.306323] sd 0:0:1:0: [sdb] 104857600 512-byte logical blocks: (53.7 GB/50.0 GiB)
[    1.306759] calling  bpf_cgroup_iter_init+0x0/0x30 @ 1
[    1.306762] initcall bpf_cgroup_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.306764] calling  cpumask_kfunc_init+0x0/0xb0 @ 1
[    1.307668] sd 0:0:1:0: [sdb] Write Protect is off
[    1.308056] initcall cpumask_kfunc_init+0x0/0xb0 returned 0 after 4 usecs
[    1.308673] sd 0:0:1:0: [sdb] Mode Sense: 00 3a 00 00
[    1.309184] calling  crypto_kfunc_init+0x0/0xb0 @ 1
[    1.309817] sd 0:0:1:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.310181] initcall crypto_kfunc_init+0x0/0xb0 returned 0 after 0 usecs
[    1.310183] calling  bpf_kmem_cache_iter_init+0x0/0x30 @ 1
[    1.311649] sd 0:0:1:0: [sdb] Preferred minimum I/O size 512 bytes
[    1.311825] initcall bpf_kmem_cache_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.314831] calling  load_system_certificate_list+0x0/0x40 @ 1
[    1.315277] Loading compiled-in X.509 certificates
[    1.316143] Loaded X.509 cert 'Build time autogenerated kernel key: 63dcfa1705afed8feebbcaee12f1a32f27ca64ce'
[    1.316863] initcall load_system_certificate_list+0x0/0x40 returned 0 after 1586 usecs
[    1.317442] calling  vmstat_late_init+0x0/0x30 @ 1
[    1.317819] initcall vmstat_late_init+0x0/0x30 returned 0 after 1 usecs
[    1.318312] calling  fault_around_debugfs+0x0/0x40 @ 1
[    1.319141] initcall fault_around_debugfs+0x0/0x40 returned 0 after 2 usecs
[    1.319678] calling  slab_sysfs_init+0x0/0x110 @ 1
[    1.321261] initcall slab_sysfs_init+0x0/0x110 returned 0 after 1203 usecs
[    1.321795] calling  max_swapfiles_check+0x0/0x20 @ 1
[    1.322189] initcall max_swapfiles_check+0x0/0x20 returned 0 after 0 usecs
[    1.322726] calling  zswap_init+0x0/0x30 @ 1
[    1.323088] initcall zswap_init+0x0/0x30 returned 0 after 0 usecs
[    1.323552] calling  hugetlb_vmemmap_init+0x0/0x90 @ 1
[    1.323958] initcall hugetlb_vmemmap_init+0x0/0x90 returned 0 after 4 usecs
[    1.324480] calling  mempolicy_sysfs_init+0x0/0x2b0 @ 1
[    1.324889] initcall mempolicy_sysfs_init+0x0/0x2b0 returned 0 after 3 usecs
[    1.325417] calling  memory_tier_late_init+0x0/0xc0 @ 1
[    1.325866] Demotion targets for Node 0: null
[    1.326213] initcall memory_tier_late_init+0x0/0xc0 returned 0 after 382 usecs
[    1.326762] calling  split_huge_pages_debugfs+0x0/0x40 @ 1
[    1.327187] initcall split_huge_pages_debugfs+0x0/0x40 returned 0 after 2 usecs
[    1.327730] calling  check_early_ioremap_leak+0x0/0x60 @ 1
[    1.328148] initcall check_early_ioremap_leak+0x0/0x60 returned 0 after 0 usecs
[    1.328706] calling  set_hardened_usercopy+0x0/0x40 @ 1
[    1.329114] initcall set_hardened_usercopy+0x0/0x40 returned 1 after 0 usecs
[    1.329644] calling  mg_debugfs_init+0x0/0x40 @ 1
[    1.330013] initcall mg_debugfs_init+0x0/0x40 returned 0 after 1 usecs
[    1.330499] calling  fscrypt_init+0x0/0xf0 @ 1
[    1.331245]  sda: sda1 sda2
[    1.331747] Key type .fscrypt registered
[    1.331894] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.332129] Key type fscrypt-provisioning registered
[    1.332130] initcall fscrypt_init+0x0/0xf0 returned 0 after 1119 usecs
[    1.332133] calling  pstore_init+0x0/0x40 @ 1
[    1.332707] probe of 0:0:0:0 returned 0 after 37181 usecs
[    1.333087] initcall pstore_init+0x0/0x40 returned 0 after 5 usecs
[    1.333842] sd 0:0:1:0: [sdb] Attached SCSI disk
[    1.334170] calling  init_root_keyring+0x0/0x20 @ 1
[    1.334826] probe of 0:0:1:0 returned 0 after 31030 usecs
[    1.335290] initcall init_root_keyring+0x0/0x20 returned 0 after 6 usecs
[    1.337335] calling  init_trusted+0x0/0x1c0 @ 1
[    1.337768] initcall init_trusted+0x0/0x1c0 returned 0 after 0 usecs
[    1.338339] calling  init_encrypted+0x0/0x100 @ 1
[    1.342526] calling  cryptd_init+0x0/0xff0 [cryptd] @ 109
[    1.343006] cryptd: max_cpu_qlen set to 1000
[    1.343360] initcall cryptd_init+0x0/0xff0 [cryptd] returned 0 after 382 usecs
[    1.345726] calling  aesni_init+0x0/0xff0 [aesni_intel] @ 109
[    1.346227] initcall aesni_init+0x0/0xff0 [aesni_intel] returned 0 after 47 usecs
[    1.352190] Key type encrypted registered
[    1.352519] initcall init_encrypted+0x0/0x100 returned 0 after 6339 usecs
[    1.353035] calling  init_profile_hash+0x0/0xa0 @ 1
[    1.353419] initcall init_profile_hash+0x0/0xa0 returned 0 after 0 usecs
[    1.353922] calling  integrity_fs_init+0x0/0x70 @ 1
[    1.354305] initcall integrity_fs_init+0x0/0x70 returned 0 after 8 usecs
[    1.354809] calling  init_ima+0x0/0xf0 @ 1
[    1.355207] ima: No TPM chip found, activating TPM-bypass!
[    1.355708] ima: Allocated hash algorithm: sha1
[    1.356132] ima: No architecture policies found
[    1.356560] initcall init_ima+0x0/0xf0 returned 0 after 1354 usecs
[    1.357113] calling  init_evm+0x0/0x140 @ 1
[    1.357503] evm: Initialising EVM extended attributes:
[    1.357978] evm: security.selinux
[    1.358303] evm: security.SMACK64 (disabled)
[    1.358686] evm: security.SMACK64EXEC (disabled)
[    1.359110] evm: security.SMACK64TRANSMUTE (disabled)
[    1.359568] evm: security.SMACK64MMAP (disabled)
[    1.359991] evm: security.apparmor
[    1.360318] evm: security.ima
[    1.360611] evm: security.capability
[    1.360952] evm: HMAC attrs: 0x1
[    1.361270] initcall init_evm+0x0/0x140 returned 0 after 3767 usecs
[    1.361792] calling  crypto_algapi_init+0x0/0x20 @ 1
[    1.362189] initcall crypto_algapi_init+0x0/0x20 returned 0 after 3 usecs
[    1.362725] calling  blk_timeout_init+0x0/0x20 @ 1
[    1.363116] initcall blk_timeout_init+0x0/0x20 returned 0 after 0 usecs
[    1.363654] calling  sed_opal_init+0x0/0xa0 @ 1
[    1.364014] initcall sed_opal_init+0x0/0xa0 returned 0 after 3 usecs
[    1.364486] calling  init_error_injection+0x0/0x80 @ 1
[    1.365015] initcall init_error_injection+0x0/0x80 returned 0 after 135 usecs
[    1.365545] calling  depot_debugfs_init+0x0/0x50 @ 1
[    1.365945] initcall depot_debugfs_init+0x0/0x50 returned 0 after 2 usecs
[    1.366523] calling  pci_resource_alignment_sysfs_init+0x0/0x30 @ 1
[    1.367006] initcall pci_resource_alignment_sysfs_init+0x0/0x30 returned 0 after 4 usecs
[    1.367644] calling  pci_sysfs_init+0x0/0xb0 @ 1
[    1.368037] initcall pci_sysfs_init+0x0/0xb0 returned 0 after 29 usecs
[    1.368529] calling  bert_init+0x0/0x2c0 @ 1
[    1.368869] initcall bert_init+0x0/0x2c0 returned 0 after 1 usecs
[    1.369326] calling  clk_debug_init+0x0/0x130 @ 1
[    1.369704] initcall clk_debug_init+0x0/0x130 returned 0 after 4 usecs
[    1.370190] calling  genpd_debug_init+0x0/0x80 @ 1
[    1.370569] initcall genpd_debug_init+0x0/0x80 returned 0 after 2 usecs
[    1.371061] calling  setup_vcpu_hotplug_event+0x0/0x40 @ 1
[    1.371482] initcall setup_vcpu_hotplug_event+0x0/0x40 returned -19 after 0 usecs
[    1.372033] calling  boot_wait_for_devices+0x0/0x40 @ 1
[    1.372437] initcall boot_wait_for_devices+0x0/0x40 returned -19 after 0 usecs
[    1.372974] calling  dmar_free_unused_resources+0x0/0xd0 @ 1
[    1.373401] initcall dmar_free_unused_resources+0x0/0xd0 returned 0 after 0 usecs
[    1.373960] calling  sync_state_resume_initcall+0x0/0x20 @ 1
[    1.374395] initcall sync_state_resume_initcall+0x0/0x20 returned 0 after 0 usecs
[    1.374953] calling  deferred_probe_initcall+0x0/0xa0 @ 1
[    1.375386] initcall deferred_probe_initcall+0x0/0xa0 returned 0 after 16 usecs
[    1.375938] calling  late_resume_init+0x0/0x1b0 @ 1
[    1.376316] PM:   Magic number: 13:639:119
[    1.376716] initcall late_resume_init+0x0/0x1b0 returned 0 after 400 usecs
[    1.377232] calling  sync_debugfs_init+0x0/0x70 @ 1
[    1.377625] initcall sync_debugfs_init+0x0/0x70 returned 0 after 3 usecs
[    1.378137] calling  charger_manager_init+0x0/0xb0 @ 1
[    1.378610] initcall charger_manager_init+0x0/0xb0 returned 0 after 51 usecs
[    1.379797] calling  dm_init_init+0x0/0x780 @ 1
[    1.380370] initcall dm_init_init+0x0/0x780 returned 0 after 0 usecs
[    1.380887] calling  acpi_cpufreq_init+0x0/0x30 @ 1
[    1.381272] initcall acpi_cpufreq_init+0x0/0x30 returned -19 after 8 usecs
[    1.381788] calling  powernowk8_init+0x0/0x1e0 @ 1
[    1.382165] initcall powernowk8_init+0x0/0x1e0 returned -19 after 0 usecs
[    1.382690] calling  pcc_cpufreq_init+0x0/0x30 @ 1
[    1.383080] initcall pcc_cpufreq_init+0x0/0x30 returned -19 after 5 usecs
[    1.383585] calling  centrino_init+0x0/0x40 @ 1
[    1.383939] initcall centrino_init+0x0/0x40 returned -19 after 0 usecs
[    1.384425] calling  edd_init+0x0/0x320 @ 1
[    1.384756] initcall edd_init+0x0/0x320 returned -19 after 0 usecs
[    1.385224] calling  firmware_memmap_init+0x0/0x50 @ 1
[    1.385638] initcall firmware_memmap_init+0x0/0x50 returned 0 after 11 usecs
[    1.386166] calling  register_update_efi_random_seed+0x0/0x30 @ 1
[    1.386636] initcall register_update_efi_random_seed+0x0/0x30 returned 0 after 0 usecs
[    1.387211] calling  efi_shutdown_init+0x0/0x60 @ 1
[    1.387587] initcall efi_shutdown_init+0x0/0x60 returned -19 after 0 usecs
[    1.388099] calling  efi_rci2_sysfs_init+0x0/0x2c0 @ 1
[    1.388494] initcall efi_rci2_sysfs_init+0x0/0x2c0 returned 0 after 0 usecs
[    1.389009] calling  efi_earlycon_unmap_fb+0x0/0x50 @ 1
[    1.389409] initcall efi_earlycon_unmap_fb+0x0/0x50 returned 0 after 0 usecs
[    1.389935] calling  itmt_legacy_init+0x0/0x60 @ 1
[    1.390311] initcall itmt_legacy_init+0x0/0x60 returned -19 after 0 usecs
[    1.390825] calling  cec_init+0x0/0x1e0 @ 1
[    1.391164] RAS: Correctable Errors collector initialized.
[    1.391579] initcall cec_init+0x0/0x1e0 returned 0 after 424 usecs
[    1.392042] calling  bpf_kfunc_init+0x0/0x170 @ 1
[    1.392407] initcall bpf_kfunc_init+0x0/0x170 returned 0 after 1 usecs
[    1.392893] calling  init_subsystem+0x0/0x30 @ 1
[    1.393256] initcall init_subsystem+0x0/0x30 returned 0 after 0 usecs
[    1.393742] calling  xdp_metadata_init+0x0/0x30 @ 1
[    1.394121] initcall xdp_metadata_init+0x0/0x30 returned 0 after 0 usecs
[    1.394680] calling  bpf_sockmap_iter_init+0x0/0x30 @ 1
[    1.395268] initcall bpf_sockmap_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.395832] calling  bpf_sk_storage_map_iter_init+0x0/0x30 @ 1
[    1.396289] initcall bpf_sk_storage_map_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.396857] calling  bpf_prog_test_run_init+0x0/0xb0 @ 1
[    1.397267] initcall bpf_prog_test_run_init+0x0/0xb0 returned 0 after 0 usecs
[    1.397805] calling  bpf_dummy_struct_ops_init+0x0/0x20 @ 1
[    1.398232] initcall bpf_dummy_struct_ops_init+0x0/0x20 returned 0 after 0 usecs
[    1.398787] calling  tcp_congestion_default+0x0/0x30 @ 1
[    1.399197] initcall tcp_congestion_default+0x0/0x30 returned 0 after 1 usecs
[    1.399764] calling  inet_blackhole_dev_init+0x0/0x40 @ 1
[    1.400179] initcall inet_blackhole_dev_init+0x0/0x40 returned 0 after 2 usecs
[    1.400711] calling  tcp_bpf_v4_build_proto+0x0/0xa0 @ 1
[    1.401123] initcall tcp_bpf_v4_build_proto+0x0/0xa0 returned 0 after 0 usecs
[    1.401662] calling  udp_bpf_v4_build_proto+0x0/0x50 @ 1
[    1.402069] initcall udp_bpf_v4_build_proto+0x0/0x50 returned 0 after 0 usecs
[    1.402613] calling  bpf_tcp_ca_kfunc_init+0x0/0x40 @ 1
[    1.403020] initcall bpf_tcp_ca_kfunc_init+0x0/0x40 returned 0 after 0 usecs
[    1.403549] calling  pci_mmcfg_late_insert_resources+0x0/0xd0 @ 1
[    1.404009] initcall pci_mmcfg_late_insert_resources+0x0/0xd0 returned 0 after 0 usecs
[    1.404588] calling  software_resume_initcall+0x0/0x190 @ 1
[    1.405034] initcall software_resume_initcall+0x0/0x190 returned -2 after 1 usecs
[    1.405598] calling  lockup_detector_check+0x0/0x80 @ 1
[    1.406009] initcall lockup_detector_check+0x0/0x80 returned 0 after 10 usecs
[    1.406540] calling  ftrace_check_sync+0x0/0x30 @ 1
[    1.406946] initcall ftrace_check_sync+0x0/0x30 returned 0 after 4 usecs
[    1.407457] calling  latency_fsnotify_init+0x0/0x50 @ 1
[    1.407869] initcall latency_fsnotify_init+0x0/0x50 returned 0 after 6 usecs
[    1.408396] calling  trace_eval_sync+0x0/0x30 @ 1
[    1.409056] initcall trace_eval_sync+0x0/0x30 returned 0 after 3 usecs
[    1.409549] calling  late_trace_init+0x0/0xe0 @ 1
[    1.409917] initcall late_trace_init+0x0/0xe0 returned 0 after 0 usecs
[    1.410408] calling  acpi_gpio_handle_deferred_request_irqs+0x0/0xa0 @ 1
[    1.410919] initcall acpi_gpio_handle_deferred_request_irqs+0x0/0xa0 returned 0 after 0 usecs
[    1.411558] calling  clk_disable_unused+0x0/0x190 @ 1
[    1.411955] clk: Disabling unused clocks
[    1.412273] initcall clk_disable_unused+0x0/0x190 returned 0 after 318 usecs
[    1.412795] calling  genpd_power_off_unused+0x0/0xa0 @ 1
[    1.413204] PM: genpd: Disabling unused power domains
[    1.413607] initcall genpd_power_off_unused+0x0/0xa0 returned 0 after 402 usecs
[    1.414155] calling  balloon_wait_finish+0x0/0x110 @ 1
[    1.414565] initcall balloon_wait_finish+0x0/0x110 returned -19 after 0 usecs
[    1.415100] calling  regulator_init_complete+0x0/0x40 @ 1
[    1.415520] initcall regulator_init_complete+0x0/0x40 returned 0 after 0 usecs
[    1.421811] Freeing unused decrypted memory: 2028K
[    1.422600] Freeing unused kernel image (initmem) memory: 4692K
[    1.422954] Write protecting the kernel read-only data: 26624k
[    1.423497] Freeing unused kernel image (text/rodata gap) memory: 548K
[    1.423974] Freeing unused kernel image (rodata/data gap) memory: 440K
[    1.431693] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    1.432050] Run /init as init process
[    1.432270]   with arguments:
[    1.432451]     /init
[    1.432602]     splash
[    1.432756]   with environment:
[    1.432945]     HOME=/
[    1.433102]     TERM=linux
[    1.433272]     BOOT_IMAGE=/vmlinuz-6.15.0-rc5+
[    1.462241] calling  mac_hid_init+0x0/0xff0 [mac_hid] @ 160
[    1.462692] initcall mac_hid_init+0x0/0xff0 [mac_hid] returned 0 after 3 usecs
[    1.464642] calling  floppy_module_init+0x0/0x1e40 [floppy] @ 163
[    1.466101] calling  pacpi_pci_driver_init+0x0/0xff0 [pata_acpi] @ 146
[    1.467175] initcall pacpi_pci_driver_init+0x0/0xff0 [pata_acpi] returned 0 after 471 usecs
[    1.468334] calling  serio_raw_drv_init+0x0/0xff0 [serio_raw] @ 160
[    1.469179] initcall serio_raw_drv_init+0x0/0xff0 [serio_raw] returned 0 after 15 usecs
[    1.474497] calling  psmouse_init+0x0/0xa0 [psmouse] @ 166
[    1.479037] initcall psmouse_init+0x0/0xa0 [psmouse] returned 0 after 3946 usecs
[    1.480174] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4
[    1.481214] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3
[    1.481985] probe of serio1 returned 0 after 2244 usecs
[    1.483804] FDC 0 is a S82078B
[    1.484615] initcall floppy_module_init+0x0/0x1e40 [floppy] returned 0 after 9524 usecs
[    1.485916] calling  input_leds_init+0x0/0xff0 [input_leds] @ 143
[    1.485949] calling  drm_core_init+0x0/0xb0 [drm] @ 150
[    1.486857] ACPI: bus type drm_connector registered
[    1.487382] initcall drm_core_init+0x0/0xb0 [drm] returned 0 after 539 usecs
[    1.498881] calling  qxl_pci_driver_init+0x0/0xff0 [qxl] @ 150
[    1.510816] Console: switching to colour dummy device 80x25
[    1.511198] qxl 0000:00:02.0: vgaarb: deactivate vga console
[    1.511719] [drm] Device Version 0.0
[    1.512023] [drm] Compression level 0 log level 0
[    1.512328] [drm] 12286 io pages at offset 0x1000000
[    1.512794] [drm] 16777216 byte draw area at offset 0x0
[    1.513225] [drm] RAM header offset: 0x3ffe000
[    1.513599] [drm] qxl: 16M of VRAM memory size
[    1.513909] [drm] qxl: 63M of IO pages memory ready (VRAM domain)
[    1.514460] [drm] qxl: 64M of Surface memory size
[    1.515818] [drm] slot 0 (main): base 0xf4000000, size 0x03ffe000
[    1.516480] [drm] slot 1 (surfaces): base 0xf8000000, size 0x04000000
[    1.517352] [drm] Initialized qxl 0.1.0 for 0000:00:02.0 on minor 0
[    1.518390] fbcon: qxldrmfb (fb0) is primary device
[    1.520889] Console: switching to colour frame buffer device 128x48
[    1.529819] qxl 0000:00:02.0: [drm] fb0: qxldrmfb frame buffer device
[    1.546653] initcall input_leds_init+0x0/0xff0 [input_leds] returned 0 after 47424 usecs
[    1.560549] probe of 0000:00:02.0 returned 0 after 61311 usecs
[    1.561130] initcall qxl_pci_driver_init+0x0/0xff0 [qxl] returned 0 after 61901 usecs
[    1.627433] calling  linear_init+0x0/0xff0 [linear] @ 191
[    1.627908] initcall linear_init+0x0/0xff0 [linear] returned 0 after 1 usecs
[    1.851203] EXT4-fs (sda2): mounted filesystem 3516f70c-4dd9-4b0f-bac4-c41778d09bbb ro with ordered data mode. Quota mode: none.
[    1.884537] EXT4-fs (sda2): re-mounted 3516f70c-4dd9-4b0f-bac4-c41778d09bbb r/w.
[    1.897656] EXT4-fs (sda2): re-mounted 3516f70c-4dd9-4b0f-bac4-c41778d09bbb.
[    2.016105] systemd[1]: RTC configured in localtime, applying delta of 480 minutes to system time.
[    2.033940] calling  init_autofs_fs+0x0/0x40 [autofs4] @ 1
[    2.034398] initcall init_autofs_fs+0x0/0x40 [autofs4] returned 0 after 56 usecs
[    2.034940] systemd[1]: Inserted module 'autofs4'
[    2.037831] calling  xt_init+0x0/0xff0 [x_tables] @ 1
[    2.038224] initcall xt_init+0x0/0xff0 [x_tables] returned 0 after 2 usecs
[    2.040530] calling  ip_tables_init+0x0/0xff0 [ip_tables] @ 1
[    2.040888] initcall ip_tables_init+0x0/0xff0 [ip_tables] returned 0 after 4 usecs
[    2.046721] systemd[1]: systemd 245.4-4kylin3.11k30 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)
[    2.047875] systemd[1]: Detected virtualization kvm.
[    2.048158] systemd[1]: Detected architecture x86-64.
[    2.048458] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[    2.091939] systemd[1]: Set hostname to <standardpc>.
[    2.217235] systemd[1]: Configuration file /lib/systemd/system/vdi_usbmagicd.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    2.218372] systemd[1]: Configuration file /lib/systemd/system/vdi_usbipd.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    2.219468] systemd[1]: Configuration file /lib/systemd/system/vdi_super_agent.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    2.227070] systemd[1]: Configuration file /etc/systemd/system/runsunloginclient.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    2.262515] systemd[1]: Created slice system-modprobe.slice.
[    2.262975] systemd[1]: Created slice system-serial\x2dgetty.slice.
[    2.263461] systemd[1]: Created slice User and Session Slice.
[    2.263807] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    2.264309] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    2.264850] systemd[1]: Reached target User and Group Name Lookups.
[    2.265192] systemd[1]: Reached target Remote File Systems.
[    2.265510] systemd[1]: Reached target Slices.
[    2.265777] systemd[1]: Reached target Swap.
[    2.266089] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    2.266502] systemd[1]: Listening on LVM2 poll daemon socket.
[    2.266890] systemd[1]: Listening on Syslog Socket.
[    2.267855] systemd[1]: Listening on Process Core Dump Socket.
[    2.268212] systemd[1]: Listening on fsck to fsckd communication Socket.
[    2.268597] systemd[1]: Listening on initctl Compatibility Named Pipe.
[    2.269971] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
[    2.270469] systemd[1]: Listening on Journal Socket (/dev/log).
[    2.270878] systemd[1]: Listening on Journal Socket.
[    2.271212] systemd[1]: Listening on udev Control Socket.
[    2.271541] systemd[1]: Listening on udev Kernel Socket.
[    2.290820] systemd[1]: Mounting Huge Pages File System...
[    2.292380] systemd[1]: Mounting POSIX Message Queue File System...
[    2.293425] systemd[1]: Mounting Kernel Debug File System...
[    2.294757] systemd[1]: Mounting Kernel Trace File System...
[    2.296269] systemd[1]: Starting Journal Service...
[    2.297398] systemd[1]: Starting Availability of block devices...
[    2.299307] systemd[1]: Starting Set the console keyboard layout...
[    2.301367] systemd[1]: Starting Create list of static device nodes for the current kernel...
[    2.303255] systemd[1]: Starting update duration after shutdown or reboot...
[    2.304467] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[    2.305392] systemd[1]: Condition check resulted in Load Kernel Module drm being skipped.
[    2.306708] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[    2.307546] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[    2.309808] systemd[1]: Starting Load Kernel Modules...
[    2.311414] systemd[1]: Starting Remount Root and Kernel File Systems...
[    2.313113] systemd[1]: Starting udev Coldplug all Devices...
[    2.315199] systemd[1]: Starting Uncomplicated firewall...
[    2.316950] systemd[1]: Mounted Huge Pages File System.
[    2.317551] systemd[1]: Mounted POSIX Message Queue File System.
[    2.318235] systemd[1]: Mounted Kernel Debug File System.
[    2.319066] systemd[1]: Mounted Kernel Trace File System.
[    2.320099] systemd[1]: Finished Availability of block devices.
[    2.321428] calling  parport_default_proc_register+0x0/0xff0 [parport] @ 348
[    2.322069] initcall parport_default_proc_register+0x0/0xff0 [parport] returned 0 after 20 usecs
[    2.322461] systemd[1]: Finished Create list of static device nodes for the current kernel.
[    2.323875] systemd[1]: Finished update duration after shutdown or reboot.
[    2.324785] systemd[1]: Finished Uncomplicated firewall.
[    2.329713] calling  lp_init_module+0x0/0xff0 [lp] @ 348
[    2.335764] lp: driver loaded but no devices found
[    2.336214] initcall lp_init_module+0x0/0xff0 [lp] returned 0 after 6015 usecs
[    2.338502] calling  ppdev_init+0x0/0xff0 [ppdev] @ 348
[    2.341716] systemd[1]: Started Journal Service.
[    2.342095] ppdev: user-space parallel port driver
[    2.342539] initcall ppdev_init+0x0/0xff0 [ppdev] returned 0 after 3562 usecs
[    2.344766] calling  parport_pc_init+0x0/0xef0 [parport_pc] @ 348
[    2.345175] probe of parport_pc.956 returned 0 after 12 usecs
[    2.345514] probe of parport0 returned 19 after 3 usecs
[    2.345806] probe of parport0 returned 19 after 2 usecs
[    2.346244] probe of parport_pc.888 returned 0 after 5 usecs
[    2.346585] probe of parport0 returned 19 after 2 usecs
[    2.346832] EXT4-fs (sda2): re-mounted 3516f70c-4dd9-4b0f-bac4-c41778d09bbb.
[    2.346992] probe of parport0 returned 19 after 3 usecs
[    2.348040] probe of parport_pc.632 returned 0 after 10 usecs
[    2.348455] probe of parport0 returned 19 after 2 usecs
[    2.348796] probe of parport0 returned 19 after 1 usecs
[    2.349240] initcall parport_pc_init+0x0/0xef0 [parport_pc] returned 0 after 4127 usecs
[    2.363571] calling  vmw_pci_driver_init+0x0/0xff0 [vmwgfx] @ 348
[    2.364140] initcall vmw_pci_driver_init+0x0/0xff0 [vmwgfx] returned 0 after 24 usecs
[    2.380368] calling  usbip_core_init+0x0/0xff0 [usbip_core] @ 348
[    2.380759] initcall usbip_core_init+0x0/0xff0 [usbip_core] returned 0 after 41 usecs
[    2.382995] calling  vhci_hcd_init+0x0/0xff0 [vhci_hcd] @ 348
[    2.383520] vhci_hcd vhci_hcd.0: USB/IP Virtual Host Controller
[    2.384063] vhci_hcd vhci_hcd.0: new USB bus registered, assigned bus number 3
[    2.384694] vhci_hcd: created sysfs vhci_hcd.0
[    2.385242] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.15
[    2.386057] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.386724] usb usb3: Product: USB/IP Virtual Host Controller
[    2.387286] usb usb3: Manufacturer: Linux 6.15.0-rc5+ vhci_hcd
[    2.387845] usb usb3: SerialNumber: vhci_hcd.0
[    2.388406] hub 3-0:1.0: USB hub found
[    2.388817] hub 3-0:1.0: 8 ports detected
[    2.389326] probe of 3-0:1.0 returned 0 after 923 usecs
[    2.389849] probe of usb3 returned 0 after 1466 usecs
[    2.390365] vhci_hcd vhci_hcd.0: USB/IP Virtual Host Controller
[    2.390948] vhci_hcd vhci_hcd.0: new USB bus registered, assigned bus number 4
[    2.391640] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.392411] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.15
[    2.393165] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.393844] usb usb4: Product: USB/IP Virtual Host Controller
[    2.394405] usb usb4: Manufacturer: Linux 6.15.0-rc5+ vhci_hcd
[    2.394992] usb usb4: SerialNumber: vhci_hcd.0
[    2.395554] hub 4-0:1.0: USB hub found
[    2.395899] hub 4-0:1.0: 8 ports detected
[    2.396364] probe of 4-0:1.0 returned 0 after 812 usecs
[    2.396827] probe of usb4 returned 0 after 1290 usecs
[    2.397394] probe of vhci_hcd.0 returned 0 after 13879 usecs
[    2.397397] initcall vhci_hcd_init+0x0/0xff0 [vhci_hcd] returned 0 after 13931 usecs
[    2.427411] calling  fq_codel_module_init+0x0/0xff0 [sch_fq_codel] @ 375
[    2.427854] initcall fq_codel_module_init+0x0/0xff0 [sch_fq_codel] returned 0 after 1 usecs
[    2.540454] calling  fw_cfg_sysfs_init+0x0/0xff0 [qemu_fw_cfg] @ 396
[    2.541254] calling  init_soundcore+0x0/0xff0 [soundcore] @ 376
[    2.541291] probe of QEMU0002:00 returned 0 after 281 usecs
[    2.541716] initcall init_soundcore+0x0/0xff0 [soundcore] returned 0 after 6 usecs
[    2.542234] initcall fw_cfg_sysfs_init+0x0/0xff0 [qemu_fw_cfg] returned 0 after 523 usecs
[    2.544780] calling  failover_init+0x0/0xff0 [failover] @ 389
[    2.545234] initcall failover_init+0x0/0xff0 [failover] returned 0 after 4 usecs
[    2.547355] calling  smbalert_driver_init+0x0/0xff0 [i2c_smbus] @ 391
[    2.548025] initcall smbalert_driver_init+0x0/0xff0 [i2c_smbus] returned 0 after 19 usecs
[    2.549385] calling  virtio_input_driver_init+0x0/0xff0 [virtio_input] @ 393
[    2.558309] calling  net_failover_init+0x0/0xff0 [net_failover] @ 389
[    2.558325] calling  alsa_sound_init+0x0/0xa0 [snd] @ 405
[    2.558808] initcall net_failover_init+0x0/0xff0 [net_failover] returned 0 after 0 usecs
[    2.559898] initcall alsa_sound_init+0x0/0xa0 [snd] returned 0 after 279 usecs
[    2.568617] input: QEMU Virtio Tablet as /devices/pci0000:00/0000:00:06.0/virtio1/input/input5
[    2.570424] probe of virtio1 returned 0 after 18875 usecs
[    2.570994] initcall virtio_input_driver_init+0x0/0xff0 [virtio_input] returned 0 after 11375 usecs
[    2.587001] calling  virtio_net_driver_init+0x0/0xff0 [virtio_net] @ 389
[    2.587479] calling  piix4_driver_init+0x0/0xff0 [i2c_piix4] @ 391
[    2.588841] calling  alsa_timer_init+0x0/0xff0 [snd_timer] @ 408
[    2.594540] piix4_smbus 0000:00:01.3: SMBus Host Controller at 0x700, revision 0
[    2.595500] initcall alsa_timer_init+0x0/0xff0 [snd_timer] returned 0 after 6129 usecs
[    2.598771] i2c i2c-0: Memory type 0x07 not supported yet, not instantiating SPD
[    2.600775] calling  joydev_init+0x0/0xff0 [joydev] @ 380
[    2.600844] probe of virtio0 returned 0 after 13334 usecs
[    2.601596] initcall joydev_init+0x0/0xff0 [joydev] returned 0 after 429 usecs
[    2.601655] initcall virtio_net_driver_init+0x0/0xff0 [virtio_net] returned 0 after 488 usecs
[    2.603027] probe of 0000:00:01.3 returned 0 after 8526 usecs
[    2.603756] initcall piix4_driver_init+0x0/0xff0 [i2c_piix4] returned 0 after 2589 usecs
[    2.613462] calling  alsa_seq_device_init+0x0/0xff0 [snd_seq_device] @ 408
[    2.614271] initcall alsa_seq_device_init+0x0/0xff0 [snd_seq_device] returned 0 after 20 usecs
[    2.633123] calling  alsa_seq_init+0x0/0x60 [snd_seq] @ 420
[    2.634357] initcall alsa_seq_init+0x0/0x60 [snd_seq] returned 0 after 722 usecs
[    2.655881] calling  alsa_rawmidi_init+0x0/0xff0 [snd_rawmidi] @ 454
[    2.656472] initcall alsa_rawmidi_init+0x0/0xff0 [snd_rawmidi] returned 0 after 1 usecs
[    2.670749] calling  seq_midisynth_driver_init+0x0/0xff0 [snd_seq_midi] @ 466
[    2.671440] initcall seq_midisynth_driver_init+0x0/0xff0 [snd_seq_midi] returned 0 after 23 usecs
[    2.689990] virtio_net virtio0 ens3: renamed from eth0
[    2.691766] calling  alsa_pcm_init+0x0/0xff0 [snd_pcm] @ 490
[    2.692110] initcall alsa_pcm_init+0x0/0xff0 [snd_pcm] returned 0 after 3 usecs
[    2.703862] calling  ac97_bus_init+0x0/0xff0 [ac97_bus] @ 376
[    2.704221] calling  cstate_pmu_init+0x0/0xff0 [intel_cstate] @ 398
[    2.704305] initcall ac97_bus_init+0x0/0xff0 [ac97_bus] returned 0 after 16 usecs
[    2.704797] initcall cstate_pmu_init+0x0/0xff0 [intel_cstate] returned -19 after 0 usecs
[    2.720721] calling  intel8x0_driver_init+0x0/0xff0 [snd_intel8x0] @ 376
[    2.723492] EXT4-fs (sdb): recovery complete
[    2.725686] EXT4-fs (sdb): mounted filesystem 1b1b0571-175b-4b83-9612-38293c03950b r/w with ordered data mode. Quota mode: none.
[    2.731990] EXT4-fs (sda1): warning: mounting fs with errors, running e2fsck is recommended
[    2.734620] EXT4-fs (sda1): recovery complete
[    2.736870] EXT4-fs (sda1): mounted filesystem cfaaa870-4d52-434c-8626-a398f6c7edd3 r/w with ordered data mode. Quota mode: none.
[    2.737221] ACPI: \_SB_.LNKA: Enabled at IRQ 11
[    2.738015] snd_intel8x0 0000:00:05.0: enable KVM optimization
[    2.764861] calling  rapl_pmu_init+0x0/0xdb0 [rapl] @ 378
[    2.765683] RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer
[    2.766997] initcall rapl_pmu_init+0x0/0xdb0 [rapl] returned 0 after 1380 usecs
[    2.771832] calling  sha1_ssse3_mod_init+0x0/0xff0 [sha1_ssse3] @ 387
[    2.772856] initcall sha1_ssse3_mod_init+0x0/0xff0 [sha1_ssse3] returned 0 after 19 usecs
[    2.777503] calling  sha256_ssse3_mod_init+0x0/0xff0 [sha256_ssse3] @ 378
[    2.778123] initcall sha256_ssse3_mod_init+0x0/0xff0 [sha256_ssse3] returned 0 after 21 usecs
[    2.782721] calling  sha512_ssse3_mod_init+0x0/0xff0 [sha512_ssse3] @ 387
[    2.783933] initcall sha512_ssse3_mod_init+0x0/0xff0 [sha512_ssse3] returned 0 after 24 usecs
[    2.787718] calling  ghash_pclmulqdqni_mod_init+0x0/0xff0 [ghash_clmulni_intel] @ 398
[    2.788272] initcall ghash_pclmulqdqni_mod_init+0x0/0xff0 [ghash_clmulni_intel] returned 0 after 9 usecs
[    2.823813] calling  kvm_x86_init+0x0/0x50 [kvm] @ 393
[    2.824258] initcall kvm_x86_init+0x0/0x50 [kvm] returned 0 after 17 usecs
[    2.832616] calling  vmx_init+0x0/0x1c0 [kvm_intel] @ 387
[    2.841003] initcall vmx_init+0x0/0x1c0 [kvm_intel] returned 0 after 8054 usecs
[    2.847539] calling  rapl_init+0x0/0xff0 [intel_rapl_common] @ 378
[    2.849678] initcall rapl_init+0x0/0xff0 [intel_rapl_common] returned 0 after 1591 usecs
[    2.852176] calling  intel_rapl_msr_driver_init+0x0/0xff0 [intel_rapl_msr] @ 379
[    2.852862] intel_rapl_msr: PL4 support detected.
[    2.853480] probe of intel_rapl_msr.0 returned 19 after 625 usecs
[    2.854060] initcall intel_rapl_msr_driver_init+0x0/0xff0 [intel_rapl_msr] returned 0 after 1220 usecs
[    3.008718] probe of 0000:00:05.0 returned 0 after 287603 usecs
[    3.009877] initcall intel8x0_driver_init+0x0/0xff0 [snd_intel8x0] returned 0 after 157036 usecs
[    3.418866] calling  pppox_init+0x0/0xff0 [pppox] @ 937
[    3.419333] NET: Registered PF_PPPOX protocol family
[    3.419786] initcall pppox_init+0x0/0xff0 [pppox] returned 0 after 452 usecs
[    3.435474] calling  udp_tunnel_nic_init_module+0x0/0xff0 [udp_tunnel] @ 944
[    3.436197] initcall udp_tunnel_nic_init_module+0x0/0xff0 [udp_tunnel] returned 0 after 10 usecs
[    3.446217] calling  l2tp_init+0x0/0xff0 [l2tp_core] @ 944
[    3.446860] l2tp_core: L2TP core driver, V2.0
[    3.447358] initcall l2tp_init+0x0/0xff0 [l2tp_core] returned 0 after 565 usecs
[    3.452600] calling  l2tp_nl_init+0x0/0xff0 [l2tp_netlink] @ 944
[    3.453251] l2tp_netlink: L2TP netlink interface
[    3.453793] initcall l2tp_nl_init+0x0/0xff0 [l2tp_netlink] returned 0 after 543 usecs
[    3.462839] calling  pppol2tp_init+0x0/0xff0 [l2tp_ppp] @ 944
[    3.463378] l2tp_ppp: PPPoL2TP kernel driver, V2.0
[    3.463779] initcall pppol2tp_init+0x0/0xff0 [l2tp_ppp] returned 0 after 406 usecs
[    3.593502] calling  xfrm_user_init+0x0/0xff0 [xfrm_user] @ 1022
[    3.593973] Initializing XFRM netlink socket
[    3.594533] initcall xfrm_user_init+0x0/0xff0 [xfrm_user] returned 0 after 559 usecs
[    5.002058] kdump-tools[711]:  * loaded kdump kernel
[   65.198746][  T339] systemd-journald[339]: Received client request to flush runtime journal.
[   65.217854][  T339] systemd-journald[339]: File /var/log/journal/6730bfab70e74566a30d15657f16ea21/system.journal corrupted or uncleanly shut down, renaming and replacing.
[   69.038727][  T339] systemd-journald[339]: File /var/log/journal/6730bfab70e74566a30d15657f16ea21/user-1000.journal corrupted or uncleanly shut down, renaming and replacing.
[  215.068127][ T5490] vhci_hcd vhci_hcd.0: pdev(0) rhport(0) sockfd(3)
[  215.068539][ T5490] vhci_hcd vhci_hcd.0: devid(262147) speed(5) speed_str(super-speed)
[  215.069011][ T5490] vhci_hcd vhci_hcd.0: Device attached
[  215.318607][  T197] usb 4-1: SetAddress Request (2) to port 0
[  215.319549][  T197] usb 4-1: new SuperSpeed USB device number 2 using vhci_hcd
[  215.341220][  T197] usb 4-1: New USB device found, idVendor=0951, idProduct=1666, bcdDevice= 1.10
[  215.341680][  T197] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  215.342065][  T197] usb 4-1: Product: DataTraveler 3.0
[  215.342330][  T197] usb 4-1: Manufacturer: Kingston
[  215.342593][  T197] usb 4-1: SerialNumber: 4CEDFB74A335E611091101EF
[  215.344969][  T197] probe of 4-1 returned 0 after 1970 usecs
[  215.352768][ T5509] calling  usb_storage_driver_init+0x0/0xff0 [usb_storage] @ 5509
[  215.353528][ T5509] usb-storage 4-1:1.0: USB Mass Storage device detected
[  215.354213][ T5509] scsi host2: usb-storage 4-1:1.0
[  215.354662][ T5509] probe of 4-1:1.0 returned 0 after 1145 usecs
[  215.355137][ T5509] usbcore: registered new interface driver usb-storage
[  215.355616][ T5509] initcall usb_storage_driver_init+0x0/0xff0 [usb_storage] returned 0 after 2221 usecs
[  215.357507][ T5509] calling  uas_init+0x0/0xff0 [uas] @ 5509
[  215.357961][ T5509] usbcore: registered new interface driver uas
[  215.358372][ T5509] initcall uas_init+0x0/0xff0 [uas] returned 0 after 492 usecs
[  216.373389][   T49] scsi 2:0:0:0: Direct-Access     Kingston DataTraveler 3.0 PMAP PQ: 0 ANSI: 6
[  216.374624][   T49] probe of 2:0:0:0 returned 19 after 4 usecs
[  216.375199][   T49] sd 2:0:0:0: Attached scsi generic sg2 type 0
[  216.376791][   T39] sd 2:0:0:0: [sdc] 60530688 512-byte logical blocks: (31.0 GB/28.9 GiB)
[  216.378326][   T39] sd 2:0:0:0: [sdc] Write Protect is off
[  216.378752][   T39] sd 2:0:0:0: [sdc] Mode Sense: 45 00 00 00
[  216.379948][   T39] sd 2:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[  216.407812][   T39]  sdc:
[  216.408044][   T39] sd 2:0:0:0: [sdc] Attached SCSI removable disk
[  216.408447][   T39] probe of 2:0:0:0 returned 0 after 33513 usecs
[  216.622273][ T5539] calling  init_exfat_fs+0x0/0xff0 [exfat] @ 5539
[  216.623194][ T5539] initcall init_exfat_fs+0x0/0xff0 [exfat] returned 0 after 46 usecs
[  216.624597][ T5536] exfat: Deprecated parameter 'namecase'
[  216.625775][ T5536] exFAT-fs (sdc): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[  216.673508][ T1874] ukui-flash-disk[1874]: segfault at 0 ip 000056441fe37dcb sp 00007fff02f74d70 error 4 in ukui-flash-disk[40dcb,56441fe1e000+61000] likely on CPU 3 (core 0, socket 3)
[  216.674780][ T1874] Code: ff 85 c0 4c 89 ef 0f 95 84 24 e1 00 00 00 e8 1c 8d fe ff 48 8b b4 24 a0 00 00 00 48 89 ef 4c 8b 2d 7a 42 06 00 e8 65 77 ff ff <49> 8b 7d 00 48 89 ee e8 19 ec 00 00 48 89 ef 49 89 c5 e8 1e 64 ff
[  229.286684][ T5739] PM: suspend entry (s2idle)
[  229.340237][ T5739] Filesystems sync: 0.052 seconds
[  229.447791][ T5739] Freezing user space processes
[  229.451603][ T5739] Freezing user space processes completed (elapsed 0.002 seconds)
[  229.452592][ T5739] OOM killer disabled.
[  229.453105][ T5739] Freezing remaining freezable tasks
[  249.457663][ T5739] Freezing remaining freezable tasks failed after 20.003 seconds (0 tasks refusing to freeze, wq_busy=1):
[  249.459266][ T5739] Showing freezable workqueues that are still busy:
[  249.460154][ T5739] workqueue events_freezable_pwr_efficient: flags=0x86
[  249.461111][ T5739]   pwq 19: cpus=0-3 node=0 flags=0x4 nice=0 active=1 refcnt=2
[  249.461120][ T5739]     in-flight: 41:disk_events_workfn
[  249.461199][ T5739] Restarting kernel threads ... done.
[  249.464828][ T5739] OOM killer enabled.
[  249.465527][ T5739] Restarting tasks ... done.
[  249.468433][ T5739] random: crng reseeded on system resumption
[  249.470879][ T5739] PM: suspend exit

[-- Attachment #6: dmesg-platform bus-device bound-black screen.log --]
[-- Type: text/x-log, Size: 178300 bytes --]

[    0.000000] Linux version 6.15.0-rc5+ (root@standardpc) (gcc (Ubuntu 9.3.0-10kylin2) 9.3.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #10 SMP PREEMPT_DYNAMIC Fri Jun 20 13:38:04 CST 2025
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-6.15.0-rc5+ root=UUID=3516f70c-4dd9-4b0f-bac4-c41778d09bbb ro quiet splash console=ttyS0 loglevel=7 initcall_debug no_console_suspend ignore_loglevel crashkernel=512M-:192M audit=0 security=kysec
[    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] 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-0x00000000bffdefff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bffdf000-0x00000000bfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable
[    0.000000] printk: debug: ignoring loglevel setting.
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] SMBIOS 2.8 present.
[    0.000000] DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.14.0-0-g155821a1990b-prebuilt.qemu.org 04/01/2014
[    0.000000] DMI: Memory slots populated: 1/1
[    0.000000] Hypervisor detected: KVM
[    0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[    0.000001] kvm-clock: using sched offset of 118607767274 cycles
[    0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    0.000005] tsc: Detected 2803.200 MHz processor
[    0.000618] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000620] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000624] last_pfn = 0x240000 max_arch_pfn = 0x400000000
[    0.000664] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs
[    0.000667] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000715] last_pfn = 0xbffdf max_arch_pfn = 0x400000000
[    0.006128] found SMP MP-table at [mem 0x000f5a40-0x000f5a4f]
[    0.006142] Using GB pages for direct mapping
[    0.006254] RAMDISK: [mem 0x2f169000-0x338abfff]
[    0.006257] ACPI: Early table checksum verification disabled
[    0.006261] ACPI: RSDP 0x00000000000F5A00 000014 (v00 BOCHS )
[    0.006264] ACPI: RSDT 0x00000000BFFE1639 000030 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.006269] ACPI: FACP 0x00000000BFFE150D 000074 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.006273] ACPI: DSDT 0x00000000BFFDFD80 00178D (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.006276] ACPI: FACS 0x00000000BFFDFD40 000040
[    0.006278] ACPI: APIC 0x00000000BFFE1581 000090 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.006280] ACPI: WAET 0x00000000BFFE1611 000028 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.006281] ACPI: Reserving FACP table memory at [mem 0xbffe150d-0xbffe1580]
[    0.006282] ACPI: Reserving DSDT table memory at [mem 0xbffdfd80-0xbffe150c]
[    0.006283] ACPI: Reserving FACS table memory at [mem 0xbffdfd40-0xbffdfd7f]
[    0.006283] ACPI: Reserving APIC table memory at [mem 0xbffe1581-0xbffe1610]
[    0.006284] ACPI: Reserving WAET table memory at [mem 0xbffe1611-0xbffe1638]
[    0.006493] No NUMA configuration found
[    0.006494] Faking a node at [mem 0x0000000000000000-0x000000023fffffff]
[    0.006499] NODE_DATA(0) allocated [mem 0x23ffd59c0-0x23fffffff]
[    0.006667] crashkernel reserved: 0x00000000b3000000 - 0x00000000bf000000 (192 MB)
[    0.006680] Zone ranges:
[    0.006680]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.006681]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.006682]   Normal   [mem 0x0000000100000000-0x000000023fffffff]
[    0.006683]   Device   empty
[    0.006684] Movable zone start for each node
[    0.006685] Early memory node ranges
[    0.006685]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.006686]   node   0: [mem 0x0000000000100000-0x00000000bffdefff]
[    0.006687]   node   0: [mem 0x0000000100000000-0x000000023fffffff]
[    0.006688] Initmem setup node 0 [mem 0x0000000000001000-0x000000023fffffff]
[    0.006693] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.006716] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.017874] On node 0, zone Normal: 33 pages in unavailable ranges
[    0.018173] ACPI: PM-Timer IO Port: 0x608
[    0.018187] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[    0.018218] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
[    0.018220] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.018222] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
[    0.018223] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.018223] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
[    0.018224] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
[    0.018227] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.018228] TSC deadline timer available
[    0.018232] CPU topo: Max. logical packages:   4
[    0.018233] CPU topo: Max. logical dies:       4
[    0.018233] CPU topo: Max. dies per package:   1
[    0.018236] CPU topo: Max. threads per core:   1
[    0.018236] CPU topo: Num. cores per package:     1
[    0.018237] CPU topo: Num. threads per package:   1
[    0.018237] CPU topo: Allowing 4 present CPUs plus 0 hotplug CPUs
[    0.018267] kvm-guest: APIC: eoi() replaced with kvm_guest_apic_eoi_write()
[    0.018280] kvm-guest: KVM setup pv remote TLB flush
[    0.018284] kvm-guest: setup PV sched yield
[    0.018289] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.018290] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[    0.018291] PM: hibernation: Registered nosave memory: [mem 0xbffdf000-0xffffffff]
[    0.018292] [mem 0xc0000000-0xfeffbfff] available for PCI devices
[    0.018293] Booting paravirtualized kernel on KVM
[    0.018295] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.018299] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.018541] percpu: Embedded 61 pages/cpu s212992 r8192 d28672 u524288
[    0.018545] pcpu-alloc: s212992 r8192 d28672 u524288 alloc=1*2097152
[    0.018547] pcpu-alloc: [0] 0 1 2 3 
[    0.018577] kvm-guest: PV spinlocks enabled
[    0.018579] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear)
[    0.018581] Kernel command line: BOOT_IMAGE=/vmlinuz-6.15.0-rc5+ root=UUID=3516f70c-4dd9-4b0f-bac4-c41778d09bbb ro quiet splash console=ttyS0 loglevel=7 initcall_debug no_console_suspend ignore_loglevel crashkernel=512M-:192M audit=0 security=kysec
[    0.018691] audit: disabled (until reboot)
[    0.018701] Unknown kernel command line parameters "splash BOOT_IMAGE=/vmlinuz-6.15.0-rc5+", will be passed to user space.
[    0.018713] random: crng init done
[    0.018714] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    0.019338] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.019651] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.019719] software IO TLB: area num 4.
[    0.030057] Fallback order for Node 0: 0 
[    0.030060] Built 1 zonelists, mobility grouping on.  Total pages: 2097021
[    0.030061] Policy zone: Normal
[    0.030062] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.041064] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.047688] ftrace: allocating 54134 entries in 212 pages
[    0.047690] ftrace: allocated 212 pages with 4 groups
[    0.048370] Dynamic Preempt: voluntary
[    0.048401] rcu: Preemptible hierarchical RCU implementation.
[    0.048402] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[    0.048403] 	Trampoline variant of Tasks RCU enabled.
[    0.048403] 	Rude variant of Tasks RCU enabled.
[    0.048403] 	Tracing variant of Tasks RCU enabled.
[    0.048404] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.048404] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.048409] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.048410] RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.048411] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.051089] NR_IRQS: 524544, nr_irqs: 456, preallocated irqs: 16
[    0.051279] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.051322] calling  con_init+0x0/0x270 @ 0
[    0.051332] Console: colour dummy device 80x25
[    0.051334] initcall con_init+0x0/0x270 returned 0 after 0 usecs
[    0.051336] calling  hvc_console_init+0x0/0x30 @ 0
[    0.051337] initcall hvc_console_init+0x0/0x30 returned 0 after 0 usecs
[    0.051338] calling  xen_cons_init+0x0/0x60 @ 0
[    0.051341] initcall xen_cons_init+0x0/0x60 returned 0 after 0 usecs
[    0.051343] calling  univ8250_console_init+0x0/0x40 @ 0
[    0.051380] printk: legacy console [ttyS0] enabled
[    0.133408] initcall univ8250_console_init+0x0/0x40 returned 0 after 0 usecs
[    0.133983] calling  kgdboc_earlycon_late_init+0x0/0x40 @ 0
[    0.134444] initcall kgdboc_earlycon_late_init+0x0/0x40 returned 0 after 0 usecs
[    0.135068] ACPI: Core revision 20240827
[    0.135448] APIC: Switch to symmetric I/O mode setup
[    0.136048] x2apic enabled
[    0.136554] APIC: Switched APIC routing to: physical x2apic
[    0.137019] kvm-guest: APIC: send_IPI_mask() replaced with kvm_send_ipi_mask()
[    0.137611] kvm-guest: APIC: send_IPI_mask_allbutself() replaced with kvm_send_ipi_mask_allbutself()
[    0.138325] kvm-guest: setup PV IPIs
[    0.139332] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x28680fa287f, max_idle_ns: 440795281151 ns
[    0.140181] Calibrating delay loop (skipped) preset value.. 5606.40 BogoMIPS (lpj=11212800)
[    0.140988] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.141606] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.142056] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.142557] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.143238] Spectre V2 : Spectre BHI mitigation: SW BHB clearing on syscall and VM exit
[    0.143789] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[    0.144177] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[    0.144177] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.144177] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.144177] GDS: Unknown: Dependent on hypervisor status
[    0.144177] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.144177] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.144177] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.144177] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    0.144177] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.144177] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    0.144177] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.144177] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.144177] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
[    0.144177] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    0.144177] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    0.144177] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    0.144177] x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
[    0.144177] Freeing SMP alternatives memory: 44K
[    0.144177] pid_max: default: 32768 minimum: 301
[    0.144177] LSM: initializing lsm=capability,ima,evm
[    0.144177] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.144177] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.144177] smpboot: CPU0: 11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz (family: 0x6, model: 0x8c, stepping: 0x1)
[    0.144177] calling  init_hw_perf_events+0x0/0x720 @ 1
[    0.144177] Performance Events: Icelake events, full-width counters, Intel PMU driver.
[    0.144177] ... version:                2
[    0.144177] ... bit width:              48
[    0.144177] ... generic registers:      8
[    0.144177] ... value mask:             0000ffffffffffff
[    0.144177] ... max period:             00007fffffffffff
[    0.144177] ... fixed-purpose events:   3
[    0.144177] ... event mask:             00000007000000ff
[    0.144239] initcall init_hw_perf_events+0x0/0x720 returned 0 after 4000 usecs
[    0.144762] calling  mc_debug_enable+0x0/0xa0 @ 1
[    0.145133] initcall mc_debug_enable+0x0/0xa0 returned 0 after 0 usecs
[    0.145609] calling  do_init_real_mode+0x0/0x20 @ 1
[    0.145987] initcall do_init_real_mode+0x0/0x20 returned 0 after 0 usecs
[    0.146470] calling  init_sigframe_size+0x0/0x50 @ 1
[    0.146847] signal: max sigframe size: 3632
[    0.147171] initcall init_sigframe_size+0x0/0x50 returned 0 after 0 usecs
[    0.147678] calling  trace_init_perf_perm_irq_work_exit+0x0/0x20 @ 1
[    0.148143] initcall trace_init_perf_perm_irq_work_exit+0x0/0x20 returned 0 after 0 usecs
[    0.148180] calling  cache_ap_register+0x0/0x70 @ 1
[    0.148555] initcall cache_ap_register+0x0/0x70 returned 0 after 0 usecs
[    0.149040] calling  bp_init_aperfmperf+0x0/0x2c0 @ 1
[    0.149416] initcall bp_init_aperfmperf+0x0/0x2c0 returned 0 after 0 usecs
[    0.149910] calling  save_builtin_microcode+0x0/0xe0 @ 1
[    0.150303] initcall save_builtin_microcode+0x0/0xe0 returned 0 after 0 usecs
[    0.150912] calling  save_microcode_in_initrd+0x0/0x110 @ 1
[    0.151332] initcall save_microcode_in_initrd+0x0/0x110 returned 0 after 0 usecs
[    0.151860] calling  register_nmi_cpu_backtrace_handler+0x0/0x30 @ 1
[    0.152180] initcall register_nmi_cpu_backtrace_handler+0x0/0x30 returned 0 after 0 usecs
[    0.152863] calling  numachip_system_init+0x0/0x80 @ 1
[    0.153296] initcall numachip_system_init+0x0/0x80 returned 0 after 0 usecs
[    0.153793] calling  kvm_setup_vsyscall_timeinfo+0x0/0x190 @ 1
[    0.154278] initcall kvm_setup_vsyscall_timeinfo+0x0/0x190 returned 0 after 0 usecs
[    0.154922] calling  spawn_ksoftirqd+0x0/0x60 @ 1
[    0.156182] initcall spawn_ksoftirqd+0x0/0x60 returned 0 after 4000 usecs
[    0.156684] calling  init_signal_sysctls+0x0/0x40 @ 1
[    0.157073] initcall init_signal_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.157568] calling  init_umh_sysctls+0x0/0x40 @ 1
[    0.157931] initcall init_umh_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.158403] calling  kthreads_init+0x0/0x40 @ 1
[    0.158748] initcall kthreads_init+0x0/0x40 returned 0 after 0 usecs
[    0.159208] calling  migration_init+0x0/0x40 @ 1
[    0.159568] initcall migration_init+0x0/0x40 returned 0 after 0 usecs
[    0.160036] calling  printk_set_kthreads_ready+0x0/0x50 @ 1
[    0.160181] initcall printk_set_kthreads_ready+0x0/0x50 returned 0 after 0 usecs
[    0.160709] calling  srcu_bootup_announce+0x0/0x90 @ 1
[    0.161093] rcu: Hierarchical SRCU implementation.
[    0.161519] rcu: 	Max phase no-delay instances is 1000.
[    0.161987] initcall srcu_bootup_announce+0x0/0x90 returned 0 after 0 usecs
[    0.162583] calling  rcu_spawn_gp_kthread+0x0/0x260 @ 1
[    0.164193] initcall rcu_spawn_gp_kthread+0x0/0x260 returned 0 after 4000 usecs
[    0.164799] calling  check_cpu_stall_init+0x0/0x30 @ 1
[    0.165251] initcall check_cpu_stall_init+0x0/0x30 returned 0 after 0 usecs
[    0.165824] calling  rcu_sysrq_init+0x0/0x40 @ 1
[    0.166171] initcall rcu_sysrq_init+0x0/0x40 returned 0 after 0 usecs
[    0.166641] calling  trace_init_flags_sys_enter+0x0/0x20 @ 1
[    0.167060] initcall trace_init_flags_sys_enter+0x0/0x20 returned 0 after 0 usecs
[    0.167596] calling  trace_init_flags_sys_exit+0x0/0x20 @ 1
[    0.168014] initcall trace_init_flags_sys_exit+0x0/0x20 returned 0 after 0 usecs
[    0.168182] calling  tmigr_init+0x0/0x190 @ 1
[    0.168516] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[    0.169090] initcall tmigr_init+0x0/0x190 returned 0 after 0 usecs
[    0.169542] calling  cpu_stop_init+0x0/0xa0 @ 1
[    0.172184] initcall cpu_stop_init+0x0/0xa0 returned 0 after 4000 usecs
[    0.172691] calling  init_kprobes+0x0/0x1e0 @ 1
[    0.173141] initcall init_kprobes+0x0/0x1e0 returned 0 after 0 usecs
[    0.173594] calling  init_trace_printk+0x0/0x20 @ 1
[    0.173963] initcall init_trace_printk+0x0/0x20 returned 0 after 0 usecs
[    0.174447] calling  event_trace_enable_again+0x0/0x60 @ 1
[    0.174852] initcall event_trace_enable_again+0x0/0x60 returned 0 after 0 usecs
[    0.175383] calling  irq_work_init_threads+0x0/0x10 @ 1
[    0.175778] initcall irq_work_init_threads+0x0/0x10 returned 0 after 0 usecs
[    0.176180] calling  static_call_init+0x0/0xe0 @ 1
[    0.176544] initcall static_call_init+0x0/0xe0 returned 0 after 0 usecs
[    0.177021] calling  jump_label_init_module+0x0/0x20 @ 1
[    0.177415] initcall jump_label_init_module+0x0/0x20 returned 0 after 0 usecs
[    0.177930] calling  init_zero_pfn+0x0/0x50 @ 1
[    0.178271] initcall init_zero_pfn+0x0/0x50 returned 0 after 0 usecs
[    0.178727] calling  init_fs_inode_sysctls+0x0/0x40 @ 1
[    0.179118] initcall init_fs_inode_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.179625] calling  init_fs_locks_sysctls+0x0/0x40 @ 1
[    0.180011] initcall init_fs_locks_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.180178] calling  init_fs_sysctls+0x0/0x40 @ 1
[    0.180596] initcall init_fs_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.181128] calling  init_security_keys_sysctls+0x0/0x40 @ 1
[    0.181553] initcall init_security_keys_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.182093] calling  dynamic_debug_init+0x0/0x2b0 @ 1
[    0.182533] initcall dynamic_debug_init+0x0/0x2b0 returned 0 after 0 usecs
[    0.183036] calling  unpopulated_init+0x0/0x70 @ 1
[    0.183398] initcall unpopulated_init+0x0/0x70 returned -19 after 0 usecs
[    0.183892] calling  efi_memreserve_root_init+0x0/0x40 @ 1
[    0.184180] initcall efi_memreserve_root_init+0x0/0x40 returned 0 after 0 usecs
[    0.184806] calling  efi_earlycon_remap_fb+0x0/0x70 @ 1
[    0.185270] initcall efi_earlycon_remap_fb+0x0/0x70 returned 0 after 0 usecs
[    0.185873] calling  idle_inject_init+0x0/0x20 @ 1
[    0.188182] initcall idle_inject_init+0x0/0x20 returned 0 after 4000 usecs
[    0.188853] smp: Bringing up secondary CPUs ...
[    0.192256] smpboot: x86: Booting SMP configuration:
[    0.192711] .... node  #0, CPUs:      #1 #2 #3
[    0.204215] smp: Brought up 1 node, 4 CPUs
[    0.205018] smpboot: Total of 4 processors activated (22425.60 BogoMIPS)
[    0.205894] Memory: 7856812K/8388084K available (17883K kernel code, 5975K rwdata, 7752K rodata, 4692K init, 5544K bss, 524120K reserved, 0K cma-reserved)
[    0.205894] devtmpfs: initialized
[    0.205894] x86/mm: Memory block size: 128MB
[    0.208790] calling  setup_split_lock_delayed_work+0x0/0xa0 @ 1
[    0.209247] initcall setup_split_lock_delayed_work+0x0/0xa0 returned 0 after 0 usecs
[    0.209803] calling  bpf_jit_charge_init+0x0/0x50 @ 1
[    0.210183] initcall bpf_jit_charge_init+0x0/0x50 returned 0 after 0 usecs
[    0.210681] calling  ipc_ns_init+0x0/0x50 @ 1
[    0.211023] initcall ipc_ns_init+0x0/0x50 returned 0 after 0 usecs
[    0.211473] calling  init_mmap_min_addr+0x0/0x50 @ 1
[    0.211847] initcall init_mmap_min_addr+0x0/0x50 returned 0 after 0 usecs
[    0.212182] calling  pci_realloc_setup_params+0x0/0x90 @ 1
[    0.212595] initcall pci_realloc_setup_params+0x0/0x90 returned 0 after 0 usecs
[    0.213123] calling  inet_frag_wq_init+0x0/0x50 @ 1
[    0.213516] initcall inet_frag_wq_init+0x0/0x50 returned 0 after 0 usecs
[    0.213516] calling  xen_pvh_gnttab_setup+0x0/0x50 @ 1
[    0.213516] initcall xen_pvh_gnttab_setup+0x0/0x50 returned -19 after 0 usecs
[    0.213824] calling  e820__register_nvs_regions+0x0/0x70 @ 1
[    0.214327] initcall e820__register_nvs_regions+0x0/0x70 returned 0 after 0 usecs
[    0.216180] calling  cpufreq_register_tsc_scaling+0x0/0x40 @ 1
[    0.216696] initcall cpufreq_register_tsc_scaling+0x0/0x40 returned 0 after 0 usecs
[    0.217345] calling  reboot_init+0x0/0x60 @ 1
[    0.217743] initcall reboot_init+0x0/0x60 returned 0 after 0 usecs
[    0.218280] calling  init_lapic_sysfs+0x0/0x40 @ 1
[    0.218710] initcall init_lapic_sysfs+0x0/0x40 returned 0 after 0 usecs
[    0.219278] calling  alloc_frozen_cpus+0x0/0x30 @ 1
[    0.219711] initcall alloc_frozen_cpus+0x0/0x30 returned 0 after 0 usecs
[    0.220180] calling  cpu_hotplug_pm_sync_init+0x0/0x30 @ 1
[    0.220613] initcall cpu_hotplug_pm_sync_init+0x0/0x30 returned 0 after 0 usecs
[    0.221132] calling  wq_sysfs_init+0x0/0x30 @ 1
[    0.221491] initcall wq_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[    0.221954] calling  ksysfs_init+0x0/0xd0 @ 1
[    0.222290] initcall ksysfs_init+0x0/0xd0 returned 0 after 0 usecs
[    0.222741] calling  schedutil_gov_init+0x0/0x20 @ 1
[    0.223121] initcall schedutil_gov_init+0x0/0x20 returned 0 after 0 usecs
[    0.223957] calling  pm_init+0x0/0x90 @ 1
[    0.224193] initcall pm_init+0x0/0x90 returned 0 after 0 usecs
[    0.224632] calling  pm_disk_init+0x0/0x30 @ 1
[    0.224972] initcall pm_disk_init+0x0/0x30 returned 0 after 0 usecs
[    0.225427] calling  swsusp_header_init+0x0/0x40 @ 1
[    0.225804] initcall swsusp_header_init+0x0/0x40 returned 0 after 0 usecs
[    0.226295] calling  rcu_set_runtime_mode+0x0/0x30 @ 1
[    0.226680] initcall rcu_set_runtime_mode+0x0/0x30 returned 0 after 0 usecs
[    0.227190] calling  rcu_init_tasks_generic+0x0/0x100 @ 1
[    0.227615] initcall rcu_init_tasks_generic+0x0/0x100 returned 0 after 0 usecs
[    0.228182] calling  init_jiffies_clocksource+0x0/0x30 @ 1
[    0.228682] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.229438] initcall init_jiffies_clocksource+0x0/0x30 returned 0 after 0 usecs
[    0.229972] calling  posixtimer_init+0x0/0xd0 @ 1
[    0.230338] posixtimers hash table entries: 2048 (order: 3, 32768 bytes, linear)
[    0.230879] initcall posixtimer_init+0x0/0xd0 returned 0 after 0 usecs
[    0.231396] calling  futex_init+0x0/0xe0 @ 1
[    0.231749] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.232185] initcall futex_init+0x0/0xe0 returned 0 after 4000 usecs
[    0.232662] calling  cgroup_wq_init+0x0/0x40 @ 1
[    0.233027] initcall cgroup_wq_init+0x0/0x40 returned 0 after 0 usecs
[    0.233510] calling  cgroup1_wq_init+0x0/0x40 @ 1
[    0.233923] initcall cgroup1_wq_init+0x0/0x40 returned 0 after 0 usecs
[    0.234406] calling  ftrace_mod_cmd_init+0x0/0x20 @ 1
[    0.234793] initcall ftrace_mod_cmd_init+0x0/0x20 returned 0 after 0 usecs
[    0.235306] calling  init_wakeup_tracer+0x0/0x40 @ 1
[    0.235703] initcall init_wakeup_tracer+0x0/0x40 returned 0 after 0 usecs
[    0.236179] calling  init_graph_trace+0x0/0x70 @ 1
[    0.236552] initcall init_graph_trace+0x0/0x70 returned 0 after 0 usecs
[    0.237134] calling  trace_events_eprobe_init_early+0x0/0x40 @ 1
[    0.237678] initcall trace_events_eprobe_init_early+0x0/0x40 returned 0 after 0 usecs
[    0.238362] calling  trace_events_synth_init_early+0x0/0x40 @ 1
[    0.238894] initcall trace_events_synth_init_early+0x0/0x40 returned 0 after 0 usecs
[    0.239543] calling  init_kprobe_trace_early+0x0/0x40 @ 1
[    0.239992] initcall init_kprobe_trace_early+0x0/0x40 returned 0 after 0 usecs
[    0.240179] calling  bpf_offload_init+0x0/0x30 @ 1
[    0.240570] initcall bpf_offload_init+0x0/0x30 returned 0 after 0 usecs
[    0.241079] calling  cgroup_bpf_wq_init+0x0/0x40 @ 1
[    0.241473] initcall cgroup_bpf_wq_init+0x0/0x40 returned 0 after 0 usecs
[    0.241982] calling  init_events_core_sysctls+0x0/0x40 @ 1
[    0.242410] initcall init_events_core_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.242961] calling  init_callchain_sysctls+0x0/0x40 @ 1
[    0.243383] initcall init_callchain_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.243911] calling  memory_failure_init+0x0/0xd0 @ 1
[    0.244182] initcall memory_failure_init+0x0/0xd0 returned 0 after 0 usecs
[    0.244700] calling  cma_init_reserved_areas+0x0/0x280 @ 1
[    0.245122] initcall cma_init_reserved_areas+0x0/0x280 returned 0 after 0 usecs
[    0.245665] calling  fsnotify_init+0x0/0xa0 @ 1
[    0.246034] initcall fsnotify_init+0x0/0xa0 returned 0 after 0 usecs
[    0.246510] calling  filelock_init+0x0/0x160 @ 1
[    0.246880] initcall filelock_init+0x0/0x160 returned 0 after 0 usecs
[    0.247373] calling  init_script_binfmt+0x0/0x30 @ 1
[    0.247754] initcall init_script_binfmt+0x0/0x30 returned 0 after 0 usecs
[    0.248179] calling  init_elf_binfmt+0x0/0x30 @ 1
[    0.248555] initcall init_elf_binfmt+0x0/0x30 returned 0 after 0 usecs
[    0.249038] calling  init_compat_elf_binfmt+0x0/0x30 @ 1
[    0.249445] initcall init_compat_elf_binfmt+0x0/0x30 returned 0 after 0 usecs
[    0.249976] calling  configfs_init+0x0/0x100 @ 1
[    0.250345] initcall configfs_init+0x0/0x100 returned 0 after 0 usecs
[    0.250838] calling  debugfs_init+0x0/0x110 @ 1
[    0.251200] initcall debugfs_init+0x0/0x110 returned 0 after 0 usecs
[    0.251678] calling  tracefs_init+0x0/0xc0 @ 1
[    0.252031] initcall tracefs_init+0x0/0xc0 returned 0 after 0 usecs
[    0.252181] calling  securityfs_init+0x0/0x90 @ 1
[    0.252577] initcall securityfs_init+0x0/0x90 returned 0 after 0 usecs
[    0.253075] calling  pinctrl_init+0x0/0xd0 @ 1
[    0.253432] pinctrl core: initialized pinctrl subsystem
[    0.253852] initcall pinctrl_init+0x0/0xd0 returned 0 after 0 usecs
[    0.254328] calling  gpiolib_dev_init+0x0/0x170 @ 1
[    0.254785] initcall gpiolib_dev_init+0x0/0x170 returned 0 after 0 usecs
[    0.255381] calling  virtio_init+0x0/0x40 @ 1
[    0.255795] initcall virtio_init+0x0/0x40 returned 0 after 0 usecs
[    0.256179] calling  regulator_init+0x0/0xc0 @ 1
[    0.256581] probe of reg-dummy returned 0 after 0 usecs
[    0.256983] initcall regulator_init+0x0/0xc0 returned 0 after 0 usecs
[    0.257463] calling  iommu_init+0x0/0x40 @ 1
[    0.257824] initcall iommu_init+0x0/0x40 returned 0 after 0 usecs
[    0.258282] calling  component_debug_init+0x0/0x30 @ 1
[    0.258698] initcall component_debug_init+0x0/0x30 returned 0 after 0 usecs
[    0.259236] calling  early_resume_init+0x0/0xe0 @ 1
[    0.259720] PM: RTC time: 07:58:43, date: 2025-06-23
[    0.260179] initcall early_resume_init+0x0/0xe0 returned 0 after 4000 usecs
[    0.260795] calling  opp_debug_init+0x0/0x30 @ 1
[    0.261229] initcall opp_debug_init+0x0/0x30 returned 0 after 0 usecs
[    0.261806] calling  cpufreq_core_init+0x0/0x110 @ 1
[    0.262209] initcall cpufreq_core_init+0x0/0x110 returned 0 after 0 usecs
[    0.262715] calling  cpufreq_gov_performance_init+0x0/0x20 @ 1
[    0.263160] initcall cpufreq_gov_performance_init+0x0/0x20 returned 0 after 0 usecs
[    0.263814] calling  cpufreq_gov_powersave_init+0x0/0x20 @ 1
[    0.264180] initcall cpufreq_gov_powersave_init+0x0/0x20 returned 0 after 0 usecs
[    0.264833] calling  cpufreq_gov_userspace_init+0x0/0x20 @ 1
[    0.265341] initcall cpufreq_gov_userspace_init+0x0/0x20 returned 0 after 0 usecs
[    0.265995] calling  CPU_FREQ_GOV_ONDEMAND_init+0x0/0x20 @ 1
[    0.266511] initcall CPU_FREQ_GOV_ONDEMAND_init+0x0/0x20 returned 0 after 0 usecs
[    0.267165] calling  CPU_FREQ_GOV_CONSERVATIVE_init+0x0/0x20 @ 1
[    0.267697] initcall CPU_FREQ_GOV_CONSERVATIVE_init+0x0/0x20 returned 0 after 0 usecs
[    0.268178] calling  cpuidle_init+0x0/0x30 @ 1
[    0.268569] initcall cpuidle_init+0x0/0x30 returned 0 after 0 usecs
[    0.269128] calling  capsule_reboot_register+0x0/0x20 @ 1
[    0.269620] initcall capsule_reboot_register+0x0/0x20 returned 0 after 0 usecs
[    0.270247] calling  unaccepted_memory_init_kdump+0x0/0x30 @ 1
[    0.270774] initcall unaccepted_memory_init_kdump+0x0/0x30 returned 0 after 0 usecs
[    0.271449] calling  sock_init+0x0/0x100 @ 1
[    0.272221] initcall sock_init+0x0/0x100 returned 0 after 4000 usecs
[    0.272803] calling  net_inuse_init+0x0/0x40 @ 1
[    0.273179] initcall net_inuse_init+0x0/0x40 returned 0 after 0 usecs
[    0.273669] calling  sock_struct_check+0x0/0x20 @ 1
[    0.274053] initcall sock_struct_check+0x0/0x20 returned 0 after 0 usecs
[    0.274558] calling  init_default_flow_dissectors+0x0/0x60 @ 1
[    0.275002] initcall init_default_flow_dissectors+0x0/0x60 returned 0 after 0 usecs
[    0.275623] calling  netlink_proto_init+0x0/0x170 @ 1
[    0.276065] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.276190] initcall netlink_proto_init+0x0/0x170 returned 0 after 4000 usecs
[    0.276821] calling  genl_init+0x0/0x50 @ 1
[    0.277182] initcall genl_init+0x0/0x50 returned 0 after 0 usecs
[    0.277651] calling  bsp_pm_check_init+0x0/0x30 @ 1
[    0.278029] initcall bsp_pm_check_init+0x0/0x30 returned 0 after 0 usecs
[    0.278525] calling  __gnttab_init+0x0/0x50 @ 1
[    0.278937] initcall __gnttab_init+0x0/0x50 returned -19 after 0 usecs
[    0.279568] calling  irq_sysfs_init+0x0/0xc0 @ 1
[    0.280045] initcall irq_sysfs_init+0x0/0xc0 returned 0 after 0 usecs
[    0.280179] calling  dma_atomic_pool_init+0x0/0x170 @ 1
[    0.280905] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[    0.281440] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.282015] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.282603] initcall dma_atomic_pool_init+0x0/0x170 returned 0 after 0 usecs
[    0.283123] calling  audit_init+0x0/0x1d0 @ 1
[    0.283465] initcall audit_init+0x0/0x1d0 returned 0 after 0 usecs
[    0.283927] calling  bdi_class_init+0x0/0x50 @ 1
[    0.284184] initcall bdi_class_init+0x0/0x50 returned 0 after 0 usecs
[    0.284721] calling  mm_sysfs_init+0x0/0x40 @ 1
[    0.285152] initcall mm_sysfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.285724] calling  init_per_zone_wmark_min+0x0/0x40 @ 1
[    0.286226] initcall init_per_zone_wmark_min+0x0/0x40 returned 0 after 0 usecs
[    0.286868] calling  gpiolib_sysfs_init+0x0/0x40 @ 1
[    0.287329] initcall gpiolib_sysfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.287931] calling  acpi_gpio_setup_params+0x0/0xe0 @ 1
[    0.288181] initcall acpi_gpio_setup_params+0x0/0xe0 returned 0 after 0 usecs
[    0.288711] calling  pcibus_class_init+0x0/0x20 @ 1
[    0.289090] initcall pcibus_class_init+0x0/0x20 returned 0 after 0 usecs
[    0.289580] calling  pci_driver_init+0x0/0x40 @ 1
[    0.289950] initcall pci_driver_init+0x0/0x40 returned 0 after 0 usecs
[    0.290432] calling  rio_bus_init+0x0/0x50 @ 1
[    0.290782] initcall rio_bus_init+0x0/0x50 returned 0 after 0 usecs
[    0.291248] calling  backlight_class_init+0x0/0x80 @ 1
[    0.291647] initcall backlight_class_init+0x0/0x80 returned 0 after 0 usecs
[    0.292163] calling  xenbus_init+0x0/0x680 @ 1
[    0.292179] initcall xenbus_init+0x0/0x680 returned -19 after 0 usecs
[    0.292672] calling  tty_class_init+0x0/0x20 @ 1
[    0.293034] initcall tty_class_init+0x0/0x20 returned 0 after 0 usecs
[    0.293517] calling  vtconsole_class_init+0x0/0xc0 @ 1
[    0.293925] initcall vtconsole_class_init+0x0/0xc0 returned 0 after 0 usecs
[    0.294437] calling  serdev_init+0x0/0x30 @ 1
[    0.294786] initcall serdev_init+0x0/0x30 returned 0 after 0 usecs
[    0.295245] calling  iommu_dev_init+0x0/0x20 @ 1
[    0.295604] initcall iommu_dev_init+0x0/0x20 returned 0 after 0 usecs
[    0.296083] calling  mipi_dsi_bus_init+0x0/0x20 @ 1
[    0.296182] initcall mipi_dsi_bus_init+0x0/0x20 returned 0 after 0 usecs
[    0.296678] calling  devlink_class_init+0x0/0x50 @ 1
[    0.297058] initcall devlink_class_init+0x0/0x50 returned 0 after 0 usecs
[    0.297554] calling  software_node_init+0x0/0x40 @ 1
[    0.297943] initcall software_node_init+0x0/0x40 returned 0 after 0 usecs
[    0.298443] calling  wakeup_sources_debugfs_init+0x0/0x40 @ 1
[    0.298875] initcall wakeup_sources_debugfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.299419] calling  wakeup_sources_sysfs_init+0x0/0x40 @ 1
[    0.299846] initcall wakeup_sources_sysfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.300180] calling  isa_bus_init+0x0/0x50 @ 1
[    0.300534] initcall isa_bus_init+0x0/0x50 returned 0 after 0 usecs
[    0.301001] calling  regmap_initcall+0x0/0x20 @ 1
[    0.301365] initcall regmap_initcall+0x0/0x20 returned 0 after 0 usecs
[    0.301846] calling  sram_init+0x0/0x30 @ 1
[    0.302177] initcall sram_init+0x0/0x30 returned 0 after 0 usecs
[    0.302623] calling  spi_init+0x0/0xd0 @ 1
[    0.302950] initcall spi_init+0x0/0xd0 returned 0 after 0 usecs
[    0.303397] calling  i2c_init+0x0/0xc0 @ 1
[    0.303730] initcall i2c_init+0x0/0xc0 returned 0 after 0 usecs
[    0.304179] calling  thermal_init+0x0/0x180 @ 1
[    0.304547] thermal_sys: Registered thermal governor 'fair_share'
[    0.304548] thermal_sys: Registered thermal governor 'bang_bang'
[    0.305004] thermal_sys: Registered thermal governor 'step_wise'
[    0.305454] thermal_sys: Registered thermal governor 'user_space'
[    0.305906] initcall thermal_init+0x0/0x180 returned 0 after 0 usecs
[    0.306824] calling  init_ladder+0x0/0x40 @ 1
[    0.307176] cpuidle: using governor ladder
[    0.307502] initcall init_ladder+0x0/0x40 returned 0 after 0 usecs
[    0.307965] calling  init_menu+0x0/0x20 @ 1
[    0.308181] cpuidle: using governor menu
[    0.308493] initcall init_menu+0x0/0x20 returned 0 after 0 usecs
[    0.309213] calling  teo_governor_init+0x0/0x20 @ 1
[    0.309593] initcall teo_governor_init+0x0/0x20 returned 0 after 0 usecs
[    0.310084] calling  init_haltpoll+0x0/0x40 @ 1
[    0.310441] initcall init_haltpoll+0x0/0x40 returned 0 after 0 usecs
[    0.310916] calling  pcc_init+0x0/0xb0 @ 1
[    0.311245] initcall pcc_init+0x0/0xb0 returned -19 after 0 usecs
[    0.311709] calling  amd_postcore_init+0x0/0x130 @ 1
[    0.312097] initcall amd_postcore_init+0x0/0x130 returned 0 after 0 usecs
[    0.312179] calling  kobject_uevent_init+0x0/0x20 @ 1
[    0.312567] initcall kobject_uevent_init+0x0/0x20 returned 0 after 0 usecs
[    0.313117] calling  report_snp_info+0x0/0xe0 @ 1
[    0.313481] initcall report_snp_info+0x0/0xe0 returned 0 after 0 usecs
[    0.313964] calling  sev_sysfs_init+0x0/0xa0 @ 1
[    0.314321] initcall sev_sysfs_init+0x0/0xa0 returned -19 after 0 usecs
[    0.314811] calling  bts_init+0x0/0x100 @ 1
[    0.315139] initcall bts_init+0x0/0x100 returned -19 after 0 usecs
[    0.315610] calling  pt_init+0x0/0x3b0 @ 1
[    0.315933] initcall pt_init+0x0/0x3b0 returned -19 after 0 usecs
[    0.316179] calling  init_x86_sysctl+0x0/0x40 @ 1
[    0.316546] initcall init_x86_sysctl+0x0/0x40 returned 0 after 0 usecs
[    0.317026] calling  boot_params_ksysfs_init+0x0/0x320 @ 1
[    0.317442] initcall boot_params_ksysfs_init+0x0/0x320 returned 0 after 0 usecs
[    0.317973] calling  sbf_init+0x0/0xf0 @ 1
[    0.318294] initcall sbf_init+0x0/0xf0 returned 0 after 0 usecs
[    0.318738] calling  arch_kdebugfs_init+0x0/0x30 @ 1
[    0.319125] initcall arch_kdebugfs_init+0x0/0x30 returned 0 after 0 usecs
[    0.319710] calling  xfd_update_static_branch+0x0/0x40 @ 1
[    0.320179] initcall xfd_update_static_branch+0x0/0x40 returned 0 after 0 usecs
[    0.320827] calling  mtrr_if_init+0x0/0x70 @ 1
[    0.321247] initcall mtrr_if_init+0x0/0x70 returned 0 after 0 usecs
[    0.321810] calling  activate_jump_labels+0x0/0x50 @ 1
[    0.322284] initcall activate_jump_labels+0x0/0x50 returned 0 after 0 usecs
[    0.322903] calling  init_s4_sigcheck+0x0/0x40 @ 1
[    0.323283] initcall init_s4_sigcheck+0x0/0x40 returned 0 after 0 usecs
[    0.323779] calling  ffh_cstate_init+0x0/0x50 @ 1
[    0.324145] initcall ffh_cstate_init+0x0/0x50 returned 0 after 0 usecs
[    0.324179] calling  kvm_alloc_cpumask+0x0/0xd0 @ 1
[    0.324560] initcall kvm_alloc_cpumask+0x0/0xd0 returned 0 after 0 usecs
[    0.325055] calling  activate_jump_labels+0x0/0x50 @ 1
[    0.325495] initcall activate_jump_labels+0x0/0x50 returned 0 after 0 usecs
[    0.326017] calling  gigantic_pages_init+0x0/0x40 @ 1
[    0.326410] initcall gigantic_pages_init+0x0/0x40 returned 0 after 0 usecs
[    0.326929] calling  uv_rtc_setup_clock+0x0/0x330 @ 1
[    0.327316] initcall uv_rtc_setup_clock+0x0/0x330 returned -19 after 0 usecs
[    0.327835] calling  kcmp_cookies_init+0x0/0x50 @ 1
[    0.328179] initcall kcmp_cookies_init+0x0/0x50 returned 0 after 0 usecs
[    0.328676] calling  cryptomgr_init+0x0/0x20 @ 1
[    0.329036] initcall cryptomgr_init+0x0/0x20 returned 0 after 0 usecs
[    0.329515] calling  crc32_x86_init+0x0/0x100 @ 1
[    0.329932] initcall crc32_x86_init+0x0/0x100 returned 0 after 0 usecs
[    0.330425] calling  crc64_x86_init+0x0/0x170 @ 1
[    0.330882] initcall crc64_x86_init+0x0/0x170 returned 0 after 0 usecs
[    0.331472] calling  crc_t10dif_x86_init+0x0/0xd0 @ 1
[    0.332038] initcall crc_t10dif_x86_init+0x0/0xd0 returned 0 after 0 usecs
[    0.332179] calling  acpi_pci_init+0x0/0x70 @ 1
[    0.332605] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.333100] initcall acpi_pci_init+0x0/0x70 returned 0 after 0 usecs
[    0.333570] calling  dma_channel_table_init+0x0/0x110 @ 1
[    0.333987] initcall dma_channel_table_init+0x0/0x110 returned 0 after 0 usecs
[    0.334601] calling  dma_bus_init+0x0/0x160 @ 1
[    0.335046] initcall dma_bus_init+0x0/0x160 returned 0 after 0 usecs
[    0.335618] calling  register_xen_pci_notifier+0x0/0x40 @ 1
[    0.336129] initcall register_xen_pci_notifier+0x0/0x40 returned 0 after 0 usecs
[    0.336179] calling  xen_pcpu_init+0x0/0xf0 @ 1
[    0.336604] initcall xen_pcpu_init+0x0/0xf0 returned -19 after 0 usecs
[    0.337346] calling  serial_base_init+0x0/0x70 @ 1
[    0.337767] initcall serial_base_init+0x0/0x70 returned 0 after 0 usecs
[    0.338353] calling  iommu_dma_init+0x0/0x30 @ 1
[    0.338791] initcall iommu_dma_init+0x0/0x30 returned 0 after 0 usecs
[    0.339371] calling  dmi_id_init+0x0/0x400 @ 1
[    0.339812] initcall dmi_id_init+0x0/0x400 returned 0 after 0 usecs
[    0.340180] calling  numachip_timer_init+0x0/0x70 @ 1
[    0.340648] initcall numachip_timer_init+0x0/0x70 returned -19 after 0 usecs
[    0.341272] calling  ts_dmi_init+0x0/0xf0 @ 1
[    0.341688] initcall ts_dmi_init+0x0/0xf0 returned 0 after 0 usecs
[    0.342206] calling  pci_arch_init+0x0/0xa0 @ 1
[    0.342591] PCI: Using configuration type 1 for base access
[    0.343019] initcall pci_arch_init+0x0/0xa0 returned 0 after 0 usecs
[    0.343536] calling  init_vdso_image_64+0x0/0x20 @ 1
[    0.343927] initcall init_vdso_image_64+0x0/0x20 returned 0 after 0 usecs
[    0.344179] calling  init_vdso_image_32+0x0/0x20 @ 1
[    0.344573] initcall init_vdso_image_32+0x0/0x20 returned 0 after 0 usecs
[    0.345075] calling  fixup_ht_bug+0x0/0xe0 @ 1
[    0.345423] initcall fixup_ht_bug+0x0/0xe0 returned 0 after 0 usecs
[    0.345889] calling  mtrr_init_finalize+0x0/0x40 @ 1
[    0.346274] initcall mtrr_init_finalize+0x0/0x40 returned 0 after 0 usecs
[    0.346774] calling  blake2s_mod_init+0x0/0x90 @ 1
[    0.347267] initcall blake2s_mod_init+0x0/0x90 returned 0 after 0 usecs
[    0.347828] calling  uid_cache_init+0x0/0x110 @ 1
[    0.348183] initcall uid_cache_init+0x0/0x110 returned 0 after 0 usecs
[    0.348764] calling  pid_namespace_sysctl_init+0x0/0x30 @ 1
[    0.349311] initcall pid_namespace_sysctl_init+0x0/0x30 returned 0 after 0 usecs
[    0.349966] calling  param_sysfs_init+0x0/0x60 @ 1
[    0.350447] initcall param_sysfs_init+0x0/0x60 returned 0 after 0 usecs
[    0.350962] calling  user_namespace_sysctl_init+0x0/0xf0 @ 1
[    0.351485] initcall user_namespace_sysctl_init+0x0/0xf0 returned 0 after 0 usecs
[    0.352147] calling  proc_schedstat_init+0x0/0x40 @ 1
[    0.352182] initcall proc_schedstat_init+0x0/0x40 returned 0 after 0 usecs
[    0.352799] calling  pm_sysrq_init+0x0/0x30 @ 1
[    0.353232] initcall pm_sysrq_init+0x0/0x30 returned 0 after 0 usecs
[    0.353804] calling  create_proc_profile+0x0/0x60 @ 1
[    0.354273] initcall create_proc_profile+0x0/0x60 returned 0 after 0 usecs
[    0.354886] calling  crash_save_vmcoreinfo_init+0x0/0x6b0 @ 1
[    0.355430] initcall crash_save_vmcoreinfo_init+0x0/0x6b0 returned 0 after 0 usecs
[    0.356097] calling  crash_notes_memory_init+0x0/0x50 @ 1
[    0.356181] initcall crash_notes_memory_init+0x0/0x50 returned 0 after 0 usecs
[    0.356820] calling  crash_hotplug_init+0x0/0x50 @ 1
[    0.357277] initcall crash_hotplug_init+0x0/0x50 returned 66 after 0 usecs
[    0.357888] calling  cgroup_sysfs_init+0x0/0x30 @ 1
[    0.358340] initcall cgroup_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[    0.358934] calling  user_namespaces_init+0x0/0x90 @ 1
[    0.359410] initcall user_namespaces_init+0x0/0x90 returned 0 after 0 usecs
[    0.360026] calling  init_optprobes+0x0/0x50 @ 1
[    0.360179] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.360941] initcall init_optprobes+0x0/0x50 returned 0 after 0 usecs
[    0.361515] calling  hung_task_init+0x0/0x90 @ 1
[    0.361984] initcall hung_task_init+0x0/0x90 returned 0 after 0 usecs
[    0.361984] calling  ftrace_check_for_weak_functions+0x0/0x70 @ 1
[    0.361984] initcall ftrace_check_for_weak_functions+0x0/0x70 returned 0 after 0 usecs
[    0.362063] calling  trace_eval_init+0x0/0xc0 @ 1
[    0.364186] initcall trace_eval_init+0x0/0xc0 returned 0 after 0 usecs
[    0.365211] calling  send_signal_irq_work_init+0x0/0x70 @ 1
[    0.365801] initcall send_signal_irq_work_init+0x0/0x70 returned 0 after 0 usecs
[    0.366565] calling  dev_map_init+0x0/0x30 @ 1
[    0.367059] initcall dev_map_init+0x0/0x30 returned 0 after 0 usecs
[    0.367736] calling  netns_bpf_init+0x0/0x20 @ 1
[    0.368180] initcall netns_bpf_init+0x0/0x20 returned 0 after 0 usecs
[    0.368836] calling  oom_init+0x0/0x60 @ 1
[    0.369313] initcall oom_init+0x0/0x60 returned 0 after 0 usecs
[    0.369313] calling  init_user_buckets+0x0/0x40 @ 1
[    0.369380] initcall init_user_buckets+0x0/0x40 returned 0 after 0 usecs
[    0.370075] calling  init_vm_util_sysctls+0x0/0x40 @ 1
[    0.370636] initcall init_vm_util_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.372180] calling  default_bdi_init+0x0/0x40 @ 1
[    0.372712] initcall default_bdi_init+0x0/0x40 returned 0 after 0 usecs
[    0.372899] calling  cgwb_init+0x0/0x40 @ 1
[    0.373367] initcall cgwb_init+0x0/0x40 returned 0 after 0 usecs
[    0.374003] calling  percpu_enable_async+0x0/0x20 @ 1
[    0.374529] initcall percpu_enable_async+0x0/0x20 returned 0 after 0 usecs
[    0.375256] calling  kcompactd_init+0x0/0xa0 @ 1
[    0.376194] initcall kcompactd_init+0x0/0xa0 returned 0 after 0 usecs
[    0.376835] calling  init_user_reserve+0x0/0x50 @ 1
[    0.377351] initcall init_user_reserve+0x0/0x50 returned 0 after 0 usecs
[    0.378047] calling  init_admin_reserve+0x0/0x50 @ 1
[    0.378586] initcall init_admin_reserve+0x0/0x50 returned 0 after 0 usecs
[    0.379302] calling  init_reserve_notifier+0x0/0x40 @ 1
[    0.379853] initcall init_reserve_notifier+0x0/0x40 returned 0 after 0 usecs
[    0.380179] calling  swap_init_sysfs+0x0/0x90 @ 1
[    0.380684] initcall swap_init_sysfs+0x0/0x90 returned 0 after 0 usecs
[    0.381375] calling  swapfile_init+0x0/0xe0 @ 1
[    0.381879] initcall swapfile_init+0x0/0xe0 returned 0 after 0 usecs
[    0.382522] calling  hugetlb_init+0x0/0x610 @ 1
[    0.383026] HugeTLB: allocation took 0ms with hugepage_allocation_threads=1
[    0.383780] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.384179] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.384855] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.385356] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.385860] initcall hugetlb_init+0x0/0x610 returned 0 after 4000 usecs
[    0.386477] calling  ksm_init+0x0/0x260 @ 1
[    0.387043] initcall ksm_init+0x0/0x260 returned 0 after 0 usecs
[    0.387043] calling  memory_tier_init+0x0/0xe0 @ 1
[    0.388202] initcall memory_tier_init+0x0/0xe0 returned 0 after 0 usecs
[    0.388975] calling  numa_init_sysfs+0x0/0x90 @ 1
[    0.389550] initcall numa_init_sysfs+0x0/0x90 returned 0 after 0 usecs
[    0.390317] calling  hugepage_init+0x0/0x400 @ 1
[    0.390997] initcall hugepage_init+0x0/0x400 returned 0 after 0 usecs
[    0.390997] calling  mem_cgroup_init+0x0/0xb0 @ 1
[    0.392181] initcall mem_cgroup_init+0x0/0xb0 returned 0 after 0 usecs
[    0.392943] calling  mem_cgroup_swap_init+0x0/0x60 @ 1
[    0.394038] initcall mem_cgroup_swap_init+0x0/0x60 returned 0 after 0 usecs
[    0.394833] calling  page_idle_init+0x0/0x50 @ 1
[    0.395430] initcall page_idle_init+0x0/0x50 returned 0 after 0 usecs
[    0.396180] calling  init_msg_buckets+0x0/0x40 @ 1
[    0.396813] initcall init_msg_buckets+0x0/0x40 returned 0 after 0 usecs
[    0.397580] calling  seqiv_module_init+0x0/0x20 @ 1
[    0.398177] initcall seqiv_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.398954] calling  dh_init+0x0/0x60 @ 1
[    0.399463] initcall dh_init+0x0/0x60 returned 0 after 0 usecs
[    0.400155] calling  rsa_init+0x0/0x80 @ 1
[    0.400181] initcall rsa_init+0x0/0x80 returned 0 after 0 usecs
[    0.400886] calling  hmac_module_init+0x0/0x20 @ 1
[    0.401466] initcall hmac_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.402250] calling  crypto_null_mod_init+0x0/0x80 @ 1
[    0.402872] initcall crypto_null_mod_init+0x0/0x80 returned 0 after 0 usecs
[    0.403684] calling  md5_mod_init+0x0/0x20 @ 1
[    0.404181] initcall md5_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.404914] calling  sha1_generic_mod_init+0x0/0x20 @ 1
[    0.405543] initcall sha1_generic_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.406355] calling  sha256_generic_mod_init+0x0/0x30 @ 1
[    0.406998] initcall sha256_generic_mod_init+0x0/0x30 returned 0 after 0 usecs
[    0.407833] calling  sha512_generic_mod_init+0x0/0x30 @ 1
[    0.408180] initcall sha512_generic_mod_init+0x0/0x30 returned 0 after 0 usecs
[    0.409014] calling  sha3_generic_mod_init+0x0/0x30 @ 1
[    0.409645] initcall sha3_generic_mod_init+0x0/0x30 returned 0 after 0 usecs
[    0.410462] calling  crypto_ecb_module_init+0x0/0x20 @ 1
[    0.411098] initcall crypto_ecb_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.411930] calling  crypto_cbc_module_init+0x0/0x20 @ 1
[    0.412179] initcall crypto_cbc_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.413009] calling  crypto_cts_module_init+0x0/0x20 @ 1
[    0.413641] initcall crypto_cts_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.414461] calling  xts_module_init+0x0/0x20 @ 1
[    0.415035] initcall xts_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.415804] calling  crypto_ctr_module_init+0x0/0x30 @ 1
[    0.416180] initcall crypto_ctr_module_init+0x0/0x30 returned 0 after 0 usecs
[    0.417006] calling  crypto_gcm_module_init+0x0/0x90 @ 1
[    0.417642] initcall crypto_gcm_module_init+0x0/0x90 returned 0 after 0 usecs
[    0.418460] calling  aes_init+0x0/0x20 @ 1
[    0.418967] initcall aes_init+0x0/0x20 returned 0 after 0 usecs
[    0.419665] calling  crc32c_mod_init+0x0/0x40 @ 1
[    0.420181] initcall crc32c_mod_init+0x0/0x40 returned 0 after 0 usecs
[    0.420946] calling  lzo_mod_init+0x0/0x20 @ 1
[    0.421871] initcall lzo_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.422589] calling  lzorle_mod_init+0x0/0x20 @ 1
[    0.423154] initcall lzorle_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.423918] calling  drbg_init+0x0/0x220 @ 1
[    0.424193] initcall drbg_init+0x0/0x220 returned 0 after 0 usecs
[    0.424947] calling  ghash_mod_init+0x0/0x20 @ 1
[    0.425517] initcall ghash_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.426268] calling  ecdh_init+0x0/0x90 @ 1
[    0.426786] initcall ecdh_init+0x0/0x90 returned 0 after 0 usecs
[    0.427497] calling  init_bio+0x0/0xe0 @ 1
[    0.428039] initcall init_bio+0x0/0xe0 returned 0 after 0 usecs
[    0.428180] calling  blk_ioc_init+0x0/0x80 @ 1
[    0.428734] initcall blk_ioc_init+0x0/0x80 returned 0 after 0 usecs
[    0.429471] calling  blk_mq_init+0x0/0x130 @ 1
[    0.430016] initcall blk_mq_init+0x0/0x130 returned 0 after 0 usecs
[    0.430750] calling  genhd_device_init+0x0/0x60 @ 1
[    0.431409] initcall genhd_device_init+0x0/0x60 returned 0 after 0 usecs
[    0.432181] calling  blkcg_punt_bio_init+0x0/0x40 @ 1
[    0.432816] initcall blkcg_punt_bio_init+0x0/0x40 returned 0 after 0 usecs
[    0.433014] calling  blk_integrity_auto_init+0x0/0xe0 @ 1
[    0.433681] initcall blk_integrity_auto_init+0x0/0xe0 returned 0 after 0 usecs
[    0.433681] calling  io_wq_init+0x0/0x50 @ 1
[    0.433681] initcall io_wq_init+0x0/0x50 returned 0 after 0 usecs
[    0.436180] calling  sg_pool_init+0x0/0x110 @ 1
[    0.436734] initcall sg_pool_init+0x0/0x110 returned 0 after 0 usecs
[    0.437474] calling  irq_poll_setup+0x0/0x90 @ 1
[    0.438041] initcall irq_poll_setup+0x0/0x90 returned 0 after 0 usecs
[    0.438783] calling  sx150x_init+0x0/0x30 @ 1
[    0.439320] initcall sx150x_init+0x0/0x30 returned 0 after 0 usecs
[    0.439783] calling  byt_gpio_init+0x0/0x30 @ 1
[    0.440140] initcall byt_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.440179] calling  chv_pinctrl_init+0x0/0x30 @ 1
[    0.440552] initcall chv_pinctrl_init+0x0/0x30 returned 0 after 0 usecs
[    0.441044] calling  gpiolib_debugfs_init+0x0/0x40 @ 1
[    0.441444] initcall gpiolib_debugfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.441959] calling  palmas_gpio_init+0x0/0x30 @ 1
[    0.442332] initcall palmas_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.442829] calling  rc5t583_gpio_init+0x0/0x30 @ 1
[    0.443213] initcall rc5t583_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.443709] calling  tps6586x_gpio_init+0x0/0x30 @ 1
[    0.444093] initcall tps6586x_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.444179] calling  tps65910_gpio_init+0x0/0x30 @ 1
[    0.444565] initcall tps65910_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.445170] calling  pwm_init+0x0/0x70 @ 1
[    0.445561] initcall pwm_init+0x0/0x70 returned 0 after 0 usecs
[    0.446095] calling  leds_init+0x0/0x60 @ 1
[    0.446501] initcall leds_init+0x0/0x60 returned 0 after 0 usecs
[    0.447039] calling  pci_slot_init+0x0/0x60 @ 1
[    0.447465] initcall pci_slot_init+0x0/0x60 returned 0 after 0 usecs
[    0.448034] calling  fbmem_init+0x0/0x90 @ 1
[    0.448215] initcall fbmem_init+0x0/0x90 returned 0 after 0 usecs
[    0.448765] calling  scan_for_dmi_ipmi+0x0/0x300 @ 1
[    0.449225] initcall scan_for_dmi_ipmi+0x0/0x300 returned 0 after 0 usecs
[    0.450153] calling  acpi_init+0x0/0x540 @ 1
[    0.450515] ACPI: Added _OSI(Module Device)
[    0.450848] ACPI: Added _OSI(Processor Device)
[    0.451212] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.451650] ACPI: Added _OSI(Processor Aggregator Device)
[    0.452575] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    0.453278] ACPI: Interpreter enabled
[    0.453278] ACPI: PM: (supports S0 S5)
[    0.453278] ACPI: Using IOAPIC for interrupt routing
[    0.453470] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.454260] PCI: Using E820 reservations for host bridge windows
[    0.454857] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.457536] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.458108] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI HPX-Type3]
[    0.458787] acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    0.459630] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended configuration space under this bridge
[    0.460377] acpiphp: Slot [3] registered
[    0.460764] acpiphp: Slot [4] registered
[    0.461143] acpiphp: Slot [5] registered
[    0.461530] acpiphp: Slot [6] registered
[    0.461915] acpiphp: Slot [7] registered
[    0.462300] acpiphp: Slot [8] registered
[    0.462684] acpiphp: Slot [9] registered
[    0.463068] acpiphp: Slot [10] registered
[    0.463460] acpiphp: Slot [11] registered
[    0.463851] acpiphp: Slot [12] registered
[    0.464187] acpiphp: Slot [13] registered
[    0.464578] acpiphp: Slot [14] registered
[    0.464970] acpiphp: Slot [15] registered
[    0.465362] acpiphp: Slot [16] registered
[    0.465751] acpiphp: Slot [17] registered
[    0.466139] acpiphp: Slot [18] registered
[    0.466528] acpiphp: Slot [19] registered
[    0.466917] acpiphp: Slot [20] registered
[    0.467306] acpiphp: Slot [21] registered
[    0.467694] acpiphp: Slot [22] registered
[    0.468083] acpiphp: Slot [23] registered
[    0.468187] acpiphp: Slot [24] registered
[    0.468576] acpiphp: Slot [25] registered
[    0.468965] acpiphp: Slot [26] registered
[    0.469368] acpiphp: Slot [27] registered
[    0.469759] acpiphp: Slot [28] registered
[    0.470151] acpiphp: Slot [29] registered
[    0.470542] acpiphp: Slot [30] registered
[    0.470934] acpiphp: Slot [31] registered
[    0.471326] PCI host bridge to bus 0000:00
[    0.471721] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.472179] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.472789] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.473458] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]
[    0.474125] pci_bus 0000:00: root bus resource [mem 0x240000000-0x2bfffffff window]
[    0.474804] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.475333] pci 0000:00:00.0: calling  quirk_mmio_always_on+0x0/0x20 @ 1
[    0.475939] pci 0000:00:00.0: quirk_mmio_always_on+0x0/0x20 took 0 usecs
[    0.476179] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 conventional PCI endpoint
[    0.477076] pci 0000:00:00.0: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.478067] pci 0000:00:00.0: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.479013] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 conventional PCI endpoint
[    0.479846] pci 0000:00:01.0: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.480180] pci 0000:00:01.0: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.480801] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180 conventional PCI endpoint
[    0.481954] pci 0000:00:01.1: BAR 4 [io  0xc5a0-0xc5af]
[    0.482374] pci 0000:00:01.1: BAR 0 [io  0x01f0-0x01f7]: legacy IDE quirk
[    0.482938] pci 0000:00:01.1: BAR 1 [io  0x03f6]: legacy IDE quirk
[    0.483489] pci 0000:00:01.1: BAR 2 [io  0x0170-0x0177]: legacy IDE quirk
[    0.484088] pci 0000:00:01.1: BAR 3 [io  0x0376]: legacy IDE quirk
[    0.484187] pci 0000:00:01.1: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.484818] pci 0000:00:01.1: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.485528] pci 0000:00:01.3: calling  acpi_pm_check_blacklist+0x0/0x50 @ 1
[    0.486062] pci 0000:00:01.3: acpi_pm_check_blacklist+0x0/0x50 took 0 usecs
[    0.486647] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000 conventional PCI endpoint
[    0.487537] pci 0000:00:01.3: calling  quirk_piix4_acpi+0x0/0x180 @ 1
[    0.488124] pci 0000:00:01.3: quirk: [io  0x0600-0x063f] claimed by PIIX4 ACPI
[    0.488183] pci 0000:00:01.3: quirk: [io  0x0700-0x070f] claimed by PIIX4 SMB
[    0.488798] pci 0000:00:01.3: quirk_piix4_acpi+0x0/0x180 took 3906 usecs
[    0.489393] pci 0000:00:01.3: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.490031] pci 0000:00:01.3: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.490671] pci 0000:00:01.3: calling  pci_fixup_piix4_acpi+0x0/0x20 @ 1
[    0.491180] pci 0000:00:01.3: pci_fixup_piix4_acpi+0x0/0x20 took 0 usecs
[    0.491846] pci 0000:00:02.0: [1b36:0100] type 00 class 0x030000 conventional PCI endpoint
[    0.496222] pci 0000:00:02.0: BAR 0 [mem 0xf4000000-0xf7ffffff]
[    0.496698] pci 0000:00:02.0: BAR 1 [mem 0xf8000000-0xfbffffff]
[    0.497143] pci 0000:00:02.0: BAR 2 [mem 0xfc054000-0xfc055fff]
[    0.497588] pci 0000:00:02.0: BAR 3 [io  0xc540-0xc55f]
[    0.498072] pci 0000:00:02.0: ROM [mem 0xfc040000-0xfc04ffff pref]
[    0.498661] pci 0000:00:02.0: calling  screen_info_fixup_lfb+0x0/0x170 @ 1
[    0.499290] pci 0000:00:02.0: screen_info_fixup_lfb+0x0/0x170 took 0 usecs
[    0.499895] pci 0000:00:02.0: calling  pci_fixup_video+0x0/0x120 @ 1
[    0.500193] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.500909] pci 0000:00:02.0: pci_fixup_video+0x0/0x120 took 0 usecs
[    0.501961] pci 0000:00:03.0: [1af4:1000] type 00 class 0x020000 conventional PCI endpoint
[    0.503483] pci 0000:00:03.0: BAR 0 [io  0xc560-0xc57f]
[    0.503967] pci 0000:00:03.0: BAR 1 [mem 0xfc056000-0xfc056fff]
[    0.504194] pci 0000:00:03.0: BAR 4 [mem 0xfebf0000-0xfebf3fff 64bit pref]
[    0.505387] pci 0000:00:03.0: ROM [mem 0xfc000000-0xfc03ffff pref]
[    0.506430] pci 0000:00:04.0: [1b36:000d] type 00 class 0x0c0330 conventional PCI endpoint
[    0.507483] pci 0000:00:04.0: BAR 0 [mem 0xfc050000-0xfc053fff 64bit]
[    0.508406] pci 0000:00:05.0: [8086:2415] type 00 class 0x040100 conventional PCI endpoint
[    0.509888] pci 0000:00:05.0: BAR 0 [io  0xc000-0xc3ff]
[    0.510386] pci 0000:00:05.0: BAR 1 [io  0xc400-0xc4ff]
[    0.510885] pci 0000:00:05.0: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.511537] pci 0000:00:05.0: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.512478] pci 0000:00:06.0: [1af4:1052] type 00 class 0x098000 conventional PCI endpoint
[    0.513738] pci 0000:00:06.0: BAR 1 [mem 0xfc057000-0xfc057fff]
[    0.514291] pci 0000:00:06.0: BAR 4 [mem 0xfebf4000-0xfebf7fff 64bit pref]
[    0.515414] pci 0000:00:07.0: [1af4:1003] type 00 class 0x078000 conventional PCI endpoint
[    0.516943] pci 0000:00:07.0: BAR 0 [io  0xc500-0xc53f]
[    0.517422] pci 0000:00:07.0: BAR 1 [mem 0xfc058000-0xfc058fff]
[    0.517971] pci 0000:00:07.0: BAR 4 [mem 0xfebf8000-0xfebfbfff 64bit pref]
[    0.519080] pci 0000:00:08.0: [1af4:1002] type 00 class 0x00ff00 conventional PCI endpoint
[    0.520458] pci 0000:00:08.0: BAR 0 [io  0xc580-0xc59f]
[    0.520951] pci 0000:00:08.0: BAR 4 [mem 0xfebfc000-0xfebfffff 64bit pref]
[    0.527187] ACPI: PCI: Interrupt link LNKA configured for IRQ 10
[    0.527791] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[    0.528232] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[    0.528821] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[    0.529395] ACPI: PCI: Interrupt link LNKS configured for IRQ 9
[    0.530127] initcall acpi_init+0x0/0x540 returned 0 after 80000 usecs
[    0.530723] calling  adxl_init+0x0/0x1b0 @ 1
[    0.531127] initcall adxl_init+0x0/0x1b0 returned -19 after 0 usecs
[    0.531685] calling  hmat_init+0x0/0x3d0 @ 1
[    0.532086] initcall hmat_init+0x0/0x3d0 returned 0 after 0 usecs
[    0.532179] calling  acpi_hed_driver_init+0x0/0x30 @ 1
[    0.532653] initcall acpi_hed_driver_init+0x0/0x30 returned 0 after 0 usecs
[    0.533297] calling  pnp_init+0x0/0x20 @ 1
[    0.533645] initcall pnp_init+0x0/0x20 returned 0 after 0 usecs
[    0.534536] calling  balloon_init+0x0/0x2d0 @ 1
[    0.534901] initcall balloon_init+0x0/0x2d0 returned -19 after 0 usecs
[    0.535391] calling  xen_setup_shutdown_event+0x0/0x50 @ 1
[    0.535822] initcall xen_setup_shutdown_event+0x0/0x50 returned -19 after 0 usecs
[    0.536179] calling  xenbus_probe_backend_init+0x0/0xa0 @ 1
[    0.536617] initcall xenbus_probe_backend_init+0x0/0xa0 returned 0 after 0 usecs
[    0.537182] calling  xenbus_probe_frontend_init+0x0/0x60 @ 1
[    0.537620] initcall xenbus_probe_frontend_init+0x0/0x60 returned 0 after 0 usecs
[    0.538170] calling  xen_acpi_pad_init+0x0/0x60 @ 1
[    0.538549] initcall xen_acpi_pad_init+0x0/0x60 returned -19 after 0 usecs
[    0.539061] calling  misc_init+0x0/0xb0 @ 1
[    0.539407] initcall misc_init+0x0/0xb0 returned 0 after 0 usecs
[    0.539865] calling  tpm_init+0x0/0xe0 @ 1
[    0.540261] initcall tpm_init+0x0/0xe0 returned 0 after 0 usecs
[    0.540640] calling  iommu_subsys_init+0x0/0x170 @ 1
[    0.541032] iommu: Default domain type: Translated
[    0.541409] iommu: DMA domain TLB invalidation policy: lazy mode
[    0.541860] initcall iommu_subsys_init+0x0/0x170 returned 0 after 0 usecs
[    0.542364] calling  cn_init+0x0/0xf0 @ 1
[    0.542711] initcall cn_init+0x0/0xf0 returned 0 after 0 usecs
[    0.543154] calling  pm860x_i2c_init+0x0/0x50 @ 1
[    0.543528] initcall pm860x_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.544010] calling  wm8400_driver_init+0x0/0x50 @ 1
[    0.544183] initcall wm8400_driver_init+0x0/0x50 returned 0 after 0 usecs
[    0.544707] calling  wm831x_i2c_init+0x0/0x50 @ 1
[    0.545080] initcall wm831x_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.545572] calling  wm831x_spi_init+0x0/0x40 @ 1
[    0.545950] initcall wm831x_spi_init+0x0/0x40 returned 0 after 0 usecs
[    0.546440] calling  wm8350_i2c_init+0x0/0x30 @ 1
[    0.546809] initcall wm8350_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.547302] calling  tps65910_i2c_init+0x0/0x30 @ 1
[    0.547684] initcall tps65910_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.548179] calling  ezx_pcap_init+0x0/0x30 @ 1
[    0.548552] initcall ezx_pcap_init+0x0/0x30 returned 0 after 0 usecs
[    0.549027] calling  da903x_init+0x0/0x30 @ 1
[    0.549369] initcall da903x_init+0x0/0x30 returned 0 after 0 usecs
[    0.549831] calling  da9052_spi_init+0x0/0x50 @ 1
[    0.550198] initcall da9052_spi_init+0x0/0x50 returned 0 after 0 usecs
[    0.550683] calling  da9052_i2c_init+0x0/0x50 @ 1
[    0.551048] initcall da9052_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.551533] calling  lp8788_init+0x0/0x30 @ 1
[    0.551876] initcall lp8788_init+0x0/0x30 returned 0 after 0 usecs
[    0.552179] calling  da9055_i2c_init+0x0/0x50 @ 1
[    0.552557] initcall da9055_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.553043] calling  max77843_i2c_init+0x0/0x30 @ 1
[    0.553427] initcall max77843_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.553925] calling  max8925_i2c_init+0x0/0x50 @ 1
[    0.554300] initcall max8925_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.554791] calling  max8997_i2c_init+0x0/0x30 @ 1
[    0.555235] initcall max8997_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.555814] calling  max8998_i2c_init+0x0/0x30 @ 1
[    0.556182] initcall max8998_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.556772] calling  tps6586x_init+0x0/0x30 @ 1
[    0.557197] initcall tps6586x_init+0x0/0x30 returned 0 after 0 usecs
[    0.557763] calling  tps65090_init+0x0/0x30 @ 1
[    0.558188] initcall tps65090_init+0x0/0x30 returned 0 after 0 usecs
[    0.558754] calling  aat2870_init+0x0/0x30 @ 1
[    0.559173] initcall aat2870_init+0x0/0x30 returned 0 after 0 usecs
[    0.559733] calling  palmas_i2c_init+0x0/0x30 @ 1
[    0.560181] initcall palmas_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.560764] calling  rc5t583_i2c_init+0x0/0x30 @ 1
[    0.561209] initcall rc5t583_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.561795] calling  as3711_i2c_init+0x0/0x30 @ 1
[    0.562238] initcall as3711_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.562820] calling  libnvdimm_init+0x0/0x70 @ 1
[    0.563607] initcall libnvdimm_init+0x0/0x70 returned 0 after 0 usecs
[    0.564179] calling  dax_core_init+0x0/0x110 @ 1
[    0.564596] initcall dax_core_init+0x0/0x110 returned 0 after 0 usecs
[    0.565080] calling  dma_buf_init+0x0/0xb0 @ 1
[    0.565488] initcall dma_buf_init+0x0/0xb0 returned 0 after 0 usecs
[    0.566028] calling  init_scsi+0x0/0xa0 @ 1
[    0.566471] SCSI subsystem initialized
[    0.566841] initcall init_scsi+0x0/0xa0 returned 0 after 0 usecs
[    0.567387] calling  ata_init+0x0/0x410 @ 1
[    0.567817] libata version 3.00 loaded.
[    0.568179] initcall ata_init+0x0/0x410 returned 0 after 4000 usecs
[    0.568690] calling  phy_init+0x0/0x2b0 @ 1
[    0.569109] initcall phy_init+0x0/0x2b0 returned 0 after 0 usecs
[    0.569649] calling  usb_common_init+0x0/0x30 @ 1
[    0.570090] initcall usb_common_init+0x0/0x30 returned 0 after 0 usecs
[    0.570666] calling  usb_init+0x0/0x190 @ 1
[    0.571064] ACPI: bus type USB registered
[    0.571463] usbcore: registered new interface driver usbfs
[    0.571970] usbcore: registered new interface driver hub
[    0.572183] usbcore: registered new device driver usb
[    0.572649] initcall usb_init+0x0/0x190 returned 0 after 4000 usecs
[    0.573210] calling  xdbc_init+0x0/0x1e0 @ 1
[    0.573616] initcall xdbc_init+0x0/0x1e0 returned 0 after 0 usecs
[    0.574165] calling  usb_roles_init+0x0/0x20 @ 1
[    0.574598] initcall usb_roles_init+0x0/0x20 returned 0 after 0 usecs
[    0.575172] calling  serio_init+0x0/0x50 @ 1
[    0.575545] initcall serio_init+0x0/0x50 returned 0 after 0 usecs
[    0.576017] calling  input_init+0x0/0x130 @ 1
[    0.576184] initcall input_init+0x0/0x130 returned 0 after 0 usecs
[    0.576646] calling  rtc_init+0x0/0x40 @ 1
[    0.576972] initcall rtc_init+0x0/0x40 returned 0 after 0 usecs
[    0.577420] calling  dw_i2c_init_driver+0x0/0x30 @ 1
[    0.577830] initcall dw_i2c_init_driver+0x0/0x30 returned 0 after 0 usecs
[    0.578468] calling  pps_init+0x0/0xc0 @ 1
[    0.578796] pps_core: LinuxPPS API ver. 1 registered
[    0.579185] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.579855] initcall pps_init+0x0/0xc0 returned 0 after 0 usecs
[    0.580179] calling  ptp_init+0x0/0xa0 @ 1
[    0.580503] PTP clock support registered
[    0.580815] initcall ptp_init+0x0/0xa0 returned 0 after 0 usecs
[    0.581258] calling  power_supply_class_init+0x0/0x30 @ 1
[    0.581673] initcall power_supply_class_init+0x0/0x30 returned 0 after 0 usecs
[    0.582210] calling  hwmon_init+0x0/0x110 @ 1
[    0.582559] initcall hwmon_init+0x0/0x110 returned 0 after 0 usecs
[    0.583020] calling  intel_tcc_init+0x0/0x40 @ 1
[    0.583386] initcall intel_tcc_init+0x0/0x40 returned 0 after 0 usecs
[    0.583877] calling  md_init+0x0/0x190 @ 1
[    0.584202] initcall md_init+0x0/0x190 returned 0 after 0 usecs
[    0.584639] calling  edac_init+0x0/0x90 @ 1
[    0.584974] EDAC MC: Ver: 3.0.0
[    0.585371] initcall edac_init+0x0/0x90 returned 0 after 0 usecs
[    0.585371] calling  mmc_init+0x0/0x50 @ 1
[    0.585371] initcall mmc_init+0x0/0x50 returned 0 after 0 usecs
[    0.585429] calling  dmi_init+0x0/0x140 @ 1
[    0.585775] initcall dmi_init+0x0/0x140 returned 0 after 0 usecs
[    0.586241] calling  efisubsys_init+0x0/0x610 @ 1
[    0.586610] initcall efisubsys_init+0x0/0x610 returned 0 after 0 usecs
[    0.588179] calling  vme_init+0x0/0x20 @ 1
[    0.588543] initcall vme_init+0x0/0x20 returned 0 after 0 usecs
[    0.588987] calling  remoteproc_init+0x0/0x80 @ 1
[    0.589363] initcall remoteproc_init+0x0/0x80 returned 0 after 0 usecs
[    0.589847] calling  devfreq_init+0x0/0xe0 @ 1
[    0.590211] initcall devfreq_init+0x0/0xe0 returned 0 after 0 usecs
[    0.590211] calling  devfreq_event_init+0x0/0x60 @ 1
[    0.590211] initcall devfreq_event_init+0x0/0x60 returned 0 after 0 usecs
[    0.590211] calling  devfreq_simple_ondemand_init+0x0/0x20 @ 1
[    0.590211] initcall devfreq_simple_ondemand_init+0x0/0x20 returned 0 after 0 usecs
[    0.592182] calling  devfreq_performance_init+0x0/0x20 @ 1
[    0.592607] initcall devfreq_performance_init+0x0/0x20 returned 0 after 0 usecs
[    0.593147] calling  devfreq_powersave_init+0x0/0x20 @ 1
[    0.593554] initcall devfreq_powersave_init+0x0/0x20 returned 0 after 0 usecs
[    0.594092] calling  devfreq_userspace_init+0x0/0x20 @ 1
[    0.594512] initcall devfreq_userspace_init+0x0/0x20 returned 0 after 0 usecs
[    0.595045] calling  devfreq_passive_init+0x0/0x20 @ 1
[    0.595446] initcall devfreq_passive_init+0x0/0x20 returned 0 after 0 usecs
[    0.595965] calling  ras_init+0x0/0x20 @ 1
[    0.596184] initcall ras_init+0x0/0x20 returned 0 after 0 usecs
[    0.596632] calling  nvmem_init+0x0/0x20 @ 1
[    0.596979] initcall nvmem_init+0x0/0x20 returned 0 after 0 usecs
[    0.597439] calling  dpll_init+0x0/0x20 @ 1
[    0.597800] initcall dpll_init+0x0/0x20 returned 0 after 0 usecs
[    0.598258] calling  proto_init+0x0/0x20 @ 1
[    0.598606] initcall proto_init+0x0/0x20 returned 0 after 0 usecs
[    0.599069] calling  net_dev_init+0x0/0x3a0 @ 1
[    0.599556] initcall net_dev_init+0x0/0x3a0 returned 0 after 0 usecs
[    0.600037] calling  neigh_init+0x0/0x30 @ 1
[    0.600184] initcall neigh_init+0x0/0x30 returned 0 after 0 usecs
[    0.600641] calling  fib_notifier_init+0x0/0x20 @ 1
[    0.601019] initcall fib_notifier_init+0x0/0x20 returned 0 after 0 usecs
[    0.601525] calling  netdev_genl_init+0x0/0x50 @ 1
[    0.601904] initcall netdev_genl_init+0x0/0x50 returned 0 after 0 usecs
[    0.602420] calling  page_pool_user_init+0x0/0x20 @ 1
[    0.602816] initcall page_pool_user_init+0x0/0x20 returned 0 after 0 usecs
[    0.603338] calling  fib_rules_init+0x0/0x80 @ 1
[    0.603699] initcall fib_rules_init+0x0/0x80 returned 0 after 0 usecs
[    0.604179] calling  init_cgroup_netprio+0x0/0x30 @ 1
[    0.604571] initcall init_cgroup_netprio+0x0/0x30 returned 0 after 0 usecs
[    0.605088] calling  bpf_lwt_init+0x0/0x30 @ 1
[    0.605440] initcall bpf_lwt_init+0x0/0x30 returned 0 after 0 usecs
[    0.605914] calling  pktsched_init+0x0/0xc0 @ 1
[    0.606327] initcall pktsched_init+0x0/0xc0 returned 0 after 0 usecs
[    0.606802] calling  tc_filter_init+0x0/0xa0 @ 1
[    0.607164] initcall tc_filter_init+0x0/0xa0 returned 0 after 0 usecs
[    0.607641] calling  tc_action_init+0x0/0x30 @ 1
[    0.607999] initcall tc_action_init+0x0/0x30 returned 0 after 0 usecs
[    0.608179] calling  ethnl_init+0x0/0x80 @ 1
[    0.608535] initcall ethnl_init+0x0/0x80 returned 0 after 0 usecs
[    0.608989] calling  nexthop_init+0x0/0x40 @ 1
[    0.609342] initcall nexthop_init+0x0/0x40 returned 0 after 0 usecs
[    0.609812] calling  devlink_init+0x0/0x70 @ 1
[    0.610185] initcall devlink_init+0x0/0x70 returned 0 after 0 usecs
[    0.610651] calling  wireless_nlevent_init+0x0/0x50 @ 1
[    0.611053] initcall wireless_nlevent_init+0x0/0x50 returned 0 after 0 usecs
[    0.611572] calling  rfkill_init+0x0/0x130 @ 1
[    0.611935] initcall rfkill_init+0x0/0x130 returned 0 after 0 usecs
[    0.612179] calling  ncsi_init_netlink+0x0/0x20 @ 1
[    0.612558] initcall ncsi_init_netlink+0x0/0x20 returned 0 after 0 usecs
[    0.613050] calling  shaper_init+0x0/0x20 @ 1
[    0.613401] initcall shaper_init+0x0/0x20 returned 0 after 0 usecs
[    0.613869] calling  pci_subsys_init+0x0/0x80 @ 1
[    0.614235] PCI: Using ACPI for IRQ routing
[    0.614563] PCI: pci_cache_line_size set to 64 bytes
[    0.615034] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    0.615483] e820: reserve RAM buffer [mem 0xbffdf000-0xbfffffff]
[    0.615934] initcall pci_subsys_init+0x0/0x80 returned 0 after 0 usecs
[    0.616179] calling  vsprintf_init_hashval+0x0/0x20 @ 1
[    0.616576] initcall vsprintf_init_hashval+0x0/0x20 returned 0 after 0 usecs
[    0.617095] calling  efi_runtime_map_init+0x0/0x260 @ 1
[    0.617508] initcall efi_runtime_map_init+0x0/0x260 returned 0 after 0 usecs
[    0.618031] calling  vga_arb_device_init+0x0/0xa0 @ 1
[    0.618433] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.618433] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.618433] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.618433] vgaarb: loaded
[    0.620180] initcall vga_arb_device_init+0x0/0xa0 returned 0 after 4000 usecs
[    0.620709] calling  watchdog_init+0x0/0xb0 @ 1
[    0.621098] initcall watchdog_init+0x0/0xb0 returned 0 after 0 usecs
[    0.621098] calling  nmi_warning_debugfs+0x0/0x40 @ 1
[    0.621186] initcall nmi_warning_debugfs+0x0/0x40 returned 0 after 0 usecs
[    0.621696] calling  hpet_late_init+0x0/0x420 @ 1
[    0.622075] initcall hpet_late_init+0x0/0x420 returned -19 after 0 usecs
[    0.622578] calling  init_amd_nbs+0x0/0x340 @ 1
[    0.622935] initcall init_amd_nbs+0x0/0x340 returned 0 after 0 usecs
[    0.624179] calling  amd_smn_init+0x0/0x200 @ 1
[    0.624533] initcall amd_smn_init+0x0/0x200 returned 0 after 0 usecs
[    0.625121] calling  iomem_init_inode+0x0/0xa0 @ 1
[    0.625584] initcall iomem_init_inode+0x0/0xa0 returned 0 after 0 usecs
[    0.626180] calling  clocksource_done_booting+0x0/0x50 @ 1
[    0.626726] clocksource: Switched to clocksource kvm-clock
[    0.627233] initcall clocksource_done_booting+0x0/0x50 returned 0 after 509 usecs
[    0.627895] calling  tracer_init_tracefs+0x0/0xd0 @ 1
[    0.628177] initcall tracer_init_tracefs+0x0/0xd0 returned 0 after 73 usecs
[    0.628177] calling  init_trace_printk_function_export+0x0/0x40 @ 1
[    0.628177] initcall init_trace_printk_function_export+0x0/0x40 returned 0 after 4 usecs
[    0.628177] calling  init_graph_tracefs+0x0/0x40 @ 1
[    0.628177] initcall init_graph_tracefs+0x0/0x40 returned 0 after 0 usecs
[    0.628465] calling  trace_events_synth_init+0x0/0x60 @ 1
[    0.628880] initcall trace_events_synth_init+0x0/0x60 returned 0 after 0 usecs
[    0.629422] calling  bpf_event_init+0x0/0x20 @ 1
[    0.629795] initcall bpf_event_init+0x0/0x20 returned 0 after 1 usecs
[    0.630286] calling  init_kprobe_trace+0x0/0x1e0 @ 1
[    0.630668] initcall init_kprobe_trace+0x0/0x1e0 returned 0 after 1 usecs
[    0.631174] calling  init_dynamic_event+0x0/0x40 @ 1
[    0.631555] initcall init_dynamic_event+0x0/0x40 returned 0 after 1 usecs
[    0.632061] calling  init_uprobe_trace+0x0/0x80 @ 1
[    0.632440] initcall init_uprobe_trace+0x0/0x80 returned 0 after 1 usecs
[    0.632949] calling  bpf_init+0x0/0x60 @ 1
[    0.633279] initcall bpf_init+0x0/0x60 returned 0 after 6 usecs
[    0.633751] calling  secretmem_init+0x0/0x60 @ 1
[    0.634136] initcall secretmem_init+0x0/0x60 returned 0 after 6 usecs
[    0.634625] calling  init_fs_stat_sysctls+0x0/0x40 @ 1
[    0.635029] initcall init_fs_stat_sysctls+0x0/0x40 returned 0 after 7 usecs
[    0.635556] calling  init_fs_exec_sysctls+0x0/0x40 @ 1
[    0.635955] initcall init_fs_exec_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.636476] calling  init_pipe_fs+0x0/0x80 @ 1
[    0.636836] initcall init_pipe_fs+0x0/0x80 returned 0 after 3 usecs
[    0.637316] calling  init_fs_namei_sysctls+0x0/0x40 @ 1
[    0.637726] initcall init_fs_namei_sysctls+0x0/0x40 returned 0 after 1 usecs
[    0.638262] calling  init_fs_dcache_sysctls+0x0/0x60 @ 1
[    0.638674] initcall init_fs_dcache_sysctls+0x0/0x60 returned 0 after 4 usecs
[    0.639213] calling  init_fs_namespace_sysctls+0x0/0x40 @ 1
[    0.639643] initcall init_fs_namespace_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.640194] calling  cgroup_writeback_init+0x0/0x40 @ 1
[    0.640598] initcall cgroup_writeback_init+0x0/0x40 returned 0 after 2 usecs
[    0.641122] calling  inotify_user_setup+0x0/0x140 @ 1
[    0.641512] initcall inotify_user_setup+0x0/0x140 returned 0 after 5 usecs
[    0.642017] calling  eventpoll_init+0x0/0x190 @ 1
[    0.642400] initcall eventpoll_init+0x0/0x190 returned 0 after 16 usecs
[    0.642890] calling  anon_inode_init+0x0/0x70 @ 1
[    0.643256] initcall anon_inode_init+0x0/0x70 returned 0 after 3 usecs
[    0.643741] calling  init_dax_wait_table+0x0/0x50 @ 1
[    0.644169] initcall init_dax_wait_table+0x0/0x50 returned 0 after 40 usecs
[    0.644687] calling  proc_locks_init+0x0/0x40 @ 1
[    0.645058] initcall proc_locks_init+0x0/0x40 returned 0 after 2 usecs
[    0.645549] calling  backing_aio_init+0x0/0x90 @ 1
[    0.645924] initcall backing_aio_init+0x0/0x90 returned 0 after 2 usecs
[    0.646426] calling  init_fs_coredump_sysctls+0x0/0x40 @ 1
[    0.646850] initcall init_fs_coredump_sysctls+0x0/0x40 returned 0 after 2 usecs
[    0.647735] calling  init_vm_drop_caches_sysctls+0x0/0x40 @ 1
[    0.648170] initcall init_vm_drop_caches_sysctls+0x0/0x40 returned 0 after 2 usecs
[    0.648729] calling  iomap_dio_init+0x0/0x40 @ 1
[    0.649096] initcall iomap_dio_init+0x0/0x40 returned 0 after 5 usecs
[    0.649571] calling  iomap_ioend_init+0x0/0x30 @ 1
[    0.649957] initcall iomap_ioend_init+0x0/0x30 returned 0 after 9 usecs
[    0.650495] calling  dquot_init+0x0/0x190 @ 1
[    0.650837] VFS: Disk quotas dquot_6.6.0
[    0.651164] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.651674] initcall dquot_init+0x0/0x190 returned 0 after 836 usecs
[    0.652147] calling  quota_init+0x0/0x40 @ 1
[    0.652487] initcall quota_init+0x0/0x40 returned 0 after 6 usecs
[    0.652950] calling  proc_cmdline_init+0x0/0x50 @ 1
[    0.653327] initcall proc_cmdline_init+0x0/0x50 returned 0 after 1 usecs
[    0.653823] calling  proc_consoles_init+0x0/0x40 @ 1
[    0.654211] initcall proc_consoles_init+0x0/0x40 returned 0 after 0 usecs
[    0.654722] calling  proc_cpuinfo_init+0x0/0x30 @ 1
[    0.655107] initcall proc_cpuinfo_init+0x0/0x30 returned 0 after 1 usecs
[    0.655605] calling  proc_devices_init+0x0/0x40 @ 1
[    0.655984] initcall proc_devices_init+0x0/0x40 returned 0 after 0 usecs
[    0.656484] calling  proc_interrupts_init+0x0/0x40 @ 1
[    0.656885] initcall proc_interrupts_init+0x0/0x40 returned 0 after 2 usecs
[    0.657413] calling  proc_loadavg_init+0x0/0x40 @ 1
[    0.657793] initcall proc_loadavg_init+0x0/0x40 returned 0 after 0 usecs
[    0.658301] calling  proc_meminfo_init+0x0/0x40 @ 1
[    0.658681] initcall proc_meminfo_init+0x0/0x40 returned 0 after 0 usecs
[    0.659183] calling  proc_stat_init+0x0/0x30 @ 1
[    0.659544] initcall proc_stat_init+0x0/0x30 returned 0 after 0 usecs
[    0.660023] calling  proc_uptime_init+0x0/0x40 @ 1
[    0.660404] initcall proc_uptime_init+0x0/0x40 returned 0 after 0 usecs
[    0.660899] calling  proc_version_init+0x0/0x40 @ 1
[    0.661275] initcall proc_version_init+0x0/0x40 returned 0 after 0 usecs
[    0.661770] calling  proc_softirqs_init+0x0/0x40 @ 1
[    0.662156] initcall proc_softirqs_init+0x0/0x40 returned 0 after 0 usecs
[    0.662656] calling  proc_kcore_init+0x0/0x170 @ 1
[    0.663045] initcall proc_kcore_init+0x0/0x170 returned 0 after 19 usecs
[    0.663547] calling  vmcore_init+0x0/0x920 @ 1
[    0.663899] initcall vmcore_init+0x0/0x920 returned 0 after 0 usecs
[    0.664369] calling  proc_kmsg_init+0x0/0x30 @ 1
[    0.664728] initcall proc_kmsg_init+0x0/0x30 returned 0 after 0 usecs
[    0.665219] calling  proc_page_init+0x0/0x70 @ 1
[    0.665583] initcall proc_page_init+0x0/0x70 returned 0 after 2 usecs
[    0.666080] calling  init_ramfs_fs+0x0/0x20 @ 1
[    0.666442] initcall init_ramfs_fs+0x0/0x20 returned 0 after 3 usecs
[    0.666917] calling  init_hugetlbfs_fs+0x0/0x1c0 @ 1
[    0.667319] initcall init_hugetlbfs_fs+0x0/0x1c0 returned 0 after 20 usecs
[    0.667828] calling  aa_create_aafs+0x0/0x3c0 @ 1
[    0.668194] initcall aa_create_aafs+0x0/0x3c0 returned 0 after 1 usecs
[    0.668680] calling  dynamic_debug_init_control+0x0/0xa0 @ 1
[    0.669121] initcall dynamic_debug_init_control+0x0/0xa0 returned 0 after 7 usecs
[    0.669671] calling  acpi_event_init+0x0/0x50 @ 1
[    0.670041] initcall acpi_event_init+0x0/0x50 returned 0 after 3 usecs
[    0.670545] calling  pnp_system_init+0x0/0x20 @ 1
[    0.670919] initcall pnp_system_init+0x0/0x20 returned 0 after 8 usecs
[    0.671405] calling  pnpacpi_init+0x0/0x80 @ 1
[    0.671755] pnp: PnP ACPI init
[    0.672104] pnp 00:03: [dma 2]
[    0.672484] pnp: PnP ACPI: found 5 devices
[    0.672812] initcall pnpacpi_init+0x0/0x80 returned 0 after 1057 usecs
[    0.673302] calling  chr_dev_init+0x0/0xb0 @ 1
[    0.674914] initcall chr_dev_init+0x0/0xb0 returned 0 after 1263 usecs
[    0.675404] calling  hwrng_modinit+0x0/0xc0 @ 1
[    0.675801] initcall hwrng_modinit+0x0/0xc0 returned 0 after 43 usecs
[    0.676284] calling  firmware_class_init+0x0/0x120 @ 1
[    0.676683] initcall firmware_class_init+0x0/0x120 returned 0 after 6 usecs
[    0.677516] calling  map_properties+0x0/0x670 @ 1
[    0.677885] initcall map_properties+0x0/0x670 returned 0 after 0 usecs
[    0.678376] calling  init_acpi_pm_clocksource+0x0/0x110 @ 1
[    0.683313] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.683958] initcall init_acpi_pm_clocksource+0x0/0x110 returned 0 after 5154 usecs
[    0.684517] calling  powercap_init+0x0/0x290 @ 1
[    0.684897] initcall powercap_init+0x0/0x290 returned 0 after 21 usecs
[    0.685385] calling  sysctl_core_init+0x0/0x40 @ 1
[    0.685773] initcall sysctl_core_init+0x0/0x40 returned 0 after 17 usecs
[    0.686276] calling  eth_offload_init+0x0/0x30 @ 1
[    0.686650] initcall eth_offload_init+0x0/0x30 returned 0 after 2 usecs
[    0.687141] calling  ipv4_offload_init+0x0/0xe0 @ 1
[    0.687522] initcall ipv4_offload_init+0x0/0xe0 returned 0 after 2 usecs
[    0.688014] calling  inet_init+0x0/0x360 @ 1
[    0.688368] NET: Registered PF_INET protocol family
[    0.688855] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.690575] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.691227] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.691805] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.692450] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.693222] TCP: Hash tables configured (established 65536 bind 65536)
[    0.693738] UDP hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.694283] UDP-Lite hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.694900] initcall inet_init+0x0/0x360 returned 0 after 6551 usecs
[    0.695373] calling  af_unix_init+0x0/0x120 @ 1
[    0.695739] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.696172] initcall af_unix_init+0x0/0x120 returned 0 after 435 usecs
[    0.696658] calling  ipv6_offload_init+0x0/0xf0 @ 1
[    0.697041] initcall ipv6_offload_init+0x0/0xf0 returned 0 after 3 usecs
[    0.697543] calling  vlan_offload_init+0x0/0x30 @ 1
[    0.697916] initcall vlan_offload_init+0x0/0x30 returned 0 after 0 usecs
[    0.698413] calling  xsk_init+0x0/0xa0 @ 1
[    0.698746] NET: Registered PF_XDP protocol family
[    0.699116] initcall xsk_init+0x0/0xa0 returned 0 after 374 usecs
[    0.699580] calling  pcibios_assign_resources+0x0/0xe0 @ 1
[    0.700006] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.700466] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.700939] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.701443] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfebfffff window]
[    0.701948] pci_bus 0000:00: resource 8 [mem 0x240000000-0x2bfffffff window]
[    0.702491] initcall pcibios_assign_resources+0x0/0xe0 returned 0 after 2493 usecs
[    0.703044] calling  pci_apply_final_quirks+0x0/0x160 @ 1
[    0.703458] pci 0000:00:00.0: calling  quirk_passive_release+0x0/0xb0 @ 1
[    0.703973] pci 0000:00:01.0: PIIX3: Enabling Passive Release
[    0.704412] pci 0000:00:00.0: quirk_passive_release+0x0/0xb0 took 435 usecs
[    0.704933] pci 0000:00:00.0: calling  quirk_natoma+0x0/0x40 @ 1
[    0.705386] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    0.705833] pci 0000:00:00.0: quirk_natoma+0x0/0x40 took 436 usecs
[    0.706330] pci 0000:00:04.0: calling  quirk_usb_early_handoff+0x0/0x6d0 @ 1
[    0.717941] ACPI: \_SB_.LNKD: Enabled at IRQ 11
[    0.729530] pci 0000:00:04.0: quirk_usb_early_handoff+0x0/0x6d0 took 22145 usecs
[    0.730140] PCI: CLS 0 bytes, default 64
[    0.730457] initcall pci_apply_final_quirks+0x0/0x160 returned 0 after 27001 usecs
[    0.731029] calling  acpi_reserve_resources+0x0/0x120 @ 1
[    0.731446] initcall acpi_reserve_resources+0x0/0x120 returned 0 after 2 usecs
[    0.731983] calling  p2sb_fs_init+0x0/0x160 @ 1
[    0.732367] initcall p2sb_fs_init+0x0/0x160 returned -2 after 27 usecs
[    0.732855] calling  populate_rootfs+0x0/0x60 @ 1
[    0.733245] initcall populate_rootfs+0x0/0x60 returned 0 after 6 usecs
[    0.733733] calling  pci_iommu_init+0x0/0x50 @ 1
[    0.734104] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.734588] software IO TLB: mapped [mem 0x00000000af000000-0x00000000b3000000] (64MB)
[    0.735173] initcall pci_iommu_init+0x0/0x50 returned 0 after 1069 usecs
[    0.735673] calling  ir_dev_scope_init+0x0/0x50 @ 1
[    0.736055] initcall ir_dev_scope_init+0x0/0x50 returned 0 after 0 usecs
[    0.736602] calling  snp_init_platform_device+0x0/0x50 @ 1
[    0.737028] initcall snp_init_platform_device+0x0/0x50 returned -19 after 0 usecs
[    0.737127] Trying to unpack rootfs image as initramfs...
[    0.737975] calling  ia32_binfmt_init+0x0/0x30 @ 1
[    0.738791] initcall ia32_binfmt_init+0x0/0x30 returned 0 after 3 usecs
[    0.739284] calling  amd_ibs_init+0x0/0x370 @ 1
[    0.739637] initcall amd_ibs_init+0x0/0x370 returned -19 after 0 usecs
[    0.740123] calling  amd_uncore_init+0x0/0x1c0 @ 1
[    0.740492] initcall amd_uncore_init+0x0/0x1c0 returned -19 after 0 usecs
[    0.741008] calling  amd_iommu_pc_init+0x0/0x280 @ 1
[    0.741390] initcall amd_iommu_pc_init+0x0/0x280 returned -19 after 0 usecs
[    0.741907] calling  msr_init+0x0/0x70 @ 1
[    0.742262] initcall msr_init+0x0/0x70 returned 0 after 23 usecs
[    0.742723] calling  intel_uncore_init+0x0/0x5b0 @ 1
[    0.743114] initcall intel_uncore_init+0x0/0x5b0 returned -19 after 0 usecs
[    0.743635] calling  register_kernel_offset_dumper+0x0/0x30 @ 1
[    0.744092] initcall register_kernel_offset_dumper+0x0/0x30 returned 0 after 0 usecs
[    0.744671] calling  i8259A_init_ops+0x0/0x40 @ 1
[    0.745054] initcall i8259A_init_ops+0x0/0x40 returned 0 after 0 usecs
[    0.745556] calling  init_tsc_clocksource+0x0/0xe0 @ 1
[    0.745965] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x28680fa287f, max_idle_ns: 440795281151 ns
[    0.746698] initcall init_tsc_clocksource+0x0/0xe0 returned 0 after 733 usecs
[    0.747225] calling  add_rtc_cmos+0x0/0xc0 @ 1
[    0.747587] initcall add_rtc_cmos+0x0/0xc0 returned 0 after 3 usecs
[    0.748066] calling  i8237A_init_ops+0x0/0x60 @ 1
[    0.748447] initcall i8237A_init_ops+0x0/0x60 returned 0 after 4 usecs
[    0.748961] calling  umwait_init+0x0/0xb0 @ 1
[    0.749383] initcall umwait_init+0x0/0xb0 returned -19 after 0 usecs
[    0.749960] calling  ioapic_init_ops+0x0/0x30 @ 1
[    0.750408] initcall ioapic_init_ops+0x0/0x30 returned 0 after 0 usecs
[    0.750971] calling  register_e820_pmem+0x0/0x90 @ 1
[    0.751390] initcall register_e820_pmem+0x0/0x90 returned 0 after 2 usecs
[    0.751994] calling  add_pcspkr+0x0/0x80 @ 1
[    0.752430] initcall add_pcspkr+0x0/0x80 returned 0 after 29 usecs
[    0.753000] calling  start_periodic_check_for_corruption+0x0/0x60 @ 1
[    0.753595] initcall start_periodic_check_for_corruption+0x0/0x60 returned 0 after 1 usecs
[    0.754284] calling  audit_classes_init+0x0/0xc0 @ 1
[    0.754729] initcall audit_classes_init+0x0/0xc0 returned 0 after 2 usecs
[    0.755337] calling  pt_dump_init+0x0/0x50 @ 1
[    0.755757] initcall pt_dump_init+0x0/0x50 returned 0 after 0 usecs
[    0.756329] calling  iosf_mbi_init+0x0/0xc0 @ 1
[    0.756789] initcall iosf_mbi_init+0x0/0xc0 returned 0 after 22 usecs
[    0.757383] calling  proc_execdomains_init+0x0/0x30 @ 1
[    0.757868] initcall proc_execdomains_init+0x0/0x30 returned 0 after 2 usecs
[    0.758503] calling  register_warn_debugfs+0x0/0x40 @ 1
[    0.758987] initcall register_warn_debugfs+0x0/0x40 returned 0 after 1 usecs
[    0.759619] calling  cpuhp_sysfs_init+0x0/0x100 @ 1
[    0.760088] initcall cpuhp_sysfs_init+0x0/0x100 returned 0 after 10 usecs
[    0.760698] calling  ioresources_init+0x0/0x60 @ 1
[    0.761114] initcall ioresources_init+0x0/0x60 returned 0 after 1 usecs
[    0.761645] calling  psi_proc_init+0x0/0x90 @ 1
[    0.762047] initcall psi_proc_init+0x0/0x90 returned 0 after 1 usecs
[    0.762590] calling  snapshot_device_init+0x0/0x20 @ 1
[    0.763057] initcall snapshot_device_init+0x0/0x20 returned 0 after 47 usecs
[    0.763577] calling  irq_gc_init_ops+0x0/0x30 @ 1
[    0.763945] initcall irq_gc_init_ops+0x0/0x30 returned 0 after 0 usecs
[    0.764433] calling  irq_pm_init_ops+0x0/0x30 @ 1
[    0.764800] initcall irq_pm_init_ops+0x0/0x30 returned 0 after 0 usecs
[    0.765297] calling  klp_init+0x0/0x40 @ 1
[    0.765639] initcall klp_init+0x0/0x40 returned 0 after 3 usecs
[    0.766124] calling  proc_modules_init+0x0/0x30 @ 1
[    0.766518] initcall proc_modules_init+0x0/0x30 returned 0 after 1 usecs
[    0.767053] calling  timer_sysctl_init+0x0/0x30 @ 1
[    0.767938] initcall timer_sysctl_init+0x0/0x30 returned 0 after 4 usecs
[    0.768445] calling  timekeeping_init_ops+0x0/0x30 @ 1
[    0.768835] initcall timekeeping_init_ops+0x0/0x30 returned 0 after 0 usecs
[    0.769504] calling  init_clocksource_sysfs+0x0/0x40 @ 1
[    0.770028] initcall init_clocksource_sysfs+0x0/0x40 returned 0 after 32 usecs
[    0.770681] calling  init_timer_list_procfs+0x0/0x40 @ 1
[    0.771136] initcall init_timer_list_procfs+0x0/0x40 returned 0 after 2 usecs
[    0.771667] calling  alarmtimer_init+0x0/0xf0 @ 1
[    0.772057] initcall alarmtimer_init+0x0/0xf0 returned 0 after 10 usecs
[    0.772639] calling  init_posix_timers+0x0/0x90 @ 1
[    0.773105] initcall init_posix_timers+0x0/0x90 returned 0 after 3 usecs
[    0.773735] calling  clockevents_init_sysfs+0x0/0xe0 @ 1
[    0.774275] initcall clockevents_init_sysfs+0x0/0xe0 returned 0 after 40 usecs
[    0.774913] calling  proc_dma_init+0x0/0x30 @ 1
[    0.775320] initcall proc_dma_init+0x0/0x30 returned 0 after 1 usecs
[    0.775798] calling  kallsyms_init+0x0/0x30 @ 1
[    0.776188] initcall kallsyms_init+0x0/0x30 returned 0 after 1 usecs
[    0.776828] calling  pid_namespaces_init+0x0/0xc0 @ 1
[    0.777353] initcall pid_namespaces_init+0x0/0xc0 returned 0 after 15 usecs
[    0.777987] calling  ikconfig_init+0x0/0x60 @ 1
[    0.778429] initcall ikconfig_init+0x0/0x60 returned 0 after 3 usecs
[    0.778992] calling  audit_watch_init+0x0/0x60 @ 1
[    0.779456] initcall audit_watch_init+0x0/0x60 returned 0 after 0 usecs
[    0.780067] calling  audit_fsnotify_init+0x0/0x60 @ 1
[    0.780545] initcall audit_fsnotify_init+0x0/0x60 returned 0 after 0 usecs
[    0.781159] calling  audit_tree_init+0x0/0xd0 @ 1
[    0.781545] initcall audit_tree_init+0x0/0xd0 returned 0 after 0 usecs
[    0.782055] calling  seccomp_sysctl_init+0x0/0x40 @ 1
[    0.782462] initcall seccomp_sysctl_init+0x0/0x40 returned 0 after 2 usecs
[    0.782977] calling  utsname_sysctl_init+0x0/0x30 @ 1
[    0.783383] initcall utsname_sysctl_init+0x0/0x30 returned 0 after 4 usecs
[    0.783926] calling  init_tracepoints+0x0/0x50 @ 1
[    0.784334] initcall init_tracepoints+0x0/0x50 returned 0 after 1 usecs
[    0.784873] calling  stack_trace_init+0x0/0xc0 @ 1
[    0.785272] initcall stack_trace_init+0x0/0xc0 returned 0 after 8 usecs
[    0.785791] calling  init_mmio_trace+0x0/0x20 @ 1
[    0.786183] initcall init_mmio_trace+0x0/0x20 returned 0 after 2 usecs
[    0.786684] calling  init_blk_tracer+0x0/0x70 @ 1
[    0.787057] initcall init_blk_tracer+0x0/0x70 returned 0 after 4 usecs
[    0.787551] calling  perf_event_sysfs_init+0x0/0xb0 @ 1
[    0.788023] initcall perf_event_sysfs_init+0x0/0xb0 returned 0 after 69 usecs
[    0.788551] calling  system_trusted_keyring_init+0x0/0x110 @ 1
[    0.789012] Initialise system trusted keyrings
[    0.789496] initcall system_trusted_keyring_init+0x0/0x110 returned 0 after 484 usecs
[    0.790286] calling  blacklist_init+0x0/0x100 @ 1
[    0.790667] Key type blacklist registered
[    0.790993] initcall blacklist_init+0x0/0x100 returned 0 after 327 usecs
[    0.791591] calling  kswapd_init+0x0/0xa0 @ 1
[    0.792089] initcall kswapd_init+0x0/0xa0 returned 0 after 86 usecs
[    0.792655] calling  extfrag_debug_init+0x0/0x70 @ 1
[    0.793149] initcall extfrag_debug_init+0x0/0x70 returned 0 after 4 usecs
[    0.793805] calling  mm_compute_batch_init+0x0/0x30 @ 1
[    0.794328] initcall mm_compute_batch_init+0x0/0x30 returned 0 after 1 usecs
[    0.794959] calling  slab_proc_init+0x0/0x30 @ 1
[    0.795337] initcall slab_proc_init+0x0/0x30 returned 0 after 3 usecs
[    0.795821] calling  workingset_init+0x0/0xd0 @ 1
[    0.796186] workingset: timestamp_bits=36 max_order=21 bucket_order=0
[    0.796686] initcall workingset_init+0x0/0xd0 returned 0 after 499 usecs
[    0.797767] calling  proc_vmalloc_init+0x0/0x50 @ 1
[    0.798177] initcall proc_vmalloc_init+0x0/0x50 returned 0 after 2 usecs
[    0.798704] calling  slab_debugfs_init+0x0/0x70 @ 1
[    0.799097] initcall slab_debugfs_init+0x0/0x70 returned 0 after 9 usecs
[    0.799623] calling  procswaps_init+0x0/0x30 @ 1
[    0.799991] initcall procswaps_init+0x0/0x30 returned 0 after 4 usecs
[    0.800477] calling  zs_init+0x0/0x30 @ 1
[    0.800802] initcall zs_init+0x0/0x30 returned 0 after 2 usecs
[    0.801254] calling  ptdump_debugfs_init+0x0/0x40 @ 1
[    0.801675] initcall ptdump_debugfs_init+0x0/0x40 returned 0 after 5 usecs
[    0.802250] calling  fcntl_init+0x0/0x80 @ 1
[    0.802628] initcall fcntl_init+0x0/0x80 returned 0 after 4 usecs
[    0.803111] calling  proc_filesystems_init+0x0/0x30 @ 1
[    0.803524] initcall proc_filesystems_init+0x0/0x30 returned 0 after 1 usecs
[    0.804053] calling  start_dirtytime_writeback+0x0/0x60 @ 1
[    0.804502] initcall start_dirtytime_writeback+0x0/0x60 returned 0 after 5 usecs
[    0.805093] calling  dio_init+0x0/0x90 @ 1
[    0.805445] initcall dio_init+0x0/0x90 returned 0 after 0 usecs
[    0.805927] calling  dnotify_init+0x0/0x120 @ 1
[    0.806330] initcall dnotify_init+0x0/0x120 returned 0 after 12 usecs
[    0.806851] calling  fanotify_user_setup+0x0/0x250 @ 1
[    0.807284] initcall fanotify_user_setup+0x0/0x250 returned 0 after 3 usecs
[    0.807803] calling  userfaultfd_init+0x0/0xc0 @ 1
[    0.808224] initcall userfaultfd_init+0x0/0xc0 returned 0 after 43 usecs
[    0.808724] calling  aio_setup+0x0/0x120 @ 1
[    0.809097] initcall aio_setup+0x0/0x120 returned 0 after 15 usecs
[    0.809564] calling  mbcache_init+0x0/0x90 @ 1
[    0.809923] initcall mbcache_init+0x0/0x90 returned 0 after 4 usecs
[    0.810451] calling  init_devpts_fs+0x0/0x50 @ 1
[    0.810853] initcall init_devpts_fs+0x0/0x50 returned 0 after 7 usecs
[    0.811381] calling  ext4_init_fs+0x0/0x210 @ 1
[    0.811821] initcall ext4_init_fs+0x0/0x210 returned 0 after 76 usecs
[    0.812319] calling  journal_init+0x0/0x1f0 @ 1
[    0.812693] initcall journal_init+0x0/0x1f0 returned 0 after 13 usecs
[    0.813187] calling  init_squashfs_fs+0x0/0xd0 @ 1
[    0.813573] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.814017] initcall init_squashfs_fs+0x0/0xd0 returned 0 after 447 usecs
[    0.814522] calling  init_fat_fs+0x0/0xb0 @ 1
[    0.814865] initcall init_fat_fs+0x0/0xb0 returned 0 after 3 usecs
[    0.815354] calling  init_vfat_fs+0x0/0x20 @ 1
[    0.815739] initcall init_vfat_fs+0x0/0x20 returned 0 after 2 usecs
[    0.816252] calling  ecryptfs_init+0x0/0x230 @ 1
[    0.816773] initcall ecryptfs_init+0x0/0x230 returned 0 after 132 usecs
[    0.817361] calling  init_nls_cp437+0x0/0x30 @ 1
[    0.817733] initcall init_nls_cp437+0x0/0x30 returned 0 after 0 usecs
[    0.818229] calling  fuse_init+0x0/0x250 @ 1
[    0.818566] fuse: init (API version 7.43)
[    0.818918] initcall fuse_init+0x0/0x250 returned 0 after 351 usecs
[    0.819433] calling  efivarfs_init+0x0/0x20 @ 1
[    0.819841] initcall efivarfs_init+0x0/0x20 returned 0 after 0 usecs
[    0.820384] calling  ipc_init+0x0/0x40 @ 1
[    0.820748] initcall ipc_init+0x0/0x40 returned 0 after 4 usecs
[    0.821214] calling  ipc_sysctl_init+0x0/0x40 @ 1
[    0.821596] initcall ipc_sysctl_init+0x0/0x40 returned 0 after 10 usecs
[    0.822099] calling  init_mqueue_fs+0x0/0x160 @ 1
[    0.822545] initcall init_mqueue_fs+0x0/0x160 returned 0 after 14 usecs
[    0.823140] calling  key_proc_init+0x0/0x80 @ 1
[    0.823581] initcall key_proc_init+0x0/0x80 returned 0 after 2 usecs
[    0.824181] calling  selinux_nf_ip_init+0x0/0x60 @ 1
[    0.824659] initcall selinux_nf_ip_init+0x0/0x60 returned 0 after 0 usecs
[    0.825273] calling  init_sel_fs+0x0/0x140 @ 1
[    0.825692] initcall init_sel_fs+0x0/0x140 returned 0 after 0 usecs
[    0.826264] calling  selnl_init+0x0/0xa0 @ 1
[    0.826679] initcall selnl_init+0x0/0xa0 returned 0 after 8 usecs
[    0.827714] calling  sel_netif_init+0x0/0x50 @ 1
[    0.828096] initcall sel_netif_init+0x0/0x50 returned 0 after 0 usecs
[    0.828583] calling  sel_netnode_init+0x0/0x40 @ 1
[    0.828975] initcall sel_netnode_init+0x0/0x40 returned 0 after 0 usecs
[    0.829346] Freeing initrd memory: 72972K
[    0.829469] calling  sel_netport_init+0x0/0x40 @ 1
[    0.830181] initcall sel_netport_init+0x0/0x40 returned 0 after 0 usecs
[    0.830676] calling  aurule_init+0x0/0x40 @ 1
[    0.831023] initcall aurule_init+0x0/0x40 returned 0 after 3 usecs
[    0.831492] calling  apparmor_nf_ip_init+0x0/0x50 @ 1
[    0.831880] initcall apparmor_nf_ip_init+0x0/0x50 returned 0 after 0 usecs
[    0.832429] calling  bpf_crypto_skcipher_init+0x0/0x20 @ 1
[    0.832934] initcall bpf_crypto_skcipher_init+0x0/0x20 returned 0 after 0 usecs
[    0.833543] calling  crypto_hkdf_module_init+0x0/0x20 @ 1
[    0.833963] initcall crypto_hkdf_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.834585] calling  jent_mod_init+0x0/0xf0 @ 1
[    0.841128] initcall jent_mod_init+0x0/0xf0 returned 0 after 6115 usecs
[    0.841656] calling  asymmetric_key_init+0x0/0x20 @ 1
[    0.842046] Key type asymmetric registered
[    0.842375] initcall asymmetric_key_init+0x0/0x20 returned 0 after 330 usecs
[    0.842893] calling  x509_key_init+0x0/0x20 @ 1
[    0.843250] Asymmetric key parser 'x509' registered
[    0.843630] initcall x509_key_init+0x0/0x20 returned 0 after 380 usecs
[    0.844115] calling  crypto_kdf108_init+0x0/0x20 @ 1
[    0.844498] initcall crypto_kdf108_init+0x0/0x20 returned 0 after 0 usecs
[    0.845023] calling  blkdev_init+0x0/0x30 @ 1
[    0.845389] initcall blkdev_init+0x0/0x30 returned 0 after 11 usecs
[    0.845871] calling  proc_genhd_init+0x0/0x50 @ 1
[    0.846256] initcall proc_genhd_init+0x0/0x50 returned 0 after 3 usecs
[    0.846750] calling  bsg_init+0x0/0xa0 @ 1
[    0.847086] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    0.847641] initcall bsg_init+0x0/0xa0 returned 0 after 562 usecs
[    0.848103] calling  throtl_init+0x0/0x50 @ 1
[    0.848577] initcall throtl_init+0x0/0x50 returned 0 after 99 usecs
[    0.849066] calling  ioc_init+0x0/0x20 @ 1
[    0.849414] initcall ioc_init+0x0/0x20 returned 0 after 4 usecs
[    0.849877] calling  deadline_init+0x0/0x20 @ 1
[    0.850241] io scheduler mq-deadline registered
[    0.850601] initcall deadline_init+0x0/0x20 returned 0 after 361 usecs
[    0.851095] calling  bfq_init+0x0/0xf0 @ 1
[    0.851442] io scheduler bfq registered
[    0.851749] initcall bfq_init+0x0/0xf0 returned 0 after 320 usecs
[    0.852205] calling  io_uring_init+0x0/0xe0 @ 1
[    0.852575] initcall io_uring_init+0x0/0xe0 returned 0 after 14 usecs
[    0.853070] calling  blake2s_mod_init+0x0/0x20 @ 1
[    0.853444] initcall blake2s_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.853938] calling  btree_module_init+0x0/0x80 @ 1
[    0.854321] initcall btree_module_init+0x0/0x80 returned 0 after 1 usecs
[    0.854821] calling  percpu_counter_startup+0x0/0x70 @ 1
[    0.855316] initcall percpu_counter_startup+0x0/0x70 returned 0 after 87 usecs
[    0.855852] calling  digsig_init+0x0/0x50 @ 1
[    0.856200] initcall digsig_init+0x0/0x50 returned 0 after 3 usecs
[    0.856665] calling  phy_core_init+0x0/0x60 @ 1
[    0.857037] initcall phy_core_init+0x0/0x60 returned 0 after 13 usecs
[    0.857893] calling  amd_gpio_driver_init+0x0/0x30 @ 1
[    0.858307] initcall amd_gpio_driver_init+0x0/0x30 returned 0 after 11 usecs
[    0.858831] calling  crystalcove_pwm_driver_init+0x0/0x30 @ 1
[    0.859268] initcall crystalcove_pwm_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.859824] calling  pwm_lpss_driver_pci_init+0x0/0x30 @ 1
[    0.860251] initcall pwm_lpss_driver_pci_init+0x0/0x30 returned 0 after 9 usecs
[    0.860790] calling  pwm_lpss_driver_platform_init+0x0/0x30 @ 1
[    0.861254] initcall pwm_lpss_driver_platform_init+0x0/0x30 returned 0 after 2 usecs
[    0.861826] calling  ledtrig_disk_init+0x0/0x50 @ 1
[    0.862206] initcall ledtrig_disk_init+0x0/0x50 returned 0 after 2 usecs
[    0.862700] calling  ledtrig_mtd_init+0x0/0x40 @ 1
[    0.863071] initcall ledtrig_mtd_init+0x0/0x40 returned 0 after 0 usecs
[    0.863570] calling  ledtrig_cpu_init+0x0/0x100 @ 1
[    0.864096] ledtrig-cpu: registered to indicate activity on CPUs
[    0.864553] initcall ledtrig_cpu_init+0x0/0x100 returned 0 after 605 usecs
[    0.865063] calling  ledtrig_panic_init+0x0/0x60 @ 1
[    0.865444] initcall ledtrig_panic_init+0x0/0x60 returned 0 after 1 usecs
[    0.865945] calling  pcie_portdrv_init+0x0/0x60 @ 1
[    0.866358] initcall pcie_portdrv_init+0x0/0x60 returned 0 after 20 usecs
[    0.866884] calling  pci_proc_init+0x0/0x80 @ 1
[    0.867249] initcall pci_proc_init+0x0/0x80 returned 0 after 8 usecs
[    0.867816] calling  pci_hotplug_init+0x0/0x50 @ 1
[    0.868192] initcall pci_hotplug_init+0x0/0x50 returned 0 after 0 usecs
[    0.868688] calling  shpcd_init+0x0/0x30 @ 1
[    0.869055] initcall shpcd_init+0x0/0x30 returned 0 after 10 usecs
[    0.869525] calling  pci_ep_cfs_init+0x0/0x100 @ 1
[    0.869986] initcall pci_ep_cfs_init+0x0/0x100 returned 0 after 23 usecs
[    0.870560] calling  pci_epc_init+0x0/0x20 @ 1
[    0.870972] initcall pci_epc_init+0x0/0x20 returned 0 after 5 usecs
[    0.871592] calling  pci_epf_init+0x0/0x50 @ 1
[    0.871952] initcall pci_epf_init+0x0/0x50 returned 0 after 8 usecs
[    0.872423] calling  dw_plat_pcie_driver_init+0x0/0x30 @ 1
[    0.872851] initcall dw_plat_pcie_driver_init+0x0/0x30 returned 0 after 4 usecs
[    0.873409] calling  imsttfb_init+0x0/0x150 @ 1
[    0.873777] initcall imsttfb_init+0x0/0x150 returned 0 after 9 usecs
[    0.874259] calling  asiliantfb_init+0x0/0x60 @ 1
[    0.874630] initcall asiliantfb_init+0x0/0x60 returned 0 after 7 usecs
[    0.875116] calling  vesafb_driver_init+0x0/0x30 @ 1
[    0.875498] initcall vesafb_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.876001] calling  efifb_driver_init+0x0/0x30 @ 1
[    0.876379] initcall efifb_driver_init+0x0/0x30 returned 0 after 1 usecs
[    0.876900] calling  simplefb_driver_init+0x0/0x30 @ 1
[    0.877384] initcall simplefb_driver_init+0x0/0x30 returned 0 after 3 usecs
[    0.878008] calling  intel_idle_init+0x0/0xd90 @ 1
[    0.878463] initcall intel_idle_init+0x0/0xd90 returned -19 after 2 usecs
[    0.879066] calling  ged_driver_init+0x0/0x30 @ 1
[    0.879509] initcall ged_driver_init+0x0/0x30 returned 0 after 3 usecs
[    0.880093] calling  acpi_ac_init+0x0/0x60 @ 1
[    0.880535] initcall acpi_ac_init+0x0/0x60 returned 0 after 19 usecs
[    0.881110] calling  acpi_button_driver_init+0x0/0x70 @ 1
[    0.881635] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    0.882336] ACPI: button: Power Button [PWRF]
[    0.882748] probe of LNXPWRBN:00 returned 0 after 1143 usecs
[    0.883239] initcall acpi_button_driver_init+0x0/0x70 returned 0 after 1640 usecs
[    0.883859] calling  acpi_fan_driver_init+0x0/0x30 @ 1
[    0.884260] initcall acpi_fan_driver_init+0x0/0x30 returned 0 after 6 usecs
[    0.884774] calling  acpi_processor_driver_init+0x0/0xd0 @ 1
[    0.885239] probe of cpu0 returned 0 after 19 usecs
[    0.885631] probe of cpu1 returned 0 after 9 usecs
[    0.886014] probe of cpu2 returned 0 after 8 usecs
[    0.886401] probe of cpu3 returned 0 after 8 usecs
[    0.887008] initcall acpi_processor_driver_init+0x0/0xd0 returned 0 after 1796 usecs
[    0.888024] calling  acpi_thermal_init+0x0/0xa0 @ 1
[    0.888481] initcall acpi_thermal_init+0x0/0xa0 returned 0 after 78 usecs
[    0.888995] calling  acpi_battery_init+0x0/0x60 @ 1
[    0.889451] initcall acpi_battery_init+0x0/0x60 returned 0 after 11 usecs
[    0.890059] calling  bgrt_init+0x0/0xe0 @ 1
[    0.890468] initcall bgrt_init+0x0/0xe0 returned -19 after 2 usecs
[    0.891026] calling  acpi_aml_init+0x0/0xe0 @ 1
[    0.891462] initcall acpi_aml_init+0x0/0xe0 returned 0 after 10 usecs
[    0.892043] calling  erst_init+0x0/0x350 @ 1
[    0.892449] initcall erst_init+0x0/0x350 returned 0 after 0 usecs
[    0.893011] calling  gpio_clk_driver_init+0x0/0x30 @ 1
[    0.893429] initcall gpio_clk_driver_init+0x0/0x30 returned 0 after 4 usecs
[    0.893946] calling  gated_fixed_clk_driver_init+0x0/0x30 @ 1
[    0.894387] initcall gated_fixed_clk_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.894941] calling  fch_clk_driver_init+0x0/0x30 @ 1
[    0.895332] initcall fch_clk_driver_init+0x0/0x30 returned 0 after 1 usecs
[    0.895841] calling  plt_clk_driver_init+0x0/0x30 @ 1
[    0.896262] initcall plt_clk_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.896874] calling  virtio_mmio_init+0x0/0x30 @ 1
[    0.897324] initcall virtio_mmio_init+0x0/0x30 returned 0 after 3 usecs
[    0.897920] calling  virtio_pci_driver_init+0x0/0x30 @ 1
[    0.909158] ACPI: \_SB_.LNKC: Enabled at IRQ 10
[    0.910254] probe of 0000:00:03.0 returned 0 after 11837 usecs
[    0.921189] ACPI: \_SB_.LNKB: Enabled at IRQ 10
[    0.922190] probe of 0000:00:06.0 returned 0 after 11394 usecs
[    0.933564] probe of 0000:00:07.0 returned 0 after 10824 usecs
[    0.944565] probe of 0000:00:08.0 returned 0 after 10452 usecs
[    0.945099] initcall virtio_pci_driver_init+0x0/0x30 returned 0 after 46686 usecs
[    0.945777] calling  virtio_balloon_driver_init+0x0/0x30 @ 1
[    0.946549] probe of virtio3 returned 0 after 245 usecs
[    0.947032] initcall virtio_balloon_driver_init+0x0/0x30 returned 0 after 731 usecs
[    0.947974] calling  xenbus_probe_initcall+0x0/0xb0 @ 1
[    0.948406] initcall xenbus_probe_initcall+0x0/0xb0 returned -19 after 0 usecs
[    0.948959] calling  xenbus_init+0x0/0x60 @ 1
[    0.949311] initcall xenbus_init+0x0/0x60 returned -19 after 0 usecs
[    0.949788] calling  xenbus_backend_init+0x0/0x60 @ 1
[    0.950192] initcall xenbus_backend_init+0x0/0x60 returned -19 after 0 usecs
[    0.950731] calling  hyper_sysfs_init+0x0/0x250 @ 1
[    0.951112] initcall hyper_sysfs_init+0x0/0x250 returned -19 after 0 usecs
[    0.951624] calling  hypervisor_subsys_init+0x0/0x40 @ 1
[    0.952034] initcall hypervisor_subsys_init+0x0/0x40 returned -19 after 0 usecs
[    0.952575] calling  platform_driver_init+0x0/0x30 @ 1
[    0.952987] initcall platform_driver_init+0x0/0x30 returned 0 after 12 usecs
[    0.953505] calling  xen_late_init_mcelog+0x0/0x90 @ 1
[    0.953898] initcall xen_late_init_mcelog+0x0/0x90 returned -19 after 0 usecs
[    0.954429] calling  xen_acpi_processor_init+0x0/0x200 @ 1
[    0.954846] initcall xen_acpi_processor_init+0x0/0x200 returned -19 after 0 usecs
[    0.955400] calling  n_null_init+0x0/0x30 @ 1
[    0.955747] initcall n_null_init+0x0/0x30 returned 0 after 0 usecs
[    0.956209] calling  pty_init+0x0/0x400 @ 1
[    0.956585] initcall pty_init+0x0/0x400 returned 0 after 43 usecs
[    0.957052] calling  sysrq_init+0x0/0x90 @ 1
[    0.957403] initcall sysrq_init+0x0/0x90 returned 0 after 2 usecs
[    0.957862] calling  xen_hvc_init+0x0/0x200 @ 1
[    0.958219] initcall xen_hvc_init+0x0/0x200 returned -19 after 0 usecs
[    0.958701] calling  serial8250_init+0x0/0x130 @ 1
[    0.959068] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.959568] probe of 00:00:0 returned 0 after 2 usecs
[    0.959969] probe of 00:00:0.0 returned 0 after 1 usecs
[    0.960527] 00:00: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.961273] probe of 00:00 returned 0 after 1721 usecs
[    0.961708] probe of serial8250:0 returned 0 after 3 usecs
[    0.962149] probe of serial8250:0.1 returned 0 after 1 usecs
[    0.962640] probe of serial8250:0.2 returned 0 after 1 usecs
[    0.963111] probe of serial8250:0.3 returned 0 after 1 usecs
[    0.963585] probe of serial8250:0.4 returned 0 after 1 usecs
[    0.964050] probe of serial8250:0.5 returned 0 after 6 usecs
[    0.964512] probe of serial8250:0.6 returned 0 after 1 usecs
[    0.964991] probe of serial8250:0.7 returned 0 after 1 usecs
[    0.965471] probe of serial8250:0.8 returned 0 after 1 usecs
[    0.965933] probe of serial8250:0.9 returned 0 after 1 usecs
[    0.966453] probe of serial8250:0.10 returned 0 after 2 usecs
[    0.966994] probe of serial8250:0.11 returned 0 after 2 usecs
[    0.967493] probe of serial8250:0.12 returned 0 after 1 usecs
[    0.968046] probe of serial8250:0.13 returned 0 after 1 usecs
[    0.968599] probe of serial8250:0.14 returned 0 after 1 usecs
[    0.969160] probe of serial8250:0.15 returned 0 after 2 usecs
[    0.969709] probe of serial8250:0.16 returned 0 after 1 usecs
[    0.970275] probe of serial8250:0.17 returned 0 after 2 usecs
[    0.970744] probe of serial8250:0.18 returned 0 after 1 usecs
[    0.971244] probe of serial8250:0.19 returned 0 after 1 usecs
[    0.971714] probe of serial8250:0.20 returned 0 after 1 usecs
[    0.972182] probe of serial8250:0.21 returned 0 after 1 usecs
[    0.972683] probe of serial8250:0.22 returned 0 after 1 usecs
[    0.973191] probe of serial8250:0.23 returned 0 after 3 usecs
[    0.973680] probe of serial8250:0.24 returned 0 after 2 usecs
[    0.974154] probe of serial8250:0.25 returned 0 after 1 usecs
[    0.974626] probe of serial8250:0.26 returned 0 after 1 usecs
[    0.975095] probe of serial8250:0.27 returned 0 after 1 usecs
[    0.975570] probe of serial8250:0.28 returned 0 after 2 usecs
[    0.976040] probe of serial8250:0.29 returned 0 after 1 usecs
[    0.976509] probe of serial8250:0.30 returned 0 after 1 usecs
[    0.976988] probe of serial8250:0.31 returned 0 after 1 usecs
[    0.977928] probe of serial8250 returned 0 after 3 usecs
[    0.978430] initcall serial8250_init+0x0/0x130 returned 0 after 19361 usecs
[    0.979057] calling  serial_pci_driver_init+0x0/0x30 @ 1
[    0.979564] initcall serial_pci_driver_init+0x0/0x30 returned 0 after 18 usecs
[    0.980207] calling  pericom8250_pci_driver_init+0x0/0x30 @ 1
[    0.980741] initcall pericom8250_pci_driver_init+0x0/0x30 returned 0 after 7 usecs
[    0.981419] calling  max310x_uart_init+0x0/0x80 @ 1
[    0.981815] initcall max310x_uart_init+0x0/0x80 returned 0 after 10 usecs
[    0.982327] calling  sccnxp_uart_driver_init+0x0/0x30 @ 1
[    0.982797] initcall sccnxp_uart_driver_init+0x0/0x30 returned 0 after 4 usecs
[    0.983435] calling  init_kgdboc+0x0/0x90 @ 1
[    0.983869] probe of kgdboc returned 0 after 3 usecs
[    0.984329] initcall init_kgdboc+0x0/0x90 returned 0 after 478 usecs
[    0.984905] calling  random_sysctls_init+0x0/0x40 @ 1
[    0.985380] initcall random_sysctls_init+0x0/0x40 returned 0 after 5 usecs
[    0.985993] calling  ttyprintk_init+0x0/0x140 @ 1
[    0.986448] initcall ttyprintk_init+0x0/0x140 returned 0 after 15 usecs
[    0.987036] calling  virtio_console_init+0x0/0xf0 @ 1
[    0.992338] probe of virtio2 returned 0 after 4827 usecs
[    0.992784] initcall virtio_console_init+0x0/0xf0 returned 0 after 5283 usecs
[    0.993371] calling  hpet_init+0x0/0xa0 @ 1
[    0.993978] initcall hpet_init+0x0/0xa0 returned 0 after 69 usecs
[    0.994449] calling  agp_init+0x0/0x40 @ 1
[    0.994779] Linux agpgart interface v0.103
[    0.995109] initcall agp_init+0x0/0x40 returned 0 after 330 usecs
[    0.995570] calling  agp_amd64_mod_init+0x0/0x40 @ 1
[    0.995968] initcall agp_amd64_mod_init+0x0/0x40 returned -19 after 12 usecs
[    0.996494] calling  agp_intel_init+0x0/0x40 @ 1
[    0.996889] probe of 0000:00:00.0 returned 19 after 30 usecs
[    0.997341] initcall agp_intel_init+0x0/0x40 returned 0 after 483 usecs
[    0.997841] calling  agp_via_init+0x0/0x40 @ 1
[    0.998210] initcall agp_via_init+0x0/0x40 returned 0 after 5 usecs
[    0.998682] calling  init_tis+0x0/0xf0 @ 1
[    0.999025] initcall init_tis+0x0/0xf0 returned 0 after 8 usecs
[    0.999470] calling  crb_acpi_driver_init+0x0/0x30 @ 1
[    0.999899] initcall crb_acpi_driver_init+0x0/0x30 returned 0 after 11 usecs
[    1.000422] calling  cn_proc_init+0x0/0x60 @ 1
[    1.000770] initcall cn_proc_init+0x0/0x60 returned 0 after 0 usecs
[    1.001257] calling  topology_sysfs_init+0x0/0x40 @ 1
[    1.001689] initcall topology_sysfs_init+0x0/0x40 returned 0 after 34 usecs
[    1.002221] calling  cacheinfo_sysfs_init+0x0/0x40 @ 1
[    1.002787] initcall cacheinfo_sysfs_init+0x0/0x40 returned 0 after 164 usecs
[    1.003326] calling  devcoredump_init+0x0/0x20 @ 1
[    1.003706] initcall devcoredump_init+0x0/0x20 returned 0 after 3 usecs
[    1.004207] calling  loop_init+0x0/0x100 @ 1
[    1.005359] loop: module loaded
[    1.005631] initcall loop_init+0x0/0x100 returned 0 after 1084 usecs
[    1.006111] calling  xlblk_init+0x0/0x190 @ 1
[    1.006453] initcall xlblk_init+0x0/0x190 returned -19 after 0 usecs
[    1.006923] calling  tps65912_i2c_driver_init+0x0/0x30 @ 1
[    1.007700] initcall tps65912_i2c_driver_init+0x0/0x30 returned 0 after 6 usecs
[    1.008242] calling  tps65912_spi_driver_init+0x0/0x30 @ 1
[    1.008669] initcall tps65912_spi_driver_init+0x0/0x30 returned 0 after 5 usecs
[    1.009214] calling  twl_driver_init+0x0/0x30 @ 1
[    1.009585] initcall twl_driver_init+0x0/0x30 returned 0 after 3 usecs
[    1.010081] calling  twl4030_audio_driver_init+0x0/0x30 @ 1
[    1.010514] initcall twl4030_audio_driver_init+0x0/0x30 returned 0 after 4 usecs
[    1.011070] calling  twl6040_driver_init+0x0/0x30 @ 1
[    1.011465] initcall twl6040_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.011981] calling  da9063_i2c_driver_init+0x0/0x30 @ 1
[    1.012397] initcall da9063_i2c_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.012938] calling  max14577_i2c_init+0x0/0x30 @ 1
[    1.013334] initcall max14577_i2c_init+0x0/0x30 returned 0 after 2 usecs
[    1.013839] calling  max77693_i2c_driver_init+0x0/0x30 @ 1
[    1.014271] initcall max77693_i2c_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.014808] calling  adp5520_driver_init+0x0/0x30 @ 1
[    1.015198] initcall adp5520_driver_init+0x0/0x30 returned 0 after 1 usecs
[    1.015705] calling  crystal_cove_i2c_driver_init+0x0/0x30 @ 1
[    1.016149] initcall crystal_cove_i2c_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.016709] calling  cht_wc_driver_init+0x0/0x30 @ 1
[    1.017121] initcall cht_wc_driver_init+0x0/0x30 returned 0 after 3 usecs
[    1.017624] calling  e820_pmem_driver_init+0x0/0x30 @ 1
[    1.018028] initcall e820_pmem_driver_init+0x0/0x30 returned 0 after 3 usecs
[    1.018550] calling  hmem_init+0x0/0x40 @ 1
[    1.018884] initcall hmem_init+0x0/0x40 returned 0 after 2 usecs
[    1.019337] calling  udmabuf_dev_init+0x0/0xc0 @ 1
[    1.019751] initcall udmabuf_dev_init+0x0/0xc0 returned 0 after 40 usecs
[    1.020253] calling  init_sd+0x0/0x140 @ 1
[    1.020585] initcall init_sd+0x0/0x140 returned 0 after 8 usecs
[    1.021037] calling  init_sr+0x0/0x60 @ 1
[    1.021368] initcall init_sr+0x0/0x60 returned 0 after 2 usecs
[    1.021806] calling  init_sg+0x0/0x200 @ 1
[    1.022141] initcall init_sg+0x0/0x200 returned 0 after 8 usecs
[    1.022591] calling  piix_init+0x0/0x40 @ 1
[    1.022928] ata_piix 0000:00:01.1: version 2.13
[    1.023907] scsi host0: ata_piix
[    1.024291] scsi host1: ata_piix
[    1.024579] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc5a0 irq 14 lpm-pol 0
[    1.025146] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc5a8 irq 15 lpm-pol 0
[    1.025710] probe of 0000:00:01.1 returned 0 after 2786 usecs
[    1.026159] initcall piix_init+0x0/0x40 returned 0 after 3238 usecs
[    1.026630] calling  sis_pci_driver_init+0x0/0x30 @ 1
[    1.027026] initcall sis_pci_driver_init+0x0/0x30 returned 0 after 6 usecs
[    1.027538] calling  ata_generic_pci_driver_init+0x0/0x30 @ 1
[    1.027979] initcall ata_generic_pci_driver_init+0x0/0x30 returned 0 after 5 usecs
[    1.028540] calling  blackhole_netdev_init+0x0/0x80 @ 1
[    1.028970] initcall blackhole_netdev_init+0x0/0x80 returned 0 after 24 usecs
[    1.029589] calling  fixed_mdio_bus_init+0x0/0xe0 @ 1
[    1.029988] probe of Fixed MDIO bus returned 0 after 2 usecs
[    1.030466] initcall fixed_mdio_bus_init+0x0/0xe0 returned 0 after 487 usecs
[    1.030992] calling  tun_init+0x0/0xd0 @ 1
[    1.031319] tun: Universal TUN/TAP device driver, 1.6
[    1.031756] initcall tun_init+0x0/0xd0 returned 0 after 437 usecs
[    1.032223] calling  ppp_init+0x0/0x120 @ 1
[    1.032560] PPP generic driver version 2.4.2
[    1.032933] initcall ppp_init+0x0/0x120 returned 0 after 372 usecs
[    1.033428] calling  netif_init+0x0/0x80 @ 1
[    1.033808] initcall netif_init+0x0/0x80 returned -19 after 0 usecs
[    1.034283] calling  vfio_init+0x0/0xa0 @ 1
[    1.034727] VFIO - User Level meta-driver version: 0.3
[    1.035124] initcall vfio_init+0x0/0xa0 returned 0 after 507 usecs
[    1.035589] calling  vfio_iommu_type1_init+0x0/0x20 @ 1
[    1.035993] initcall vfio_iommu_type1_init+0x0/0x20 returned 0 after 0 usecs
[    1.036517] calling  vfio_pci_core_init+0x0/0x20 @ 1
[    1.036910] initcall vfio_pci_core_init+0x0/0x20 returned 0 after 2 usecs
[    1.037752] calling  vfio_pci_init+0x0/0x1c0 @ 1
[    1.038132] initcall vfio_pci_init+0x0/0x1c0 returned 0 after 9 usecs
[    1.038615] calling  cdrom_init+0x0/0x20 @ 1
[    1.038956] initcall cdrom_init+0x0/0x20 returned 0 after 3 usecs
[    1.039415] calling  dwc2_platform_driver_init+0x0/0x30 @ 1
[    1.039846] initcall dwc2_platform_driver_init+0x0/0x30 returned 0 after 7 usecs
[    1.040399] calling  ehci_hcd_init+0x0/0x100 @ 1
[    1.040770] initcall ehci_hcd_init+0x0/0x100 returned 0 after 3 usecs
[    1.041264] calling  ehci_pci_init+0x0/0x70 @ 1
[    1.041631] initcall ehci_pci_init+0x0/0x70 returned 0 after 9 usecs
[    1.042111] calling  ehci_platform_init+0x0/0x50 @ 1
[    1.042502] initcall ehci_platform_init+0x0/0x50 returned 0 after 3 usecs
[    1.043013] calling  ohci_hcd_mod_init+0x0/0x80 @ 1
[    1.043392] initcall ohci_hcd_mod_init+0x0/0x80 returned 0 after 1 usecs
[    1.043890] calling  ohci_pci_init+0x0/0x70 @ 1
[    1.044247] initcall ohci_pci_init+0x0/0x70 returned 0 after 5 usecs
[    1.044720] calling  ohci_platform_init+0x0/0x50 @ 1
[    1.045106] initcall ohci_platform_init+0x0/0x50 returned 0 after 4 usecs
[    1.045606] calling  uhci_hcd_init+0x0/0x140 @ 1
[    1.045974] initcall uhci_hcd_init+0x0/0x140 returned 0 after 9 usecs
[    1.046460] calling  xhci_hcd_init+0x0/0x40 @ 1
[    1.046816] initcall xhci_hcd_init+0x0/0x40 returned 0 after 2 usecs
[    1.047290] calling  xhci_pci_init+0x0/0x80 @ 1
[    1.058966] xhci_hcd 0000:00:04.0: xHCI Host Controller
[    1.059400] xhci_hcd 0000:00:04.0: new USB bus registered, assigned bus number 1
[    1.060100] xhci_hcd 0000:00:04.0: hcc params 0x00087001 hci version 0x100 quirks 0x0000000000000010
[    1.061126] xhci_hcd 0000:00:04.0: xHCI Host Controller
[    1.061536] xhci_hcd 0000:00:04.0: new USB bus registered, assigned bus number 2
[    1.062084] xhci_hcd 0000:00:04.0: Host supports USB 3.0 SuperSpeed
[    1.062613] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.15
[    1.063225] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.063761] usb usb1: Product: xHCI Host Controller
[    1.064189] usb usb1: Manufacturer: Linux 6.15.0-rc5+ xhci-hcd
[    1.064630] usb usb1: SerialNumber: 0000:00:04.0
[    1.065093] hub 1-0:1.0: USB hub found
[    1.065441] hub 1-0:1.0: 15 ports detected
[    1.066049] probe of 1-0:1.0 returned 0 after 959 usecs
[    1.066473] probe of usb1 returned 0 after 1399 usecs
[    1.066893] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.067849] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.15
[    1.068454] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.068997] usb usb2: Product: xHCI Host Controller
[    1.069377] usb usb2: Manufacturer: Linux 6.15.0-rc5+ xhci-hcd
[    1.069819] usb usb2: SerialNumber: 0000:00:04.0
[    1.070252] hub 2-0:1.0: USB hub found
[    1.070616] hub 2-0:1.0: 15 ports detected
[    1.071258] probe of 2-0:1.0 returned 0 after 1008 usecs
[    1.071677] probe of usb2 returned 0 after 1440 usecs
[    1.072078] probe of 0000:00:04.0 returned 0 after 24430 usecs
[    1.072532] initcall xhci_pci_init+0x0/0x80 returned 0 after 24887 usecs
[    1.073052] calling  kgdbdbgp_start_thread+0x0/0x70 @ 1
[    1.073458] initcall kgdbdbgp_start_thread+0x0/0x70 returned 0 after 2 usecs
[    1.073986] calling  i8042_init+0x0/0x750 @ 1
[    1.074368] probe of 00:01 returned 0 after 6 usecs
[    1.074756] probe of 00:02 returned 0 after 3 usecs
[    1.075136] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[    1.076187] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.076578] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.077017] probe of i8042 returned 0 after 1271 usecs
[    1.077412] initcall i8042_init+0x0/0x750 returned 0 after 3079 usecs
[    1.077895] calling  mousedev_init+0x0/0xa0 @ 1
[    1.078311] mousedev: PS/2 mouse device common for all mice
[    1.078742] initcall mousedev_init+0x0/0xa0 returned 0 after 483 usecs
[    1.079237] calling  evdev_init+0x0/0x20 @ 1
[    1.079622] initcall evdev_init+0x0/0x20 returned 0 after 44 usecs
[    1.080094] calling  atkbd_init+0x0/0x40 @ 1
[    1.080445] initcall atkbd_init+0x0/0x40 returned 0 after 9 usecs
[    1.080919] calling  elants_i2c_driver_init+0x0/0x30 @ 1
[    1.081522] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    1.082166] initcall elants_i2c_driver_init+0x0/0x30 returned 0 after 830 usecs
[    1.082718] calling  uinput_misc_init+0x0/0x20 @ 1
[    1.083126] probe of serio0 returned 0 after 1785 usecs
[    1.083634] initcall uinput_misc_init+0x0/0x20 returned 0 after 523 usecs
[    1.084205] calling  cmos_init+0x0/0x90 @ 1
[    1.084624] probe of serio1 returned 19 after 1009 usecs
[    1.084936] rtc_cmos 00:04: RTC can wake from S4
[    1.085631] probe of alarmtimer.0.auto returned 0 after 3 usecs
[    1.086099] rtc_cmos 00:04: registered as rtc0
[    1.086484] rtc_cmos 00:04: setting system clock to 2025-06-23T07:58:43 UTC (1750665523)
[    1.087121] rtc_cmos 00:04: alarms up to one day, y3k, 242 bytes nvram
[    1.087612] probe of 00:04 returned 0 after 2682 usecs
[    1.088008] initcall cmos_init+0x0/0x90 returned 0 after 3458 usecs
[    1.088479] calling  i2c_dev_init+0x0/0xc0 @ 1
[    1.088837] i2c_dev: i2c /dev entries driver
[    1.089187] initcall i2c_dev_init+0x0/0xc0 returned 0 after 350 usecs
[    1.089666] calling  restart_poweroff_driver_init+0x0/0x30 @ 1
[    1.090111] initcall restart_poweroff_driver_init+0x0/0x30 returned 0 after 5 usecs
[    1.090676] calling  thermal_throttle_init_device+0x0/0x60 @ 1
[    1.091118] initcall thermal_throttle_init_device+0x0/0x60 returned 0 after 0 usecs
[    1.091680] calling  watchdog_gov_noop_register+0x0/0x20 @ 1
[    1.092111] initcall watchdog_gov_noop_register+0x0/0x20 returned 0 after 2 usecs
[    1.092660] calling  dm_init+0x0/0x90 @ 1
[    1.092986] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    1.093886] device-mapper: uevent: version 1.0.3
[    1.094280] device-mapper: ioctl: 4.49.0-ioctl (2025-01-17) initialised: dm-devel@lists.linux.dev
[    1.094928] initcall dm_init+0x0/0x90 returned 0 after 1945 usecs
[    1.095387] calling  ghes_edac_init+0x0/0x470 @ 1
[    1.095779] initcall ghes_edac_init+0x0/0x470 returned -19 after 1 usecs
[    1.096277] calling  amd_pstate_init+0x0/0x330 @ 1
[    1.096648] initcall amd_pstate_init+0x0/0x330 returned -19 after 0 usecs
[    1.097551] calling  intel_pstate_init+0x0/0x8e0 @ 1
[    1.097936] intel_pstate: CPU model not supported
[    1.098305] initcall intel_pstate_init+0x0/0x8e0 returned -19 after 370 usecs
[    1.098927] calling  sysfb_init+0x0/0x110 @ 1
[    1.099525] vesafb: mode is 640x480x32, linelength=2560, pages=0
[    1.100269] vesafb: scrolling: redraw
[    1.100745] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.101452] vesafb: framebuffer at 0xf4000000, mapped to 0x0000000089e45e83, using 1216k, total 1216k
[    1.103277] Console: switching to colour frame buffer device 80x30
[    1.104155] fb0: VESA VGA frame buffer device
[    1.104722] probe of vesa-framebuffer.0 returned 0 after 5202 usecs
[    1.105483] initcall sysfb_init+0x0/0x110 returned 0 after 6011 usecs
[    1.106250] calling  esrt_sysfs_init+0x0/0x330 @ 1
[    1.106870] initcall esrt_sysfs_init+0x0/0x330 returned -38 after 0 usecs
[    1.107670] calling  pmc_atom_init+0x0/0x2b0 @ 1
[    1.108247] initcall pmc_atom_init+0x0/0x2b0 returned -19 after 4 usecs
[    1.109042] calling  rproc_virtio_driver_init+0x0/0x30 @ 1
[    1.109726] initcall rproc_virtio_driver_init+0x0/0x30 returned 0 after 11 usecs
[    1.110590] calling  vmgenid_plaform_driver_init+0x0/0x30 @ 1
[    1.111305] initcall vmgenid_plaform_driver_init+0x0/0x30 returned 0 after 9 usecs
[    1.112186] calling  extcon_class_init+0x0/0x60 @ 1
[    1.112789] initcall extcon_class_init+0x0/0x60 returned 0 after 5 usecs
[    1.113585] calling  binder_init+0x0/0x280 @ 1
[    1.114274] initcall binder_init+0x0/0x280 returned 0 after 92 usecs
[    1.115027] calling  sock_diag_init+0x0/0x40 @ 1
[    1.115616] initcall sock_diag_init+0x0/0x40 returned 0 after 19 usecs
[    1.116392] calling  init_net_drop_monitor+0x0/0x120 @ 1
[    1.117052] drop_monitor: Initializing network drop monitor service
[    1.117818] initcall init_net_drop_monitor+0x0/0x120 returned 0 after 765 usecs
[    1.118490] calling  blackhole_init+0x0/0x20 @ 1
[    1.118880] initcall blackhole_init+0x0/0x20 returned 0 after 1 usecs
[    1.119536] calling  gre_offload_init+0x0/0x70 @ 1
[    1.119913] initcall gre_offload_init+0x0/0x70 returned 0 after 0 usecs
[    1.120412] calling  sysctl_ipv4_init+0x0/0x80 @ 1
[    1.120825] initcall sysctl_ipv4_init+0x0/0x80 returned 0 after 39 usecs
[    1.121326] calling  cubictcp_register+0x0/0x90 @ 1
[    1.121710] initcall cubictcp_register+0x0/0x90 returned 0 after 6 usecs
[    1.122217] calling  inet6_init+0x0/0x3f0 @ 1
[    1.122611] NET: Registered PF_INET6 protocol family
[    1.127225] Segment Routing with IPv6
[    1.128097] In-situ OAM (IOAM) with IPv6
[    1.128632] initcall inet6_init+0x0/0x3f0 returned 0 after 6043 usecs
[    1.129404] calling  packet_init+0x0/0xa0 @ 1
[    1.129954] NET: Registered PF_PACKET protocol family
[    1.130589] initcall packet_init+0x0/0xa0 returned 0 after 650 usecs
[    1.131339] calling  strp_dev_init+0x0/0x40 @ 1
[    1.131943] initcall strp_dev_init+0x0/0x40 returned 0 after 92 usecs
[    1.132435] calling  dcbnl_init+0x0/0x40 @ 1
[    1.132775] initcall dcbnl_init+0x0/0x40 returned 0 after 4 usecs
[    1.133358] calling  init_dns_resolver+0x0/0x100 @ 1
[    1.133970] Key type dns_resolver registered
[    1.134513] initcall init_dns_resolver+0x0/0x100 returned 0 after 548 usecs
[    1.135332] calling  handshake_init+0x0/0xb0 @ 1
[    1.135935] initcall handshake_init+0x0/0xb0 returned 0 after 21 usecs
[    1.136747] calling  pm_check_save_msr+0x0/0xd0 @ 1
[    1.137310] initcall pm_check_save_msr+0x0/0xd0 returned 0 after 17 usecs
[    1.137823] calling  mcheck_init_device+0x0/0x160 @ 1
[    1.138446] initcall mcheck_init_device+0x0/0x160 returned 0 after 205 usecs
[    1.138980] calling  dev_mcelog_init_device+0x0/0x100 @ 1
[    1.139424] initcall dev_mcelog_init_device+0x0/0x100 returned 0 after 33 usecs
[    1.140010] calling  kernel_do_mounts_initrd_sysctls_init+0x0/0x40 @ 1
[    1.140516] initcall kernel_do_mounts_initrd_sysctls_init+0x0/0x40 returned 0 after 4 usecs
[    1.141156] calling  tboot_late_init+0x0/0x330 @ 1
[    1.141691] initcall tboot_late_init+0x0/0x330 returned 0 after 0 usecs
[    1.142495] calling  intel_epb_init+0x0/0xa0 @ 1
[    1.143064] initcall intel_epb_init+0x0/0xa0 returned -19 after 0 usecs
[    1.143853] calling  mcheck_late_init+0x0/0x90 @ 1
[    1.144454] initcall mcheck_late_init+0x0/0x90 returned 0 after 15 usecs
[    1.145262] calling  severities_debugfs_init+0x0/0x40 @ 1
[    1.145919] initcall severities_debugfs_init+0x0/0x40 returned 0 after 1 usecs
[    1.146772] calling  microcode_init+0x0/0x1f0 @ 1
[    1.147340] initcall microcode_init+0x0/0x1f0 returned -22 after 0 usecs
[    1.148145] calling  resctrl_arch_late_init+0x0/0x5c0 @ 1
[    1.148802] initcall resctrl_arch_late_init+0x0/0x5c0 returned -19 after 3 usecs
[    1.149658] calling  cpu_init_debugfs+0x0/0xf0 @ 1
[    1.150261] initcall cpu_init_debugfs+0x0/0xf0 returned 0 after 9 usecs
[    1.151077] calling  sld_mitigate_sysctl_init+0x0/0x40 @ 1
[    1.151720] initcall sld_mitigate_sysctl_init+0x0/0x40 returned 0 after 3 usecs
[    1.152596] calling  hpet_insert_resource+0x0/0x40 @ 1
[    1.153241] initcall hpet_insert_resource+0x0/0x40 returned 1 after 0 usecs
[    1.154053] calling  start_sync_check_timer+0x0/0x70 @ 1
[    1.154700] initcall start_sync_check_timer+0x0/0x70 returned 0 after 0 usecs
[    1.155557] calling  update_mp_table+0x0/0x610 @ 1
[    1.156145] initcall update_mp_table+0x0/0x610 returned 0 after 0 usecs
[    1.156924] calling  lapic_insert_resource+0x0/0x60 @ 1
[    1.157899] initcall lapic_insert_resource+0x0/0x60 returned 0 after 0 usecs
[    1.158723] calling  print_ipi_mode+0x0/0x40 @ 1
[    1.159099] IPI shorthand broadcast: enabled
[    1.159442] initcall print_ipi_mode+0x0/0x40 returned 0 after 343 usecs
[    1.159939] calling  print_ICs+0x0/0x1e0 @ 1
[    1.160280] initcall print_ICs+0x0/0x1e0 returned 0 after 0 usecs
[    1.160741] calling  setup_efi_kvm_sev_migration+0x0/0x1c0 @ 1
[    1.161365] initcall setup_efi_kvm_sev_migration+0x0/0x1c0 returned 0 after 0 usecs
[    1.162278] calling  create_tlb_single_page_flush_ceiling+0x0/0x40 @ 1
[    1.163062] initcall create_tlb_single_page_flush_ceiling+0x0/0x40 returned 0 after 4 usecs
[    1.164024] calling  pat_memtype_list_init+0x0/0x50 @ 1
[    1.164667] initcall pat_memtype_list_init+0x0/0x50 returned 0 after 2 usecs
[    1.165496] calling  create_init_pkru_value+0x0/0x50 @ 1
[    1.166163] initcall create_init_pkru_value+0x0/0x50 returned 0 after 15 usecs
[    1.167016] calling  kernel_panic_sysctls_init+0x0/0x40 @ 1
[    1.167694] initcall kernel_panic_sysctls_init+0x0/0x40 returned 0 after 6 usecs
[    1.168563] calling  kernel_panic_sysfs_init+0x0/0x30 @ 1
[    1.169240] initcall kernel_panic_sysfs_init+0x0/0x30 returned 0 after 7 usecs
[    1.170086] calling  kernel_exit_sysctls_init+0x0/0x40 @ 1
[    1.170749] initcall kernel_exit_sysctls_init+0x0/0x40 returned 0 after 1 usecs
[    1.171597] calling  kernel_exit_sysfs_init+0x0/0x30 @ 1
[    1.172242] initcall kernel_exit_sysfs_init+0x0/0x30 returned 0 after 2 usecs
[    1.173107] calling  param_sysfs_builtin_init+0x0/0x200 @ 1
[    1.175516] initcall param_sysfs_builtin_init+0x0/0x200 returned 0 after 1718 usecs
[    1.176330] calling  reboot_ksysfs_init+0x0/0x90 @ 1
[    1.176959] initcall reboot_ksysfs_init+0x0/0x90 returned 0 after 11 usecs
[    1.177772] calling  sched_core_sysctl_init+0x0/0x40 @ 1
[    1.178438] initcall sched_core_sysctl_init+0x0/0x40 returned 0 after 4 usecs
[    1.179273] calling  sched_fair_sysctl_init+0x0/0x40 @ 1
[    1.179918] initcall sched_fair_sysctl_init+0x0/0x40 returned 0 after 1 usecs
[    1.180756] calling  sched_rt_sysctl_init+0x0/0x40 @ 1
[    1.181399] initcall sched_rt_sysctl_init+0x0/0x40 returned 0 after 1 usecs
[    1.182223] calling  sched_dl_sysctl_init+0x0/0x40 @ 1
[    1.182830] initcall sched_dl_sysctl_init+0x0/0x40 returned 0 after 1 usecs
[    1.183629] calling  sched_clock_init_late+0x0/0xb0 @ 1
[    1.184269] sched_clock: Marking stable (1092501375, 88892411)->(1296094439, -114700653)
[    1.185262] initcall sched_clock_init_late+0x0/0xb0 returned 0 after 993 usecs
[    1.186116] calling  sched_init_debug+0x0/0x330 @ 1
[    1.186749] initcall sched_init_debug+0x0/0x330 returned 0 after 37 usecs
[    1.187933] calling  cpu_latency_qos_init+0x0/0x60 @ 1
[    1.189132] initcall cpu_latency_qos_init+0x0/0x60 returned 0 after 589 usecs
[    1.189304] ata1.00: ATA-7: QEMU HARDDISK, 2.5+, max UDMA/100
[    1.189700] calling  pm_debugfs_init+0x0/0x40 @ 1
[    1.190391] ata1.00: 83886080 sectors, multi 16: LBA48 
[    1.190766] initcall pm_debugfs_init+0x0/0x40 returned 0 after 8 usecs
[    1.191376] ata1.01: ATA-7: QEMU HARDDISK, 2.5+, max UDMA/100
[    1.191863] calling  printk_late_init+0x0/0x180 @ 1
[    1.192546] ata1.01: 104857600 sectors, multi 16: LBA48 
[    1.192938] initcall printk_late_init+0x0/0x180 returned 0 after 7 usecs
[    1.194177] calling  init_srcu_module_notifier+0x0/0x50 @ 1
[    1.194674] initcall init_srcu_module_notifier+0x0/0x50 returned 0 after 2 usecs
[    1.194888] scsi 0:0:0:0: Direct-Access     ATA      QEMU HARDDISK    2.5+ PQ: 0 ANSI: 5
[    1.195244] calling  swiotlb_create_default_debugfs+0x0/0xb0 @ 1
[    1.195917] probe of 0:0:0:0 returned 19 after 5 usecs
[    1.196295] initcall swiotlb_create_default_debugfs+0x0/0xb0 returned 0 after 4 usecs
[    1.196741] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.197281] calling  tk_debug_sleep_time_init+0x0/0x40 @ 1
[    1.197713] sd 0:0:0:0: [sda] 83886080 512-byte logical blocks: (42.9 GB/40.0 GiB)
[    1.198134] initcall tk_debug_sleep_time_init+0x0/0x40 returned 0 after 2 usecs
[    1.199128] sd 0:0:0:0: [sda] Write Protect is off
[    1.199279] calling  bpf_ksym_iter_register+0x0/0x30 @ 1
[    1.199654] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.200063] initcall bpf_ksym_iter_register+0x0/0x30 returned 0 after 1 usecs
[    1.200483] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.200997] calling  kernel_acct_sysctls_init+0x0/0x40 @ 1
[    1.201004] initcall kernel_acct_sysctls_init+0x0/0x40 returned 0 after 4 usecs
[    1.201661] scsi 0:0:1:0: Direct-Access     ATA      QEMU HARDDISK    2.5+ PQ: 0 ANSI: 5
[    1.202076] calling  kexec_core_sysctl_init+0x0/0x40 @ 1
[    1.202633] sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[    1.203221] initcall kexec_core_sysctl_init+0x0/0x40 returned 0 after 3 usecs
[    1.203708] probe of 0:0:1:0 returned 19 after 2 usecs
[    1.204089] calling  bpf_rstat_kfunc_init+0x0/0x30 @ 1
[    1.204852] sd 0:0:1:0: [sdb] 104857600 512-byte logical blocks: (53.7 GB/50.0 GiB)
[    1.205032] initcall bpf_rstat_kfunc_init+0x0/0x30 returned 0 after 0 usecs
[    1.205510] sd 0:0:1:0: Attached scsi generic sg1 type 0
[    1.206072] calling  debugfs_kprobe_init+0x0/0x90 @ 1
[    1.206708] sd 0:0:1:0: [sdb] Write Protect is off
[    1.207115] initcall debugfs_kprobe_init+0x0/0x90 returned 0 after 3 usecs
[    1.207581] sd 0:0:1:0: [sdb] Mode Sense: 00 3a 00 00
[    1.207958] calling  kernel_delayacct_sysctls_init+0x0/0x40 @ 1
[    1.208531] sd 0:0:1:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.208926] initcall kernel_delayacct_sysctls_init+0x0/0x40 returned 0 after 5 usecs
[    1.209974] sd 0:0:1:0: [sdb] Preferred minimum I/O size 512 bytes
[    1.210123] calling  taskstats_init+0x0/0x50 @ 1
[    1.211540] registered taskstats version 1
[    1.211895] initcall taskstats_init+0x0/0x50 returned 0 after 366 usecs
[    1.212398] calling  ftrace_sysctl_init+0x0/0x30 @ 1
[    1.212783] initcall ftrace_sysctl_init+0x0/0x30 returned 0 after 1 usecs
[    1.213305] calling  init_hwlat_tracer+0x0/0x130 @ 1
[    1.213793] initcall init_hwlat_tracer+0x0/0x130 returned 0 after 95 usecs
[    1.214322] calling  bpf_key_sig_kfuncs_init+0x0/0x20 @ 1
[    1.214738] initcall bpf_key_sig_kfuncs_init+0x0/0x20 returned 0 after 3 usecs
[    1.215277] calling  bpf_kprobe_multi_kfuncs_init+0x0/0x20 @ 1
[    1.215870] initcall bpf_kprobe_multi_kfuncs_init+0x0/0x20 returned 0 after 2 usecs
[    1.216655] calling  kdb_ftrace_register+0x0/0x20 @ 1
[    1.217539] initcall kdb_ftrace_register+0x0/0x20 returned 0 after 1 usecs
[    1.218061] calling  bpf_global_ma_init+0x0/0x30 @ 1
[    1.218484] initcall bpf_global_ma_init+0x0/0x30 returned 0 after 25 usecs
[    1.219006] calling  bpf_syscall_sysctl_init+0x0/0x40 @ 1
[    1.219425] initcall bpf_syscall_sysctl_init+0x0/0x40 returned 0 after 3 usecs
[    1.219960] calling  unbound_reg_init+0x0/0x30 @ 1
[    1.220335] initcall unbound_reg_init+0x0/0x30 returned 0 after 1 usecs
[    1.220830] calling  kfunc_init+0x0/0x100 @ 1
[    1.221193] initcall kfunc_init+0x0/0x100 returned 0 after 0 usecs
[    1.221666] calling  bpf_map_iter_init+0x0/0x50 @ 1
[    1.222047] initcall bpf_map_iter_init+0x0/0x50 returned 0 after 0 usecs
[    1.222567] calling  init_subsystem+0x0/0x30 @ 1
[    1.222951] initcall init_subsystem+0x0/0x30 returned 0 after 2 usecs
[    1.223436] calling  task_iter_init+0x0/0xe0 @ 1
[    1.223803] initcall task_iter_init+0x0/0xe0 returned 0 after 2 usecs
[    1.224280] calling  bpf_prog_iter_init+0x0/0x30 @ 1
[    1.224661] initcall bpf_prog_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.225340] calling  bpf_link_iter_init+0x0/0x30 @ 1
[    1.225864] initcall bpf_link_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.226369] calling  init_trampolines+0x0/0x30 @ 1
[    1.226741] initcall init_trampolines+0x0/0x30 returned 0 after 2 usecs
[    1.227230] calling  rqspinlock_register_kfuncs+0x0/0x30 @ 1
[    1.227656] initcall rqspinlock_register_kfuncs+0x0/0x30 returned 0 after 0 usecs
[    1.228206] calling  kfunc_init+0x0/0x30 @ 1
[    1.228541] initcall kfunc_init+0x0/0x30 returned 0 after 0 usecs
[    1.229009] calling  bpf_cgroup_iter_init+0x0/0x30 @ 1
[    1.229406] initcall bpf_cgroup_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.229924] calling  cpumask_kfunc_init+0x0/0xb0 @ 1
[    1.230315] initcall cpumask_kfunc_init+0x0/0xb0 returned 0 after 3 usecs
[    1.230819] calling  crypto_kfunc_init+0x0/0xb0 @ 1
[    1.231201] initcall crypto_kfunc_init+0x0/0xb0 returned 0 after 0 usecs
[    1.231697] calling  bpf_kmem_cache_iter_init+0x0/0x30 @ 1
[    1.232115] initcall bpf_kmem_cache_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.232656] calling  load_system_certificate_list+0x0/0x40 @ 1
[    1.233107] Loading compiled-in X.509 certificates
[    1.233981] Loaded X.509 cert 'Build time autogenerated kernel key: 63dcfa1705afed8feebbcaee12f1a32f27ca64ce'
[    1.234725] initcall load_system_certificate_list+0x0/0x40 returned 0 after 1618 usecs
[    1.235311] calling  vmstat_late_init+0x0/0x30 @ 1
[    1.235691] initcall vmstat_late_init+0x0/0x30 returned 0 after 1 usecs
[    1.236180] calling  fault_around_debugfs+0x0/0x40 @ 1
[    1.236584] initcall fault_around_debugfs+0x0/0x40 returned 0 after 5 usecs
[    1.237236] calling  slab_sysfs_init+0x0/0x110 @ 1
[    1.239081] initcall slab_sysfs_init+0x0/0x110 returned 0 after 1319 usecs
[    1.239765] calling  max_swapfiles_check+0x0/0x20 @ 1
[    1.240375] initcall max_swapfiles_check+0x0/0x20 returned 0 after 0 usecs
[    1.241294] calling  zswap_init+0x0/0x30 @ 1
[    1.241313]  sda: sda1 sda2
[    1.241823] initcall zswap_init+0x0/0x30 returned 0 after 0 usecs
[    1.242317] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.242937] calling  hugetlb_vmemmap_init+0x0/0x90 @ 1
[    1.243505] probe of 0:0:0:0 returned 0 after 46795 usecs
[    1.244130] initcall hugetlb_vmemmap_init+0x0/0x90 returned 0 after 4 usecs
[    1.245592] calling  mempolicy_sysfs_init+0x0/0x2b0 @ 1
[    1.246240] initcall mempolicy_sysfs_init+0x0/0x2b0 returned 0 after 4 usecs
[    1.247041] calling  memory_tier_late_init+0x0/0xc0 @ 1
[    1.248130] Demotion targets for Node 0: null
[    1.248676] initcall memory_tier_late_init+0x0/0xc0 returned 0 after 586 usecs
[    1.249565] calling  split_huge_pages_debugfs+0x0/0x40 @ 1
[    1.250249] initcall split_huge_pages_debugfs+0x0/0x40 returned 0 after 3 usecs
[    1.251105] calling  check_early_ioremap_leak+0x0/0x60 @ 1
[    1.251763] initcall check_early_ioremap_leak+0x0/0x60 returned 0 after 0 usecs
[    1.252624] calling  set_hardened_usercopy+0x0/0x40 @ 1
[    1.253382] initcall set_hardened_usercopy+0x0/0x40 returned 1 after 0 usecs
[    1.253683] sd 0:0:1:0: [sdb] Attached SCSI disk
[    1.254296] calling  mg_debugfs_init+0x0/0x40 @ 1
[    1.254867] probe of 0:0:1:0 returned 0 after 50182 usecs
[    1.255447] initcall mg_debugfs_init+0x0/0x40 returned 0 after 2 usecs
[    1.256853] calling  fscrypt_init+0x0/0xf0 @ 1
[    1.257631] Key type .fscrypt registered
[    1.258114] Key type fscrypt-provisioning registered
[    1.258718] initcall fscrypt_init+0x0/0xf0 returned 0 after 1304 usecs
[    1.259486] calling  pstore_init+0x0/0x40 @ 1
[    1.260037] initcall pstore_init+0x0/0x40 returned 0 after 6 usecs
[    1.260766] calling  init_root_keyring+0x0/0x20 @ 1
[    1.261444] initcall init_root_keyring+0x0/0x20 returned 0 after 8 usecs
[    1.262247] calling  init_trusted+0x0/0x1c0 @ 1
[    1.262815] initcall init_trusted+0x0/0x1c0 returned 0 after 1 usecs
[    1.263568] calling  init_encrypted+0x0/0x100 @ 1
[    1.267887] calling  cryptd_init+0x0/0xff0 [cryptd] @ 108
[    1.268343] cryptd: max_cpu_qlen set to 1000
[    1.268679] initcall cryptd_init+0x0/0xff0 [cryptd] returned 0 after 365 usecs
[    1.270905] calling  aesni_init+0x0/0xff0 [aesni_intel] @ 108
[    1.271399] initcall aesni_init+0x0/0xff0 [aesni_intel] returned 0 after 46 usecs
[    1.277662] Key type encrypted registered
[    1.278174] initcall init_encrypted+0x0/0x100 returned 0 after 6821 usecs
[    1.278962] calling  init_profile_hash+0x0/0xa0 @ 1
[    1.279554] initcall init_profile_hash+0x0/0xa0 returned 0 after 0 usecs
[    1.280338] calling  integrity_fs_init+0x0/0x70 @ 1
[    1.280941] initcall integrity_fs_init+0x0/0x70 returned 0 after 7 usecs
[    1.281724] calling  init_ima+0x0/0xf0 @ 1
[    1.282246] ima: No TPM chip found, activating TPM-bypass!
[    1.282911] ima: Allocated hash algorithm: sha1
[    1.283475] ima: No architecture policies found
[    1.284046] initcall init_ima+0x0/0xf0 returned 0 after 1806 usecs
[    1.284774] calling  init_evm+0x0/0x140 @ 1
[    1.285301] evm: Initialising EVM extended attributes:
[    1.285916] evm: security.selinux
[    1.286348] evm: security.SMACK64 (disabled)
[    1.286877] evm: security.SMACK64EXEC (disabled)
[    1.287447] evm: security.SMACK64TRANSMUTE (disabled)
[    1.288056] evm: security.SMACK64MMAP (disabled)
[    1.288616] evm: security.apparmor
[    1.289076] evm: security.ima
[    1.289518] evm: security.capability
[    1.289979] evm: HMAC attrs: 0x1
[    1.290408] initcall init_evm+0x0/0x140 returned 0 after 5106 usecs
[    1.291151] calling  crypto_algapi_init+0x0/0x20 @ 1
[    1.291760] initcall crypto_algapi_init+0x0/0x20 returned 0 after 5 usecs
[    1.292553] calling  blk_timeout_init+0x0/0x20 @ 1
[    1.293143] initcall blk_timeout_init+0x0/0x20 returned 0 after 0 usecs
[    1.293915] calling  sed_opal_init+0x0/0xa0 @ 1
[    1.294486] initcall sed_opal_init+0x0/0xa0 returned 0 after 5 usecs
[    1.295232] calling  init_error_injection+0x0/0x80 @ 1
[    1.296108] initcall init_error_injection+0x0/0x80 returned 0 after 257 usecs
[    1.296948] calling  depot_debugfs_init+0x0/0x50 @ 1
[    1.297560] initcall depot_debugfs_init+0x0/0x50 returned 0 after 2 usecs
[    1.298348] calling  pci_resource_alignment_sysfs_init+0x0/0x30 @ 1
[    1.299084] initcall pci_resource_alignment_sysfs_init+0x0/0x30 returned 0 after 4 usecs
[    1.300008] calling  pci_sysfs_init+0x0/0xb0 @ 1
[    1.300611] initcall pci_sysfs_init+0x0/0xb0 returned 0 after 36 usecs
[    1.301487] calling  bert_init+0x0/0x2c0 @ 1
[    1.302021] initcall bert_init+0x0/0x2c0 returned 0 after 2 usecs
[    1.302736] calling  clk_debug_init+0x0/0x130 @ 1
[    1.303309] initcall clk_debug_init+0x0/0x130 returned 0 after 5 usecs
[    1.304066] calling  genpd_debug_init+0x0/0x80 @ 1
[    1.304648] initcall genpd_debug_init+0x0/0x80 returned 0 after 3 usecs
[    1.305422] calling  setup_vcpu_hotplug_event+0x0/0x40 @ 1
[    1.306076] initcall setup_vcpu_hotplug_event+0x0/0x40 returned -19 after 0 usecs
[    1.306935] calling  boot_wait_for_devices+0x0/0x40 @ 1
[    1.307937] initcall boot_wait_for_devices+0x0/0x40 returned -19 after 0 usecs
[    1.308753] calling  dmar_free_unused_resources+0x0/0xd0 @ 1
[    1.309433] initcall dmar_free_unused_resources+0x0/0xd0 returned 0 after 0 usecs
[    1.310229] calling  sync_state_resume_initcall+0x0/0x20 @ 1
[    1.310661] initcall sync_state_resume_initcall+0x0/0x20 returned 0 after 0 usecs
[    1.311213] calling  deferred_probe_initcall+0x0/0xa0 @ 1
[    1.311639] initcall deferred_probe_initcall+0x0/0xa0 returned 0 after 10 usecs
[    1.312182] calling  late_resume_init+0x0/0x1b0 @ 1
[    1.312560] PM:   Magic number: 13:910:976
[    1.312942] memory memory23: hash matches
[    1.313299] initcall late_resume_init+0x0/0x1b0 returned 0 after 739 usecs
[    1.313844] calling  sync_debugfs_init+0x0/0x70 @ 1
[    1.314243] initcall sync_debugfs_init+0x0/0x70 returned 0 after 7 usecs
[    1.314749] calling  charger_manager_init+0x0/0xb0 @ 1
[    1.315221] initcall charger_manager_init+0x0/0xb0 returned 0 after 69 usecs
[    1.315747] calling  dm_init_init+0x0/0x780 @ 1
[    1.316106] initcall dm_init_init+0x0/0x780 returned 0 after 0 usecs
[    1.316582] calling  acpi_cpufreq_init+0x0/0x30 @ 1
[    1.316977] initcall acpi_cpufreq_init+0x0/0x30 returned -19 after 7 usecs
[    1.317566] calling  powernowk8_init+0x0/0x1e0 @ 1
[    1.317950] initcall powernowk8_init+0x0/0x1e0 returned -19 after 2 usecs
[    1.318469] calling  pcc_cpufreq_init+0x0/0x30 @ 1
[    1.318850] initcall pcc_cpufreq_init+0x0/0x30 returned -19 after 9 usecs
[    1.319350] calling  centrino_init+0x0/0x40 @ 1
[    1.319705] initcall centrino_init+0x0/0x40 returned -19 after 0 usecs
[    1.320191] calling  edd_init+0x0/0x320 @ 1
[    1.320522] initcall edd_init+0x0/0x320 returned -19 after 0 usecs
[    1.320994] calling  firmware_memmap_init+0x0/0x50 @ 1
[    1.321396] initcall firmware_memmap_init+0x0/0x50 returned 0 after 12 usecs
[    1.321920] calling  register_update_efi_random_seed+0x0/0x30 @ 1
[    1.322380] initcall register_update_efi_random_seed+0x0/0x30 returned 0 after 0 usecs
[    1.322968] calling  efi_shutdown_init+0x0/0x60 @ 1
[    1.323347] initcall efi_shutdown_init+0x0/0x60 returned -19 after 0 usecs
[    1.323855] calling  efi_rci2_sysfs_init+0x0/0x2c0 @ 1
[    1.324253] initcall efi_rci2_sysfs_init+0x0/0x2c0 returned 0 after 0 usecs
[    1.324771] calling  efi_earlycon_unmap_fb+0x0/0x50 @ 1
[    1.325198] initcall efi_earlycon_unmap_fb+0x0/0x50 returned 0 after 0 usecs
[    1.325719] calling  itmt_legacy_init+0x0/0x60 @ 1
[    1.326097] initcall itmt_legacy_init+0x0/0x60 returned -19 after 0 usecs
[    1.326602] calling  cec_init+0x0/0x1e0 @ 1
[    1.326944] RAS: Correctable Errors collector initialized.
[    1.327366] initcall cec_init+0x0/0x1e0 returned 0 after 428 usecs
[    1.327832] calling  bpf_kfunc_init+0x0/0x170 @ 1
[    1.328208] initcall bpf_kfunc_init+0x0/0x170 returned 0 after 2 usecs
[    1.328701] calling  init_subsystem+0x0/0x30 @ 1
[    1.329079] initcall init_subsystem+0x0/0x30 returned 0 after 1 usecs
[    1.329566] calling  xdp_metadata_init+0x0/0x30 @ 1
[    1.329945] initcall xdp_metadata_init+0x0/0x30 returned 0 after 0 usecs
[    1.330448] calling  bpf_sockmap_iter_init+0x0/0x30 @ 1
[    1.330847] initcall bpf_sockmap_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.331374] calling  bpf_sk_storage_map_iter_init+0x0/0x30 @ 1
[    1.331820] initcall bpf_sk_storage_map_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.332385] calling  bpf_prog_test_run_init+0x0/0xb0 @ 1
[    1.332794] initcall bpf_prog_test_run_init+0x0/0xb0 returned 0 after 0 usecs
[    1.333376] calling  bpf_dummy_struct_ops_init+0x0/0x20 @ 1
[    1.333852] initcall bpf_dummy_struct_ops_init+0x0/0x20 returned 0 after 0 usecs
[    1.334407] calling  tcp_congestion_default+0x0/0x30 @ 1
[    1.334813] initcall tcp_congestion_default+0x0/0x30 returned 0 after 3 usecs
[    1.335344] calling  inet_blackhole_dev_init+0x0/0x40 @ 1
[    1.335759] initcall inet_blackhole_dev_init+0x0/0x40 returned 0 after 2 usecs
[    1.336289] calling  tcp_bpf_v4_build_proto+0x0/0xa0 @ 1
[    1.336696] initcall tcp_bpf_v4_build_proto+0x0/0xa0 returned 0 after 2 usecs
[    1.337714] calling  udp_bpf_v4_build_proto+0x0/0x50 @ 1
[    1.338123] initcall udp_bpf_v4_build_proto+0x0/0x50 returned 0 after 0 usecs
[    1.338646] calling  bpf_tcp_ca_kfunc_init+0x0/0x40 @ 1
[    1.339041] initcall bpf_tcp_ca_kfunc_init+0x0/0x40 returned 0 after 0 usecs
[    1.339556] calling  pci_mmcfg_late_insert_resources+0x0/0xd0 @ 1
[    1.340009] initcall pci_mmcfg_late_insert_resources+0x0/0xd0 returned 0 after 0 usecs
[    1.340580] calling  software_resume_initcall+0x0/0x190 @ 1
[    1.341011] initcall software_resume_initcall+0x0/0x190 returned -2 after 1 usecs
[    1.341562] calling  lockup_detector_check+0x0/0x80 @ 1
[    1.341970] initcall lockup_detector_check+0x0/0x80 returned 0 after 9 usecs
[    1.342500] calling  ftrace_check_sync+0x0/0x30 @ 1
[    1.342883] initcall ftrace_check_sync+0x0/0x30 returned 0 after 6 usecs
[    1.343409] calling  latency_fsnotify_init+0x0/0x50 @ 1
[    1.343817] initcall latency_fsnotify_init+0x0/0x50 returned 0 after 5 usecs
[    1.344347] calling  trace_eval_sync+0x0/0x30 @ 1
[    1.344722] initcall trace_eval_sync+0x0/0x30 returned 0 after 4 usecs
[    1.345237] calling  late_trace_init+0x0/0xe0 @ 1
[    1.345618] initcall late_trace_init+0x0/0xe0 returned 0 after 0 usecs
[    1.346119] calling  acpi_gpio_handle_deferred_request_irqs+0x0/0xa0 @ 1
[    1.346618] initcall acpi_gpio_handle_deferred_request_irqs+0x0/0xa0 returned 0 after 0 usecs
[    1.347235] calling  clk_disable_unused+0x0/0x190 @ 1
[    1.347623] clk: Disabling unused clocks
[    1.347935] initcall clk_disable_unused+0x0/0x190 returned 0 after 312 usecs
[    1.348452] calling  genpd_power_off_unused+0x0/0xa0 @ 1
[    1.348859] PM: genpd: Disabling unused power domains
[    1.349345] initcall genpd_power_off_unused+0x0/0xa0 returned 0 after 486 usecs
[    1.350233] calling  balloon_wait_finish+0x0/0x110 @ 1
[    1.350855] initcall balloon_wait_finish+0x0/0x110 returned -19 after 0 usecs
[    1.351679] calling  regulator_init_complete+0x0/0x40 @ 1
[    1.352305] initcall regulator_init_complete+0x0/0x40 returned 0 after 0 usecs
[    1.359215] Freeing unused decrypted memory: 2028K
[    1.360849] Freeing unused kernel image (initmem) memory: 4692K
[    1.361445] Write protecting the kernel read-only data: 26624k
[    1.362304] Freeing unused kernel image (text/rodata gap) memory: 548K
[    1.363098] Freeing unused kernel image (rodata/data gap) memory: 440K
[    1.372075] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    1.372638] Run /init as init process
[    1.372988]   with arguments:
[    1.373269]     /init
[    1.373506]     splash
[    1.373755]   with environment:
[    1.374062]     HOME=/
[    1.374310]     TERM=linux
[    1.374574]     BOOT_IMAGE=/vmlinuz-6.15.0-rc5+
[    1.403086] calling  mac_hid_init+0x0/0xff0 [mac_hid] @ 146
[    1.403463] initcall mac_hid_init+0x0/0xff0 [mac_hid] returned 0 after 3 usecs
[    1.405515] calling  floppy_module_init+0x0/0x1e40 [floppy] @ 143
[    1.407204] calling  pacpi_pci_driver_init+0x0/0xff0 [pata_acpi] @ 158
[    1.407795] initcall pacpi_pci_driver_init+0x0/0xff0 [pata_acpi] returned 0 after 16 usecs
[    1.413000] calling  serio_raw_drv_init+0x0/0xff0 [serio_raw] @ 159
[    1.413576] initcall serio_raw_drv_init+0x0/0xff0 [serio_raw] returned 0 after 13 usecs
[    1.421245] FDC 0 is a S82078B
[    1.421800] initcall floppy_module_init+0x0/0x1e40 [floppy] returned 0 after 8237 usecs
[    1.425052] calling  drm_core_init+0x0/0xb0 [drm] @ 147
[    1.425224] calling  input_leds_init+0x0/0xff0 [input_leds] @ 159
[    1.425511] ACPI: bus type drm_connector registered
[    1.426554] initcall drm_core_init+0x0/0xb0 [drm] returned 0 after 626 usecs
[    1.427022] calling  psmouse_init+0x0/0xa0 [psmouse] @ 164
[    1.429120] initcall psmouse_init+0x0/0xa0 [psmouse] returned 0 after 1011 usecs
[    1.430458] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4
[    1.438273] calling  qxl_pci_driver_init+0x0/0xff0 [qxl] @ 147
[    1.449773] Console: switching to colour dummy device 80x25
[    1.450312] qxl 0000:00:02.0: vgaarb: deactivate vga console
[    1.450934] [drm] Device Version 0.0
[    1.451369] [drm] Compression level 0 log level 0
[    1.451911] [drm] 12286 io pages at offset 0x1000000
[    1.452461] [drm] 16777216 byte draw area at offset 0x0
[    1.453025] [drm] RAM header offset: 0x3ffe000
[    1.453588] [drm] qxl: 16M of VRAM memory size
[    1.454073] [drm] qxl: 63M of IO pages memory ready (VRAM domain)
[    1.454488] [drm] qxl: 64M of Surface memory size
[    1.455976] [drm] slot 0 (main): base 0xf4000000, size 0x03ffe000
[    1.456730] [drm] slot 1 (surfaces): base 0xf8000000, size 0x04000000
[    1.458329] [drm] Initialized qxl 0.1.0 for 0000:00:02.0 on minor 0
[    1.459527] fbcon: qxldrmfb (fb0) is primary device
[    1.461698] Console: switching to colour frame buffer device 128x48
[    1.468235] qxl 0000:00:02.0: [drm] fb0: qxldrmfb frame buffer device
[    1.499198] probe of 0000:00:02.0 returned 0 after 60569 usecs
[    1.500082] initcall qxl_pci_driver_init+0x0/0xff0 [qxl] returned 0 after 61465 usecs
[    1.513021] initcall input_leds_init+0x0/0xff0 [input_leds] returned 0 after 74403 usecs
[    1.513707] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3
[    1.514992] probe of serio1 returned 0 after 85097 usecs
[    1.549585] calling  linear_init+0x0/0xff0 [linear] @ 193
[    1.549919] initcall linear_init+0x0/0xff0 [linear] returned 0 after 8 usecs
[    1.617283] EXT4-fs (sda2): mounted filesystem 3516f70c-4dd9-4b0f-bac4-c41778d09bbb ro with ordered data mode. Quota mode: none.
[    1.654824] EXT4-fs (sda2): re-mounted 3516f70c-4dd9-4b0f-bac4-c41778d09bbb r/w.
[    1.668936] EXT4-fs (sda2): re-mounted 3516f70c-4dd9-4b0f-bac4-c41778d09bbb.
[    1.752291] systemd[1]: RTC configured in localtime, applying delta of 480 minutes to system time.
[    1.765863] calling  init_autofs_fs+0x0/0x40 [autofs4] @ 1
[    1.766402] initcall init_autofs_fs+0x0/0x40 [autofs4] returned 0 after 64 usecs
[    1.767092] systemd[1]: Inserted module 'autofs4'
[    1.769919] calling  xt_init+0x0/0xff0 [x_tables] @ 1
[    1.770372] initcall xt_init+0x0/0xff0 [x_tables] returned 0 after 2 usecs
[    1.772389] calling  ip_tables_init+0x0/0xff0 [ip_tables] @ 1
[    1.772877] initcall ip_tables_init+0x0/0xff0 [ip_tables] returned 0 after 8 usecs
[    1.778731] systemd[1]: systemd 245.4-4kylin3.11k30 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)
[    1.780630] systemd[1]: Detected virtualization kvm.
[    1.781112] systemd[1]: Detected architecture x86-64.
[    1.781588] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[    1.809676] systemd[1]: Set hostname to <standardpc>.
[    1.897663] systemd[1]: Configuration file /lib/systemd/system/vdi_usbmagicd.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    1.899219] systemd[1]: Configuration file /lib/systemd/system/vdi_usbipd.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    1.900733] systemd[1]: Configuration file /lib/systemd/system/vdi_super_agent.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    1.907633] systemd[1]: Configuration file /etc/systemd/system/runsunloginclient.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    1.940638] systemd[1]: Created slice system-modprobe.slice.
[    1.941291] systemd[1]: Created slice system-serial\x2dgetty.slice.
[    1.941897] systemd[1]: Created slice User and Session Slice.
[    1.942432] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    1.943185] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    1.943973] systemd[1]: Reached target User and Group Name Lookups.
[    1.944522] systemd[1]: Reached target Remote File Systems.
[    1.945004] systemd[1]: Reached target Slices.
[    1.945399] systemd[1]: Reached target Swap.
[    1.945829] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    1.946444] systemd[1]: Listening on LVM2 poll daemon socket.
[    1.946968] systemd[1]: Listening on Syslog Socket.
[    1.948236] systemd[1]: Listening on Process Core Dump Socket.
[    1.948789] systemd[1]: Listening on fsck to fsckd communication Socket.
[    1.949398] systemd[1]: Listening on initctl Compatibility Named Pipe.
[    1.951056] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
[    1.951788] systemd[1]: Listening on Journal Socket (/dev/log).
[    1.952360] systemd[1]: Listening on Journal Socket.
[    1.952855] systemd[1]: Listening on udev Control Socket.
[    1.953381] systemd[1]: Listening on udev Kernel Socket.
[    1.973244] systemd[1]: Mounting Huge Pages File System...
[    1.974854] systemd[1]: Mounting POSIX Message Queue File System...
[    1.975857] systemd[1]: Mounting Kernel Debug File System...
[    1.976917] systemd[1]: Mounting Kernel Trace File System...
[    1.978259] systemd[1]: Starting Journal Service...
[    1.979328] systemd[1]: Starting Availability of block devices...
[    1.980731] systemd[1]: Starting Set the console keyboard layout...
[    1.981580] systemd[1]: Starting Create list of static device nodes for the current kernel...
[    1.982942] systemd[1]: Starting update duration after shutdown or reboot...
[    1.984107] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[    1.985099] systemd[1]: Condition check resulted in Load Kernel Module drm being skipped.
[    1.986242] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[    1.986996] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[    1.988538] systemd[1]: Starting Load Kernel Modules...
[    1.989679] systemd[1]: Starting Remount Root and Kernel File Systems...
[    1.991541] systemd[1]: Starting udev Coldplug all Devices...
[    1.994294] systemd[1]: Starting Uncomplicated firewall...
[    1.996404] systemd[1]: Mounted Huge Pages File System.
[    1.997102] systemd[1]: Mounted POSIX Message Queue File System.
[    1.997785] systemd[1]: Mounted Kernel Debug File System.
[    1.998406] systemd[1]: Mounted Kernel Trace File System.
[    1.999028] systemd[1]: Finished Availability of block devices.
[    2.000124] calling  parport_default_proc_register+0x0/0xff0 [parport] @ 348
[    2.000788] initcall parport_default_proc_register+0x0/0xff0 [parport] returned 0 after 35 usecs
[    2.000956] systemd[1]: Finished Create list of static device nodes for the current kernel.
[    2.002395] systemd[1]: Finished update duration after shutdown or reboot.
[    2.003308] systemd[1]: Finished Uncomplicated firewall.
[    2.005446] calling  lp_init_module+0x0/0xff0 [lp] @ 348
[    2.009686] lp: driver loaded but no devices found
[    2.010121] initcall lp_init_module+0x0/0xff0 [lp] returned 0 after 4209 usecs
[    2.011994] calling  ppdev_init+0x0/0xff0 [ppdev] @ 348
[    2.013072] EXT4-fs (sda2): re-mounted 3516f70c-4dd9-4b0f-bac4-c41778d09bbb.
[    2.014526] ppdev: user-space parallel port driver
[    2.014944] initcall ppdev_init+0x0/0xff0 [ppdev] returned 0 after 2445 usecs
[    2.017665] systemd[1]: Finished Remount Root and Kernel File Systems.
[    2.018432] systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
[    2.019409] calling  parport_pc_init+0x0/0xef0 [parport_pc] @ 348
[    2.020149] probe of parport_pc.956 returned 0 after 13 usecs
[    2.020824] probe of parport0 returned 19 after 37 usecs
[    2.021800] probe of parport0 returned 19 after 402 usecs
[    2.022426] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
[    2.023184] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
[    2.024976] probe of parport_pc.888 returned 0 after 14 usecs
[    2.025531] probe of parport0 returned 19 after 10 usecs
[    2.026022] probe of parport0 returned 19 after 21 usecs
[    2.026757] probe of parport_pc.632 returned 0 after 18 usecs
[    2.027325] probe of parport0 returned 19 after 3 usecs
[    2.027793] probe of parport0 returned 19 after 4 usecs
[    2.028381] initcall parport_pc_init+0x0/0xef0 [parport_pc] returned 0 after 8343 usecs
[    2.029096] systemd[1]: Starting Load/Save Random Seed...
[    2.030132] systemd[1]: Starting Create System Users...
[    2.030811] systemd[1]: Started Journal Service.
[    2.040641] calling  vmw_pci_driver_init+0x0/0xff0 [vmwgfx] @ 348
[    2.041114] initcall vmw_pci_driver_init+0x0/0xff0 [vmwgfx] returned 0 after 80 usecs
[    2.058037] calling  usbip_core_init+0x0/0xff0 [usbip_core] @ 348
[    2.058438] initcall usbip_core_init+0x0/0xff0 [usbip_core] returned 0 after 41 usecs
[    2.060708] calling  vhci_hcd_init+0x0/0xff0 [vhci_hcd] @ 348
[    2.061142] vhci_hcd vhci_hcd.0: USB/IP Virtual Host Controller
[    2.061477] vhci_hcd vhci_hcd.0: new USB bus registered, assigned bus number 3
[    2.061870] vhci_hcd: created sysfs vhci_hcd.0
[    2.062268] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.15
[    2.063342] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.064142] usb usb3: Product: USB/IP Virtual Host Controller
[    2.064631] usb usb3: Manufacturer: Linux 6.15.0-rc5+ vhci_hcd
[    2.065096] usb usb3: SerialNumber: vhci_hcd.0
[    2.065719] hub 3-0:1.0: USB hub found
[    2.066212] hub 3-0:1.0: 8 ports detected
[    2.066800] probe of 3-0:1.0 returned 0 after 1086 usecs
[    2.067390] probe of usb3 returned 0 after 1710 usecs
[    2.067941] vhci_hcd vhci_hcd.0: USB/IP Virtual Host Controller
[    2.068578] vhci_hcd vhci_hcd.0: new USB bus registered, assigned bus number 4
[    2.069433] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.069983] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.15
[    2.070582] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.070982] usb usb4: Product: USB/IP Virtual Host Controller
[    2.071301] usb usb4: Manufacturer: Linux 6.15.0-rc5+ vhci_hcd
[    2.071634] usb usb4: SerialNumber: vhci_hcd.0
[    2.072116] hub 4-0:1.0: USB hub found
[    2.072366] hub 4-0:1.0: 8 ports detected
[    2.072772] probe of 4-0:1.0 returned 0 after 663 usecs
[    2.073149] probe of usb4 returned 0 after 1067 usecs
[    2.073656] probe of vhci_hcd.0 returned 0 after 12519 usecs
[    2.073975] initcall vhci_hcd_init+0x0/0xff0 [vhci_hcd] returned 0 after 12885 usecs
[    2.092692] calling  fq_codel_module_init+0x0/0xff0 [sch_fq_codel] @ 378
[    2.093255] initcall fq_codel_module_init+0x0/0xff0 [sch_fq_codel] returned 0 after 1 usecs
[    2.192009] calling  init_soundcore+0x0/0xff0 [soundcore] @ 396
[    2.192472] initcall init_soundcore+0x0/0xff0 [soundcore] returned 0 after 8 usecs
[    2.193250] calling  fw_cfg_sysfs_init+0x0/0xff0 [qemu_fw_cfg] @ 380
[    2.196522] calling  smbalert_driver_init+0x0/0xff0 [i2c_smbus] @ 398
[    2.197283] initcall smbalert_driver_init+0x0/0xff0 [i2c_smbus] returned 0 after 90 usecs
[    2.197315] probe of QEMU0002:00 returned 0 after 3685 usecs
[    2.198869] calling  virtio_input_driver_init+0x0/0xff0 [virtio_input] @ 394
[    2.203237] calling  alsa_sound_init+0x0/0xa0 [snd] @ 408
[    2.203708] initcall alsa_sound_init+0x0/0xa0 [snd] returned 0 after 9 usecs
[    2.207303] initcall fw_cfg_sysfs_init+0x0/0xff0 [qemu_fw_cfg] returned 0 after 3603 usecs
[    2.209020] calling  piix4_driver_init+0x0/0xff0 [i2c_piix4] @ 398
[    2.210716] input: QEMU Virtio Tablet as /devices/pci0000:00/0000:00:06.0/virtio1/input/input5
[    2.210722] piix4_smbus 0000:00:01.3: SMBus Host Controller at 0x700, revision 0
[    2.212042] i2c i2c-0: Memory type 0x07 not supported yet, not instantiating SPD
[    2.212512] probe of 0000:00:01.3 returned 0 after 1839 usecs
[    2.213964] calling  alsa_timer_init+0x0/0xff0 [snd_timer] @ 410
[    2.214384] probe of virtio1 returned 0 after 14761 usecs
[    2.214429] initcall alsa_timer_init+0x0/0xff0 [snd_timer] returned 0 after 53 usecs
[    2.215213] initcall virtio_input_driver_init+0x0/0xff0 [virtio_input] returned 0 after 836 usecs
[    2.215892] initcall piix4_driver_init+0x0/0xff0 [i2c_piix4] returned 0 after 1515 usecs
[    2.219646] calling  alsa_seq_device_init+0x0/0xff0 [snd_seq_device] @ 410
[    2.220000] calling  failover_init+0x0/0xff0 [failover] @ 384
[    2.220700] initcall failover_init+0x0/0xff0 [failover] returned 0 after 5 usecs
[    2.222050] initcall alsa_seq_device_init+0x0/0xff0 [snd_seq_device] returned 0 after 1355 usecs
[    2.223366] calling  net_failover_init+0x0/0xff0 [net_failover] @ 384
[    2.223810] initcall net_failover_init+0x0/0xff0 [net_failover] returned 0 after 0 usecs
[    2.256513] calling  virtio_net_driver_init+0x0/0xff0 [virtio_net] @ 384
[    2.258728] calling  alsa_seq_init+0x0/0x60 [snd_seq] @ 413
[    2.262920] initcall alsa_seq_init+0x0/0x60 [snd_seq] returned 0 after 3728 usecs
[    2.268948] calling  joydev_init+0x0/0xff0 [joydev] @ 387
[    2.280366] calling  alsa_rawmidi_init+0x0/0xff0 [snd_rawmidi] @ 437
[    2.280901] initcall alsa_rawmidi_init+0x0/0xff0 [snd_rawmidi] returned 0 after 0 usecs
[    2.291129] initcall joydev_init+0x0/0xff0 [joydev] returned 0 after 10238 usecs
[    2.302282] calling  seq_midisynth_driver_init+0x0/0xff0 [snd_seq_midi] @ 450
[    2.302859] initcall seq_midisynth_driver_init+0x0/0xff0 [snd_seq_midi] returned 0 after 18 usecs
[    2.317467] probe of virtio0 returned 0 after 54661 usecs
[    2.317792] initcall virtio_net_driver_init+0x0/0xff0 [virtio_net] returned 0 after 14951 usecs
[    2.329460] calling  alsa_pcm_init+0x0/0xff0 [snd_pcm] @ 474
[    2.330016] initcall alsa_pcm_init+0x0/0xff0 [snd_pcm] returned 0 after 3 usecs
[    2.336369] calling  ac97_bus_init+0x0/0xff0 [ac97_bus] @ 396
[    2.347638] initcall ac97_bus_init+0x0/0xff0 [ac97_bus] returned 0 after 10932 usecs
[    2.351830] calling  cstate_pmu_init+0x0/0xff0 [intel_cstate] @ 385
[    2.352487] initcall cstate_pmu_init+0x0/0xff0 [intel_cstate] returned -19 after 0 usecs
[    2.356121] virtio_net virtio0 ens3: renamed from eth0
[    2.360843] calling  intel8x0_driver_init+0x0/0xff0 [snd_intel8x0] @ 396
[    2.365015] EXT4-fs (sda1): warning: mounting fs with errors, running e2fsck is recommended
[    2.373117] EXT4-fs (sdb): mounted filesystem 1b1b0571-175b-4b83-9612-38293c03950b r/w with ordered data mode. Quota mode: none.
[    2.375556] ACPI: \_SB_.LNKA: Enabled at IRQ 11
[    2.375899] snd_intel8x0 0000:00:05.0: enable KVM optimization
[    2.377736] EXT4-fs (sda1): mounted filesystem cfaaa870-4d52-434c-8626-a398f6c7edd3 r/w with ordered data mode. Quota mode: none.
[    2.418423] calling  rapl_pmu_init+0x0/0xdb0 [rapl] @ 385
[    2.418924] RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer
[    2.419631] initcall rapl_pmu_init+0x0/0xdb0 [rapl] returned 0 after 760 usecs
[    2.422029] calling  sha1_ssse3_mod_init+0x0/0xff0 [sha1_ssse3] @ 398
[    2.422580] initcall sha1_ssse3_mod_init+0x0/0xff0 [sha1_ssse3] returned 0 after 10 usecs
[    2.424594] calling  sha256_ssse3_mod_init+0x0/0xff0 [sha256_ssse3] @ 385
[    2.425169] initcall sha256_ssse3_mod_init+0x0/0xff0 [sha256_ssse3] returned 0 after 16 usecs
[    2.427319] calling  sha512_ssse3_mod_init+0x0/0xff0 [sha512_ssse3] @ 380
[    2.428101] initcall sha512_ssse3_mod_init+0x0/0xff0 [sha512_ssse3] returned 0 after 31 usecs
[    2.430057] calling  ghash_pclmulqdqni_mod_init+0x0/0xff0 [ghash_clmulni_intel] @ 395
[    2.430645] initcall ghash_pclmulqdqni_mod_init+0x0/0xff0 [ghash_clmulni_intel] returned 0 after 13 usecs
[    2.464571] calling  kvm_x86_init+0x0/0x50 [kvm] @ 395
[    2.465010] initcall kvm_x86_init+0x0/0x50 [kvm] returned 0 after 19 usecs
[    2.473782] calling  vmx_init+0x0/0x1c0 [kvm_intel] @ 385
[    2.479397] initcall vmx_init+0x0/0x1c0 [kvm_intel] returned 0 after 5267 usecs
[    2.482242] calling  rapl_init+0x0/0xff0 [intel_rapl_common] @ 395
[    2.482954] initcall rapl_init+0x0/0xff0 [intel_rapl_common] returned 0 after 47 usecs
[    2.487316] calling  intel_rapl_msr_driver_init+0x0/0xff0 [intel_rapl_msr] @ 392
[    2.488025] intel_rapl_msr: PL4 support detected.
[    2.488671] probe of intel_rapl_msr.0 returned 19 after 652 usecs
[    2.489379] initcall intel_rapl_msr_driver_init+0x0/0xff0 [intel_rapl_msr] returned 0 after 1375 usecs
[    2.640468] probe of 0000:00:05.0 returned 0 after 278836 usecs
[    2.641099] initcall intel8x0_driver_init+0x0/0xff0 [snd_intel8x0] returned 0 after 153095 usecs
[    3.003990] calling  pppox_init+0x0/0xff0 [pppox] @ 976
[    3.004570] NET: Registered PF_PPPOX protocol family
[    3.005191] initcall pppox_init+0x0/0xff0 [pppox] returned 0 after 620 usecs
[    3.015279] calling  udp_tunnel_nic_init_module+0x0/0xff0 [udp_tunnel] @ 1007
[    3.015777] initcall udp_tunnel_nic_init_module+0x0/0xff0 [udp_tunnel] returned 0 after 10 usecs
[    3.026229] calling  l2tp_init+0x0/0xff0 [l2tp_core] @ 1007
[    3.026620] l2tp_core: L2TP core driver, V2.0
[    3.026620] initcall l2tp_init+0x0/0xff0 [l2tp_core] returned 0 after 10 usecs
[    3.032727] calling  l2tp_nl_init+0x0/0xff0 [l2tp_netlink] @ 1007
[    3.033315] l2tp_netlink: L2TP netlink interface
[    3.033738] initcall l2tp_nl_init+0x0/0xff0 [l2tp_netlink] returned 0 after 424 usecs
[    3.037441] calling  pppol2tp_init+0x0/0xff0 [l2tp_ppp] @ 1007
[    3.038130] l2tp_ppp: PPPoL2TP kernel driver, V2.0
[    3.038608] initcall pppol2tp_init+0x0/0xff0 [l2tp_ppp] returned 0 after 616 usecs
[    3.137282] calling  xfrm_user_init+0x0/0xff0 [xfrm_user] @ 1054
[    3.137768] Initializing XFRM netlink socket
[    3.138289] initcall xfrm_user_init+0x0/0xff0 [xfrm_user] returned 0 after 521 usecs
[   64.846727] systemd-journald[340]: Received client request to flush runtime journal.
[  230.137565][ T9156] vhci_hcd vhci_hcd.0: pdev(0) rhport(0) sockfd(3)
[  230.138077][ T9156] vhci_hcd vhci_hcd.0: devid(262147) speed(5) speed_str(super-speed)
[  230.138718][ T9156] vhci_hcd vhci_hcd.0: Device attached
[  230.386657][   T11] usb 4-1: SetAddress Request (2) to port 0
[  230.387850][   T11] usb 4-1: new SuperSpeed USB device number 2 using vhci_hcd
[  230.411242][   T11] usb 4-1: New USB device found, idVendor=0951, idProduct=1666, bcdDevice= 1.10
[  230.411924][   T11] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  230.412547][   T11] usb 4-1: Product: DataTraveler 3.0
[  230.412954][   T11] usb 4-1: Manufacturer: Kingston
[  230.413340][   T11] usb 4-1: SerialNumber: 4CEDFB74A335E611091101EF
[  230.416074][   T11] probe of 4-1 returned 0 after 2100 usecs
[  230.423146][ T9175] calling  usb_storage_driver_init+0x0/0xff0 [usb_storage] @ 9175
[  230.423744][ T9175] usb-storage 4-1:1.0: USB Mass Storage device detected
[  230.428715][ T9175] scsi host2: usb-storage 4-1:1.0
[  230.429227][ T9175] probe of 4-1:1.0 returned 0 after 5491 usecs
[  230.429691][ T9175] usbcore: registered new interface driver usb-storage
[  230.430189][ T9175] initcall usb_storage_driver_init+0x0/0xff0 [usb_storage] returned 0 after 6474 usecs
[  230.432347][ T9175] calling  uas_init+0x0/0xff0 [uas] @ 9175
[  230.432858][ T9175] usbcore: registered new interface driver uas
[  230.433304][ T9175] initcall uas_init+0x0/0xff0 [uas] returned 0 after 540 usecs
[  231.440622][  T175] scsi 2:0:0:0: Direct-Access     Kingston DataTraveler 3.0 PMAP PQ: 0 ANSI: 6
[  231.441205][  T175] probe of 2:0:0:0 returned 19 after 6 usecs
[  231.441833][  T175] sd 2:0:0:0: Attached scsi generic sg2 type 0
[  231.444201][  T369] sd 2:0:0:0: [sdc] 60530688 512-byte logical blocks: (31.0 GB/28.9 GiB)
[  231.445540][  T369] sd 2:0:0:0: [sdc] Write Protect is off
[  231.445869][  T369] sd 2:0:0:0: [sdc] Mode Sense: 45 00 00 00
[  231.446901][  T369] sd 2:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[  231.471746][  T369]  sdc:
[  231.472022][  T369] sd 2:0:0:0: [sdc] Attached SCSI removable disk
[  231.472539][  T369] probe of 2:0:0:0 returned 0 after 30898 usecs
[  231.676227][ T9204] calling  init_exfat_fs+0x0/0xff0 [exfat] @ 9204
[  231.677658][ T9204] initcall init_exfat_fs+0x0/0xff0 [exfat] returned 0 after 89 usecs
[  231.679684][ T9201] exfat: Deprecated parameter 'namecase'
[  231.681633][ T9201] exFAT-fs (sdc): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[  231.733358][ T2175] ukui-flash-disk[2175]: segfault at 0 ip 000056471035edcb sp 00007fff51262130 error 4 in ukui-flash-disk[40dcb,564710345000+61000] likely on CPU 2 (core 0, socket 2)
[  231.734688][ T2175] Code: ff 85 c0 4c 89 ef 0f 95 84 24 e1 00 00 00 e8 1c 8d fe ff 48 8b b4 24 a0 00 00 00 48 89 ef 4c 8b 2d 7a 42 06 00 e8 65 77 ff ff <49> 8b 7d 00 48 89 ee e8 19 ec 00 00 48 89 ef 49 89 c5 e8 1e 64 ff
[  297.673630][ T9394] PM: suspend entry (s2idle)
[  297.709843][ T9394] Filesystems sync: 0.035 seconds
[  297.808891][ T9394] Freezing user space processes
[  297.812679][ T9394] Freezing user space processes completed (elapsed 0.002 seconds)
[  297.814206][ T9394] OOM killer disabled.
[  297.814888][ T9394] Freezing remaining freezable tasks
[  297.816665][ T9394] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[  297.817754][ T9394] sound pcmC0D1c: PM: calling do_pcm_suspend [snd_pcm] @ 9394, parent: card0
[  297.818672][ T9394] sound pcmC0D1c: PM: do_pcm_suspend [snd_pcm] returned 0 after 0 usecs
[  297.819533][ T9394] sound pcmC0D0c: PM: calling do_pcm_suspend [snd_pcm] @ 9394, parent: card0
[  297.820468][ T9394] sound pcmC0D0c: PM: do_pcm_suspend [snd_pcm] returned 0 after 0 usecs
[  297.820642][ T1581] sd 2:0:0:0: PM: calling scsi_bus_suspend @ 1581, parent: target2:0:0
[  297.821308][ T9394] sound pcmC0D0p: PM: calling do_pcm_suspend [snd_pcm] @ 9394, parent: card0
[  297.822562][ T9394] sound pcmC0D0p: PM: do_pcm_suspend [snd_pcm] returned 0 after 0 usecs
[  297.823197][ T9394] platform intel_rapl_msr.0: PM: calling platform_pm_suspend @ 9394, parent: platform
[  297.823916][ T9394] platform intel_rapl_msr.0: PM: platform_pm_suspend returned 0 after 0 usecs
[  297.824597][ T9394] input input5: PM: calling input_dev_suspend @ 9394, parent: virtio1
[  297.825202][ T9394] input input5: PM: input_dev_suspend returned 0 after 0 usecs
[  297.825653][ T9404] usb usb3: PM: calling usb_dev_suspend @ 9404, parent: vhci_hcd.0
[  297.826068][ T9404] usb usb3: PM: usb_dev_suspend returned 0 after 28 usecs
[  297.852492][ T1581] sd 2:0:0:0: PM: scsi_bus_suspend returned 0 after 30610 usecs
[  297.853108][  T106] scsi target2:0:0: PM: calling scsi_bus_suspend @ 106, parent: host2
[  297.853499][  T106] scsi target2:0:0: PM: scsi_bus_suspend returned 0 after 0 usecs
[  297.853885][  T103] scsi host2: PM: calling scsi_bus_suspend @ 103, parent: 4-1:1.0
[  297.854257][  T103] scsi host2: PM: scsi_bus_suspend returned 0 after 0 usecs
[  297.854621][ T9402] usb 4-1: PM: calling usb_dev_suspend @ 9402, parent: usb4
[  297.868524][ T9402] usb 4-1: PM: usb_dev_suspend returned 0 after 13214 usecs
[  297.869994][ T9403] usb usb4: PM: calling usb_dev_suspend @ 9403, parent: vhci_hcd.0
[  297.871959][ T9403] usb usb4: PM: usb_dev_suspend returned 0 after 30 usecs
[  297.873644][ T9394] vhci_hcd vhci_hcd.0: PM: calling platform_pm_suspend @ 9394, parent: platform
[  297.874738][ T9394] vhci_hcd vhci_hcd.0: We have 1 active connection. Do not suspend.
[  297.875369][ T9394] vhci_hcd vhci_hcd.0: PM: dpm_run_callback(): platform_pm_suspend returns -16
[  297.876078][ T9394] vhci_hcd vhci_hcd.0: PM: platform_pm_suspend returned -16 after 1341 usecs
[  297.876774][ T9394] vhci_hcd vhci_hcd.0: PM: failed to suspend: error -16
[  297.877321][ T9394] PM: Some devices failed to suspend, or early wake event detected
[  297.877961][ T9394] input input5: PM: calling input_dev_resume @ 9394, parent: virtio1
[  297.878595][ T9394] input input5: PM: input_dev_resume returned 0 after 0 usecs
[  297.879184][ T9394] platform intel_rapl_msr.0: PM: calling platform_pm_resume @ 9394, parent: platform
[  297.879925][ T9394] platform intel_rapl_msr.0: PM: platform_pm_resume returned 0 after 0 usecs
[  297.880660][ T9403] usb usb3: PM: calling usb_dev_resume @ 9403, parent: vhci_hcd.0
[  297.880833][ T9408] usb usb4: PM: calling usb_dev_resume @ 9408, parent: vhci_hcd.0
[  297.881065][ T9403] usb usb3: PM: usb_dev_resume returned 0 after 19 usecs
[  297.904551][ T9408] usb usb4: PM: usb_dev_resume returned 0 after 22911 usecs
[  297.905148][ T9418] usb 4-1: PM: calling usb_dev_resume @ 9418, parent: usb4

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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-06-24  3:21                 ` Zongmin Zhou
@ 2025-07-01 22:56                   ` Shuah Khan
  2025-07-02  2:12                     ` Zongmin Zhou
  0 siblings, 1 reply; 33+ messages in thread
From: Shuah Khan @ 2025-07-01 22:56 UTC (permalink / raw)
  To: Zongmin Zhou, Greg KH
  Cc: shuah, valentina.manea.m, i, linux-kernel, linux-usb, zhouzongmin,
	Shuah Khan

On 6/23/25 21:21, Zongmin Zhou wrote:
> 
> On 2025/6/21 01:26, Shuah Khan wrote:
>> On 6/20/25 03:27, Greg KH wrote:
>>> On Fri, Jun 20, 2025 at 05:19:33PM +0800, Zongmin Zhou wrote:
>>>>
>>>> On 2025/6/20 12:29, Greg KH wrote:
>>>>> On Fri, Jun 20, 2025 at 10:16:16AM +0800, Zongmin Zhou wrote:
>>>>>> On 2025/6/19 19:01, Greg KH wrote:
>>>>>>> On Wed, Jun 04, 2025 at 02:54:10PM +0800, Zongmin Zhou wrote:
>>>>>>>> From: Zongmin Zhou <zhouzongmin@kylinos.cn>
>>>>>>>>
>>>>>>>> The vhci driver does not need to create a platform device,
>>>>>>>> it only did so because it was simple to do that in order to
>>>>>>>> get a place in sysfs to hang some device-specific attributes.
>>>>>>>> Now the faux device interface is more appropriate,change it
>>>>>>>> over to use the faux bus instead.
>>>>>>>>
>>>>>>>> Signed-off-by: Zongmin Zhou <zhouzongmin@kylinos.cn>
>>>>>>>> ---
>>>>>>>> Changes in v2:
>>>>>>>> - don't change faux create api,just call probe on vhci_hcd_init.
>>>>>>>>
>>>>>>>>     drivers/usb/usbip/vhci.h             |  4 +-
>>>>>>>>     drivers/usb/usbip/vhci_hcd.c         | 86 +++++++++++-----------------
>>>>>>>>     drivers/usb/usbip/vhci_sysfs.c       | 68 +++++++++++-----------
>>>>>>>>     tools/usb/usbip/libsrc/vhci_driver.h |  2 +-
>>>>>>>>     4 files changed, 72 insertions(+), 88 deletions(-)
>>>>>>> I get the following build errors from this patch:
>>>>>>>
>>>>>>> drivers/usb/usbip/vhci_hcd.c:1462:12: error: ‘vhci_hcd_resume’ defined but not used [-Werror=unused-function]
>>>>>>>     1462 | static int vhci_hcd_resume(struct faux_device *fdev)
>>>>>>>          |            ^~~~~~~~~~~~~~~
>>>>>>> drivers/usb/usbip/vhci_hcd.c:1418:12: error: ‘vhci_hcd_suspend’ defined but not used [-Werror=unused-function]
>>>>>>>     1418 | static int vhci_hcd_suspend(struct faux_device *fdev, pm_message_t state)
>>>>>>>          |            ^~~~~~~~~~~~~~~~
>>>>>>> cc1: all warnings being treated as errors
>>>>>>>
>>>>>>> Are you sure you tested this?
>>>>>> I apologize for not enabling -Werror, which resulted in missing this error
>>>>>> warning.
>>>>>> I have tested usbip feature use the new patch,but not test system
>>>>>> suspend/resume.
>>>>>> The faux bus type don't add pm function,and vhci-hcd driver can't register
>>>>>> it.
>>>>>> Maybe have to add suspend/resume for it.like below:
>>>>>> static const struct bus_type faux_bus_type = {
>>>>>>       .name        = "faux",
>>>>>>       .match        = faux_match,
>>>>>>       .probe        = faux_probe,
>>>>>>       .remove        = faux_remove,
>>>>>>       .resume     = faux_resume,
>>>>>>       .suspend    = faux_suspend,
>>>>>> };
>>>>>>
>>>>>> Is that right?
>>>>>> Your expertise would be greatly valued.
>>>>> As this is not real hardware, why do you need the suspend/resume
>>>>> callbacks at all?  What is happening here that requires them?
>>>> @greg,
>>>> The vhci_hcd_suspend/vhci_hcd_resume interfaces are not designed for this
>>>> faux device, but rather to
>>>> manipulate the HCD_FLAG_HW_ACCESSIBLE bit in the hcd flags associated with
>>>> the faux device.
>>>> For example:
>>>> During system standby: clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)
>>>> During system wakeup: set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)
>>>>
>>>> Previously, these two functions were registered through platform_driver,
>>>> but faux bus does not have the relevant interface, so they were not called,
>>>> resulting in this compilation warning error.
>>>>
>>>> This raises the question: Should the faux bus implement PM-related
>>>> interface?
>>>> I'm uncertain whether these functions are essential for the vhci-hcd driver
>>>> or if they can be safely removed.
>>>>
>>>> However, during system standby/wakeup tests with remote USB devices bound to
>>>> the vhci-hcd driver,
>>>> I observed consistent failure scenarios across both the original platform
>>>> bus and faux bus patch implementations.
>>
>> suspend and resume hooks have been in the code from beginning
>> in the CONFIG_PM path. The original authors are skeptical about
>> what should happen during suspend"
>>
>> /* what should happen for USB/IP under suspend/resume? */
>> suspend hook checks for active connections and sends EBBUSY
>> back to pm core.
>>
>> Active connection means any of the ports are in USB_PORT_STAT_CONNECTION
>> state. So as long as there are active connections between vhci client
>> and the host, suspend won't work. So we really don't know what happens
>> to the active connections if there are no suspend/resume hooks.
>>
>> If there are no active connections, then it will clear the HCD_FLAG_HW_ACCESSIBLE
>> bit and returns to pm core to continue with suspend.
>>
>> resume sets the HCD_FLAG_HW_ACCESSIBLE flag to indicate hardware is accessible
>> and initiates port status poll.
>>
>> - suspend hook prevents suspend
>>
>> With faux device since there is no suspend and resume hook, I would expect
>> these hooks are not a factor in suspend and resume.
>>
>> vhci_hcd is a special case virtual driver as it is a proxy for controlling
>> hardware on the host.
>>
>> Zongmin,
>>
>> Do suspend/resume work when vhci_hcd is not loaded?
>> What happens when when system suspends and resumes with faux device?
>> Can you send me dmesg logs and pm logs?
>>
> Hi Greg,shuah
> 
> Yes, system with vhci_hcd unload or just load vhci_hcd driver
> without usbip devices bound to vhci_hcd,system suspend/resume worked well.
> Some logs for you.

Sorry for the delay. I was at a conference last week.
Thank you for sending these logs.

> 1.system with vhci_hcd driver load,but don't bound any usbip devices to vhci_hcd,suspend/resume worked well.
> see dmesg-faux bus-load.log


> 
> 2.usbip device bound to vhci_hcd,and do system suspend action,suspend/resume worked failed.
> I observed two distinct failure scenario:
> Scenario 1: System failed to enter suspend state,and will auto resume;


> the log for use platform bus:
> dmesg-platform bus-device bound-auto resume.log

This is clear from the suspend hook in the vhci_hcd.
When it returns EBUSY, suspend will fail and move to
auto resume.

> the log for use faux bus:
> dmesg-faux bus-device bound-auto resume.log

It is good that the behavior is same with faux bus even though
suspend hook isn't called. I will take a look at the log.

> 
> Scenario 2: System resume failed with black screen freeze,a forced restart of the machine is require.
> the log for use platform bus:
> dmesg-platform bus-device bound-black screen.log
> the log for use faux bus:
> dmesg-faux bus-device bound-black screen.log

That is bad. When does this happen? Is there a difference in
configuration?

The behavior same for platform bus and faux bus. Sounds like
an existing problem that needs to be debugged separately.

I will take a look at all these logs and get back to you in
a day or two.

thanks,
-- Shuah

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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-07-01 22:56                   ` Shuah Khan
@ 2025-07-02  2:12                     ` Zongmin Zhou
  2025-07-02 23:54                       ` Shuah Khan
  0 siblings, 1 reply; 33+ messages in thread
From: Zongmin Zhou @ 2025-07-02  2:12 UTC (permalink / raw)
  To: Shuah Khan, Greg KH
  Cc: shuah, valentina.manea.m, i, linux-kernel, linux-usb, zhouzongmin


On 2025/7/2 06:56, Shuah Khan wrote:
> On 6/23/25 21:21, Zongmin Zhou wrote:
>>
>> On 2025/6/21 01:26, Shuah Khan wrote:
>>> On 6/20/25 03:27, Greg KH wrote:
>>>> On Fri, Jun 20, 2025 at 05:19:33PM +0800, Zongmin Zhou wrote:
>>>>>
>>>>> On 2025/6/20 12:29, Greg KH wrote:
>>>>>> On Fri, Jun 20, 2025 at 10:16:16AM +0800, Zongmin Zhou wrote:
>>>>>>> On 2025/6/19 19:01, Greg KH wrote:
>>>>>>>> On Wed, Jun 04, 2025 at 02:54:10PM +0800, Zongmin Zhou wrote:
>>>>>>>>> From: Zongmin Zhou <zhouzongmin@kylinos.cn>
>>>>>>>>>
>>>>>>>>> The vhci driver does not need to create a platform device,
>>>>>>>>> it only did so because it was simple to do that in order to
>>>>>>>>> get a place in sysfs to hang some device-specific attributes.
>>>>>>>>> Now the faux device interface is more appropriate,change it
>>>>>>>>> over to use the faux bus instead.
>>>>>>>>>
>>>>>>>>> Signed-off-by: Zongmin Zhou <zhouzongmin@kylinos.cn>
>>>>>>>>> ---
>>>>>>>>> Changes in v2:
>>>>>>>>> - don't change faux create api,just call probe on vhci_hcd_init.
>>>>>>>>>
>>>>>>>>>     drivers/usb/usbip/vhci.h             |  4 +-
>>>>>>>>>     drivers/usb/usbip/vhci_hcd.c         | 86 
>>>>>>>>> +++++++++++-----------------
>>>>>>>>>     drivers/usb/usbip/vhci_sysfs.c       | 68 
>>>>>>>>> +++++++++++-----------
>>>>>>>>>     tools/usb/usbip/libsrc/vhci_driver.h |  2 +-
>>>>>>>>>     4 files changed, 72 insertions(+), 88 deletions(-)
>>>>>>>> I get the following build errors from this patch:
>>>>>>>>
>>>>>>>> drivers/usb/usbip/vhci_hcd.c:1462:12: error: ‘vhci_hcd_resume’ 
>>>>>>>> defined but not used [-Werror=unused-function]
>>>>>>>>     1462 | static int vhci_hcd_resume(struct faux_device *fdev)
>>>>>>>>          |            ^~~~~~~~~~~~~~~
>>>>>>>> drivers/usb/usbip/vhci_hcd.c:1418:12: error: ‘vhci_hcd_suspend’ 
>>>>>>>> defined but not used [-Werror=unused-function]
>>>>>>>>     1418 | static int vhci_hcd_suspend(struct faux_device 
>>>>>>>> *fdev, pm_message_t state)
>>>>>>>>          |            ^~~~~~~~~~~~~~~~
>>>>>>>> cc1: all warnings being treated as errors
>>>>>>>>
>>>>>>>> Are you sure you tested this?
>>>>>>> I apologize for not enabling -Werror, which resulted in missing 
>>>>>>> this error
>>>>>>> warning.
>>>>>>> I have tested usbip feature use the new patch,but not test system
>>>>>>> suspend/resume.
>>>>>>> The faux bus type don't add pm function,and vhci-hcd driver 
>>>>>>> can't register
>>>>>>> it.
>>>>>>> Maybe have to add suspend/resume for it.like below:
>>>>>>> static const struct bus_type faux_bus_type = {
>>>>>>>       .name        = "faux",
>>>>>>>       .match        = faux_match,
>>>>>>>       .probe        = faux_probe,
>>>>>>>       .remove        = faux_remove,
>>>>>>>       .resume     = faux_resume,
>>>>>>>       .suspend    = faux_suspend,
>>>>>>> };
>>>>>>>
>>>>>>> Is that right?
>>>>>>> Your expertise would be greatly valued.
>>>>>> As this is not real hardware, why do you need the suspend/resume
>>>>>> callbacks at all?  What is happening here that requires them?
>>>>> @greg,
>>>>> The vhci_hcd_suspend/vhci_hcd_resume interfaces are not designed 
>>>>> for this
>>>>> faux device, but rather to
>>>>> manipulate the HCD_FLAG_HW_ACCESSIBLE bit in the hcd flags 
>>>>> associated with
>>>>> the faux device.
>>>>> For example:
>>>>> During system standby: clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)
>>>>> During system wakeup: set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)
>>>>>
>>>>> Previously, these two functions were registered through 
>>>>> platform_driver,
>>>>> but faux bus does not have the relevant interface, so they were 
>>>>> not called,
>>>>> resulting in this compilation warning error.
>>>>>
>>>>> This raises the question: Should the faux bus implement PM-related
>>>>> interface?
>>>>> I'm uncertain whether these functions are essential for the 
>>>>> vhci-hcd driver
>>>>> or if they can be safely removed.
>>>>>
>>>>> However, during system standby/wakeup tests with remote USB 
>>>>> devices bound to
>>>>> the vhci-hcd driver,
>>>>> I observed consistent failure scenarios across both the original 
>>>>> platform
>>>>> bus and faux bus patch implementations.
>>>
>>> suspend and resume hooks have been in the code from beginning
>>> in the CONFIG_PM path. The original authors are skeptical about
>>> what should happen during suspend"
>>>
>>> /* what should happen for USB/IP under suspend/resume? */
>>> suspend hook checks for active connections and sends EBBUSY
>>> back to pm core.
>>>
>>> Active connection means any of the ports are in 
>>> USB_PORT_STAT_CONNECTION
>>> state. So as long as there are active connections between vhci client
>>> and the host, suspend won't work. So we really don't know what happens
>>> to the active connections if there are no suspend/resume hooks.
>>>
>>> If there are no active connections, then it will clear the 
>>> HCD_FLAG_HW_ACCESSIBLE
>>> bit and returns to pm core to continue with suspend.
>>>
>>> resume sets the HCD_FLAG_HW_ACCESSIBLE flag to indicate hardware is 
>>> accessible
>>> and initiates port status poll.
>>>
>>> - suspend hook prevents suspend
>>>
>>> With faux device since there is no suspend and resume hook, I would 
>>> expect
>>> these hooks are not a factor in suspend and resume.
>>>
>>> vhci_hcd is a special case virtual driver as it is a proxy for 
>>> controlling
>>> hardware on the host.
>>>
>>> Zongmin,
>>>
>>> Do suspend/resume work when vhci_hcd is not loaded?
>>> What happens when when system suspends and resumes with faux device?
>>> Can you send me dmesg logs and pm logs?
>>>
>> Hi Greg,shuah
>>
>> Yes, system with vhci_hcd unload or just load vhci_hcd driver
>> without usbip devices bound to vhci_hcd,system suspend/resume worked 
>> well.
>> Some logs for you.
>
> Sorry for the delay. I was at a conference last week.
> Thank you for sending these logs.
>
>> 1.system with vhci_hcd driver load,but don't bound any usbip devices 
>> to vhci_hcd,suspend/resume worked well.
>> see dmesg-faux bus-load.log
>
>
>>
>> 2.usbip device bound to vhci_hcd,and do system suspend 
>> action,suspend/resume worked failed.
>> I observed two distinct failure scenario:
>> Scenario 1: System failed to enter suspend state,and will auto resume;
>
>
>> the log for use platform bus:
>> dmesg-platform bus-device bound-auto resume.log
>
> This is clear from the suspend hook in the vhci_hcd.
> When it returns EBUSY, suspend will fail and move to
> auto resume.
>
>> the log for use faux bus:
>> dmesg-faux bus-device bound-auto resume.log
>
> It is good that the behavior is same with faux bus even though
> suspend hook isn't called. I will take a look at the log.
>
>>
>> Scenario 2: System resume failed with black screen freeze,a forced 
>> restart of the machine is require.
>> the log for use platform bus:
>> dmesg-platform bus-device bound-black screen.log
>> the log for use faux bus:
>> dmesg-faux bus-device bound-black screen.log
>
> That is bad. When does this happen? Is there a difference in
> configuration?
>
No, there's no difference. The same code is used for two different 
failure scenarios.
I just tested many times. These two different situations occur 
probabilistically.
But they both happened only when the USBIP device is bound to the 
vhci_hcd driver.
> The behavior same for platform bus and faux bus. Sounds like
> an existing problem that needs to be debugged separately.
>
> I will take a look at all these logs and get back to you in
> a day or two.
>
> thanks,
> -- Shuah


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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-07-02  2:12                     ` Zongmin Zhou
@ 2025-07-02 23:54                       ` Shuah Khan
  2025-07-03  6:04                         ` Zongmin Zhou
  0 siblings, 1 reply; 33+ messages in thread
From: Shuah Khan @ 2025-07-02 23:54 UTC (permalink / raw)
  To: Zongmin Zhou, Greg KH
  Cc: shuah, valentina.manea.m, i, linux-kernel, linux-usb, zhouzongmin,
	Shuah Khan

On 7/1/25 20:12, Zongmin Zhou wrote:
> 
> On 2025/7/2 06:56, Shuah Khan wrote:
>> On 6/23/25 21:21, Zongmin Zhou wrote:
>>>
>>> On 2025/6/21 01:26, Shuah Khan wrote:
>>>> On 6/20/25 03:27, Greg KH wrote:
>>>>> On Fri, Jun 20, 2025 at 05:19:33PM +0800, Zongmin Zhou wrote:
>>>>>>
>>>>>> On 2025/6/20 12:29, Greg KH wrote:
>>>>>>> On Fri, Jun 20, 2025 at 10:16:16AM +0800, Zongmin Zhou wrote:
>>>>>>>> On 2025/6/19 19:01, Greg KH wrote:
>>>>>>>>> On Wed, Jun 04, 2025 at 02:54:10PM +0800, Zongmin Zhou wrote:
>>>>>>>>>> From: Zongmin Zhou <zhouzongmin@kylinos.cn>
>>>>>>>>>>
>>>>>>>>>> The vhci driver does not need to create a platform device,
>>>>>>>>>> it only did so because it was simple to do that in order to
>>>>>>>>>> get a place in sysfs to hang some device-specific attributes.
>>>>>>>>>> Now the faux device interface is more appropriate,change it
>>>>>>>>>> over to use the faux bus instead.
>>>>>>>>>>
>>>>>>>>>> Signed-off-by: Zongmin Zhou <zhouzongmin@kylinos.cn>
>>>>>>>>>> ---
>>>>>>>>>> Changes in v2:
>>>>>>>>>> - don't change faux create api,just call probe on vhci_hcd_init.
>>>>>>>>>>
>>>>>>>>>>     drivers/usb/usbip/vhci.h             |  4 +-
>>>>>>>>>>     drivers/usb/usbip/vhci_hcd.c         | 86 +++++++++++-----------------
>>>>>>>>>>     drivers/usb/usbip/vhci_sysfs.c       | 68 +++++++++++-----------
>>>>>>>>>>     tools/usb/usbip/libsrc/vhci_driver.h |  2 +-
>>>>>>>>>>     4 files changed, 72 insertions(+), 88 deletions(-)
>>>>>>>>> I get the following build errors from this patch:
>>>>>>>>>
>>>>>>>>> drivers/usb/usbip/vhci_hcd.c:1462:12: error: ‘vhci_hcd_resume’ defined but not used [-Werror=unused-function]
>>>>>>>>>     1462 | static int vhci_hcd_resume(struct faux_device *fdev)
>>>>>>>>>          |            ^~~~~~~~~~~~~~~
>>>>>>>>> drivers/usb/usbip/vhci_hcd.c:1418:12: error: ‘vhci_hcd_suspend’ defined but not used [-Werror=unused-function]
>>>>>>>>>     1418 | static int vhci_hcd_suspend(struct faux_device *fdev, pm_message_t state)
>>>>>>>>>          |            ^~~~~~~~~~~~~~~~
>>>>>>>>> cc1: all warnings being treated as errors
>>>>>>>>>
>>>>>>>>> Are you sure you tested this?
>>>>>>>> I apologize for not enabling -Werror, which resulted in missing this error
>>>>>>>> warning.
>>>>>>>> I have tested usbip feature use the new patch,but not test system
>>>>>>>> suspend/resume.
>>>>>>>> The faux bus type don't add pm function,and vhci-hcd driver can't register
>>>>>>>> it.
>>>>>>>> Maybe have to add suspend/resume for it.like below:
>>>>>>>> static const struct bus_type faux_bus_type = {
>>>>>>>>       .name        = "faux",
>>>>>>>>       .match        = faux_match,
>>>>>>>>       .probe        = faux_probe,
>>>>>>>>       .remove        = faux_remove,
>>>>>>>>       .resume     = faux_resume,
>>>>>>>>       .suspend    = faux_suspend,
>>>>>>>> };
>>>>>>>>
>>>>>>>> Is that right?
>>>>>>>> Your expertise would be greatly valued.
>>>>>>> As this is not real hardware, why do you need the suspend/resume
>>>>>>> callbacks at all?  What is happening here that requires them?
>>>>>> @greg,
>>>>>> The vhci_hcd_suspend/vhci_hcd_resume interfaces are not designed for this
>>>>>> faux device, but rather to
>>>>>> manipulate the HCD_FLAG_HW_ACCESSIBLE bit in the hcd flags associated with
>>>>>> the faux device.
>>>>>> For example:
>>>>>> During system standby: clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)
>>>>>> During system wakeup: set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)
>>>>>>
>>>>>> Previously, these two functions were registered through platform_driver,
>>>>>> but faux bus does not have the relevant interface, so they were not called,
>>>>>> resulting in this compilation warning error.
>>>>>>
>>>>>> This raises the question: Should the faux bus implement PM-related
>>>>>> interface?
>>>>>> I'm uncertain whether these functions are essential for the vhci-hcd driver
>>>>>> or if they can be safely removed.
>>>>>>
>>>>>> However, during system standby/wakeup tests with remote USB devices bound to
>>>>>> the vhci-hcd driver,
>>>>>> I observed consistent failure scenarios across both the original platform
>>>>>> bus and faux bus patch implementations.
>>>>
>>>> suspend and resume hooks have been in the code from beginning
>>>> in the CONFIG_PM path. The original authors are skeptical about
>>>> what should happen during suspend"
>>>>
>>>> /* what should happen for USB/IP under suspend/resume? */
>>>> suspend hook checks for active connections and sends EBBUSY
>>>> back to pm core.
>>>>
>>>> Active connection means any of the ports are in USB_PORT_STAT_CONNECTION
>>>> state. So as long as there are active connections between vhci client
>>>> and the host, suspend won't work. So we really don't know what happens
>>>> to the active connections if there are no suspend/resume hooks.
>>>>
>>>> If there are no active connections, then it will clear the HCD_FLAG_HW_ACCESSIBLE
>>>> bit and returns to pm core to continue with suspend.
>>>>
>>>> resume sets the HCD_FLAG_HW_ACCESSIBLE flag to indicate hardware is accessible
>>>> and initiates port status poll.
>>>>
>>>> - suspend hook prevents suspend
>>>>
>>>> With faux device since there is no suspend and resume hook, I would expect
>>>> these hooks are not a factor in suspend and resume.
>>>>
>>>> vhci_hcd is a special case virtual driver as it is a proxy for controlling
>>>> hardware on the host.
>>>>
>>>> Zongmin,
>>>>
>>>> Do suspend/resume work when vhci_hcd is not loaded?
>>>> What happens when when system suspends and resumes with faux device?
>>>> Can you send me dmesg logs and pm logs?
>>>>
>>> Hi Greg,shuah
>>>
>>> Yes, system with vhci_hcd unload or just load vhci_hcd driver
>>> without usbip devices bound to vhci_hcd,system suspend/resume worked well.
>>> Some logs for you.
>>
>> Sorry for the delay. I was at a conference last week.
>> Thank you for sending these logs.
>>
>>> 1.system with vhci_hcd driver load,but don't bound any usbip devices to vhci_hcd,suspend/resume worked well.
>>> see dmesg-faux bus-load.log
>>
>>
>>>
>>> 2.usbip device bound to vhci_hcd,and do system suspend action,suspend/resume worked failed.
>>> I observed two distinct failure scenario:
>>> Scenario 1: System failed to enter suspend state,and will auto resume;
>>
>>
>>> the log for use platform bus:
>>> dmesg-platform bus-device bound-auto resume.log
>>
>> This is clear from the suspend hook in the vhci_hcd.
>> When it returns EBUSY, suspend will fail and move to
>> auto resume.
>>
>>> the log for use faux bus:
>>> dmesg-faux bus-device bound-auto resume.log
>>
>> It is good that the behavior is same with faux bus even though
>> suspend hook isn't called. I will take a look at the log.
>>
>>>
>>> Scenario 2: System resume failed with black screen freeze,a forced restart of the machine is require.
>>> the log for use platform bus:
>>> dmesg-platform bus-device bound-black screen.log
>>> the log for use faux bus:
>>> dmesg-faux bus-device bound-black screen.log
>>
>> That is bad. When does this happen? Is there a difference in
>> configuration?
>>
> No, there's no difference. The same code is used for two different failure scenarios.
> I just tested many times. These two different situations occur probabilistically.
> But they both happened only when the USBIP device is bound to the vhci_hcd driver.
>> The behavior same for platform bus and faux bus. Sounds like
>> an existing problem that needs to be debugged separately.
>>
>> I will take a look at all these logs and get back to you in
>> a day or two.
>>

I looked at the logs and here is what I found:

Scenario 1:
   dmesg-faux bus-device bound-auto resume.log
   dmesg-platform bus-device bound-auto resume.log

In this case suspend bailed out way before driver suspend
when vhci_hcd is using platform and faux bus.

Freezing remaining freezable tasks failed after 20.006 seconds (0 tasks refusing to freeze, wq_busy=1)
Restarting kernel threads ... done
OOM killer enabled.
Restarting tasks ... done.
random: crng reseeded on system resumption
PM: suspend exit

Auto-resume of the user-space worked. Scenario 1 isn't really
interesting.

Scenario 2:
   dmesg-faux bus-device bound-black screen.log
   dmesg-platform bus-device bound-black screen.log

Even though the result is the same in seeing blank screen, how
we get there is different.

=================
faux-bus device:
=================
- suspend worked - looks like
   usb 4-1: PM: calling usb_dev_suspend @ 6054, parent: usb4
   usb 4-1: PM: usb_dev_suspend returned 0 after 13675 usecs
   usb usb4: PM: calling usb_dev_suspend @ 6055, parent: vhci_hcd.0
   usb usb4: PM: usb_dev_suspend returned 0 after 9 usecs

vhci_hcd suspend isn't in play here. usb_dev_suspend() returns.
See below

usb 4-1: PM: usb_dev_suspend returned message.

-------------------------------------------------------------

- resume started (assuming it has been initiated by user)

[  650.027491][ T6056] pci 0000:00:01.0: PM: pci_pm_suspend_noirq returned 0 after 304 usecs

See see timestamp difference between the last suspend message and the
first resume message.
[  674.000257][   T39] pci 0000:00:00.0: PM: calling pci_pm_resume_noirq @ 39, parent: pci0000:00

usb 4-1 usb_dev_resume never returns.

[  674.071125][ T6117] usb usb4: PM: usb_dev_resume returned 0 after 21110 usecs
[  674.113991][ T6126] usb 4-1: PM: calling usb_dev_resume @ 6126, parent: usb4

-------------------------------------------------------------

=====================
platform bus device
=====================

- suspend was aborted because vhci_hcd suspend routine returned error

[  297.854621][ T9402] usb 4-1: PM: calling usb_dev_suspend @ 9402, parent: usb4
[  297.868524][ T9402] usb 4-1: PM: usb_dev_suspend returned 0 after 13214 usecs
[  297.869994][ T9403] usb usb4: PM: calling usb_dev_suspend @ 9403, parent: vhci_hcd.0
[  297.871959][ T9403] usb usb4: PM: usb_dev_suspend returned 0 after 30 usecs
[  297.873644][ T9394] vhci_hcd vhci_hcd.0: PM: calling platform_pm_suspend @ 9394, parent: platform
[  297.874738][ T9394] vhci_hcd vhci_hcd.0: We have 1 active connection. Do not suspend.
[  297.875369][ T9394] vhci_hcd vhci_hcd.0: PM: dpm_run_callback(): platform_pm_suspend returns -16
[  297.876078][ T9394] vhci_hcd vhci_hcd.0: PM: platform_pm_suspend returned -16 after 1341 usecs
[  297.876774][ T9394] vhci_hcd vhci_hcd.0: PM: failed to suspend: error -16

- the following triggers resume
[  297.877321][ T9394] PM: Some devices failed to suspend, or early wake event detected

[  297.881065][ T9403] usb usb3: PM: usb_dev_resume returned 0 after 19 usecs
[  297.904551][ T9408] usb usb4: PM: usb_dev_resume returned 0 after 22911 usecs
[  297.905148][ T9418] usb 4-1: PM: calling usb_dev_resume @ 9418, parent: usb4

usb 4-1 usb_dev_resume never returns.

Note - In both cases, usb_dev_resume doesn't return. When it is called is the
difference.

I don't think suspend/resume works when devices are bound. Suspend exits and
starts resume which seems to fail because it doesn't handle the virtual usb
device resume. There is a missing piece here.

When vhci_hcd imports a device and acts as a proxy between the virtual mass
storage device (e.g in this case) - it appears suspend and resume are
handled as if it is a usb device. Maybe this is incorrect?

usb_dev_suspend() works and usb_dev_resume() on these virtual usb devices?
Do we need to handle this in usb_dev_resume()?

Talking out loud - I have to do some looking into.

thanks,
-- Shuah





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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-07-02 23:54                       ` Shuah Khan
@ 2025-07-03  6:04                         ` Zongmin Zhou
  2025-07-08 18:16                           ` Shuah Khan
  0 siblings, 1 reply; 33+ messages in thread
From: Zongmin Zhou @ 2025-07-03  6:04 UTC (permalink / raw)
  To: Shuah Khan, Greg KH
  Cc: shuah, valentina.manea.m, i, linux-kernel, linux-usb, zhouzongmin

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


On 2025/7/3 07:54, Shuah Khan wrote:
> On 7/1/25 20:12, Zongmin Zhou wrote:
>>
>> On 2025/7/2 06:56, Shuah Khan wrote:
>>> On 6/23/25 21:21, Zongmin Zhou wrote:
>>>>
>>>> On 2025/6/21 01:26, Shuah Khan wrote:
>>>>> On 6/20/25 03:27, Greg KH wrote:
>>>>>> On Fri, Jun 20, 2025 at 05:19:33PM +0800, Zongmin Zhou wrote:
>>>>>>>
>>>>>>> On 2025/6/20 12:29, Greg KH wrote:
>>>>>>>> On Fri, Jun 20, 2025 at 10:16:16AM +0800, Zongmin Zhou wrote:
>>>>>>>>> On 2025/6/19 19:01, Greg KH wrote:
>>>>>>>>>> On Wed, Jun 04, 2025 at 02:54:10PM +0800, Zongmin Zhou wrote:
>>>>>>>>>>> From: Zongmin Zhou <zhouzongmin@kylinos.cn>
>>>>>>>>>>>
>>>>>>>>>>> The vhci driver does not need to create a platform device,
>>>>>>>>>>> it only did so because it was simple to do that in order to
>>>>>>>>>>> get a place in sysfs to hang some device-specific attributes.
>>>>>>>>>>> Now the faux device interface is more appropriate,change it
>>>>>>>>>>> over to use the faux bus instead.
>>>>>>>>>>>
>>>>>>>>>>> Signed-off-by: Zongmin Zhou <zhouzongmin@kylinos.cn>
>>>>>>>>>>> ---
>>>>>>>>>>> Changes in v2:
>>>>>>>>>>> - don't change faux create api,just call probe on 
>>>>>>>>>>> vhci_hcd_init.
>>>>>>>>>>>
>>>>>>>>>>>     drivers/usb/usbip/vhci.h             |  4 +-
>>>>>>>>>>>     drivers/usb/usbip/vhci_hcd.c         | 86 
>>>>>>>>>>> +++++++++++-----------------
>>>>>>>>>>>     drivers/usb/usbip/vhci_sysfs.c       | 68 
>>>>>>>>>>> +++++++++++-----------
>>>>>>>>>>>     tools/usb/usbip/libsrc/vhci_driver.h |  2 +-
>>>>>>>>>>>     4 files changed, 72 insertions(+), 88 deletions(-)
>>>>>>>>>> I get the following build errors from this patch:
>>>>>>>>>>
>>>>>>>>>> drivers/usb/usbip/vhci_hcd.c:1462:12: error: 
>>>>>>>>>> ‘vhci_hcd_resume’ defined but not used [-Werror=unused-function]
>>>>>>>>>>     1462 | static int vhci_hcd_resume(struct faux_device *fdev)
>>>>>>>>>>          |            ^~~~~~~~~~~~~~~
>>>>>>>>>> drivers/usb/usbip/vhci_hcd.c:1418:12: error: 
>>>>>>>>>> ‘vhci_hcd_suspend’ defined but not used 
>>>>>>>>>> [-Werror=unused-function]
>>>>>>>>>>     1418 | static int vhci_hcd_suspend(struct faux_device 
>>>>>>>>>> *fdev, pm_message_t state)
>>>>>>>>>>          |            ^~~~~~~~~~~~~~~~
>>>>>>>>>> cc1: all warnings being treated as errors
>>>>>>>>>>
>>>>>>>>>> Are you sure you tested this?
>>>>>>>>> I apologize for not enabling -Werror, which resulted in 
>>>>>>>>> missing this error
>>>>>>>>> warning.
>>>>>>>>> I have tested usbip feature use the new patch,but not test system
>>>>>>>>> suspend/resume.
>>>>>>>>> The faux bus type don't add pm function,and vhci-hcd driver 
>>>>>>>>> can't register
>>>>>>>>> it.
>>>>>>>>> Maybe have to add suspend/resume for it.like below:
>>>>>>>>> static const struct bus_type faux_bus_type = {
>>>>>>>>>       .name        = "faux",
>>>>>>>>>       .match        = faux_match,
>>>>>>>>>       .probe        = faux_probe,
>>>>>>>>>       .remove        = faux_remove,
>>>>>>>>>       .resume     = faux_resume,
>>>>>>>>>       .suspend    = faux_suspend,
>>>>>>>>> };
>>>>>>>>>
>>>>>>>>> Is that right?
>>>>>>>>> Your expertise would be greatly valued.
>>>>>>>> As this is not real hardware, why do you need the suspend/resume
>>>>>>>> callbacks at all?  What is happening here that requires them?
>>>>>>> @greg,
>>>>>>> The vhci_hcd_suspend/vhci_hcd_resume interfaces are not designed 
>>>>>>> for this
>>>>>>> faux device, but rather to
>>>>>>> manipulate the HCD_FLAG_HW_ACCESSIBLE bit in the hcd flags 
>>>>>>> associated with
>>>>>>> the faux device.
>>>>>>> For example:
>>>>>>> During system standby: clear_bit(HCD_FLAG_HW_ACCESSIBLE, 
>>>>>>> &hcd->flags)
>>>>>>> During system wakeup: set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)
>>>>>>>
>>>>>>> Previously, these two functions were registered through 
>>>>>>> platform_driver,
>>>>>>> but faux bus does not have the relevant interface, so they were 
>>>>>>> not called,
>>>>>>> resulting in this compilation warning error.
>>>>>>>
>>>>>>> This raises the question: Should the faux bus implement PM-related
>>>>>>> interface?
>>>>>>> I'm uncertain whether these functions are essential for the 
>>>>>>> vhci-hcd driver
>>>>>>> or if they can be safely removed.
>>>>>>>
>>>>>>> However, during system standby/wakeup tests with remote USB 
>>>>>>> devices bound to
>>>>>>> the vhci-hcd driver,
>>>>>>> I observed consistent failure scenarios across both the original 
>>>>>>> platform
>>>>>>> bus and faux bus patch implementations.
>>>>>
>>>>> suspend and resume hooks have been in the code from beginning
>>>>> in the CONFIG_PM path. The original authors are skeptical about
>>>>> what should happen during suspend"
>>>>>
>>>>> /* what should happen for USB/IP under suspend/resume? */
>>>>> suspend hook checks for active connections and sends EBBUSY
>>>>> back to pm core.
>>>>>
>>>>> Active connection means any of the ports are in 
>>>>> USB_PORT_STAT_CONNECTION
>>>>> state. So as long as there are active connections between vhci client
>>>>> and the host, suspend won't work. So we really don't know what 
>>>>> happens
>>>>> to the active connections if there are no suspend/resume hooks.
>>>>>
>>>>> If there are no active connections, then it will clear the 
>>>>> HCD_FLAG_HW_ACCESSIBLE
>>>>> bit and returns to pm core to continue with suspend.
>>>>>
>>>>> resume sets the HCD_FLAG_HW_ACCESSIBLE flag to indicate hardware 
>>>>> is accessible
>>>>> and initiates port status poll.
>>>>>
>>>>> - suspend hook prevents suspend
>>>>>
>>>>> With faux device since there is no suspend and resume hook, I 
>>>>> would expect
>>>>> these hooks are not a factor in suspend and resume.
>>>>>
>>>>> vhci_hcd is a special case virtual driver as it is a proxy for 
>>>>> controlling
>>>>> hardware on the host.
>>>>>
>>>>> Zongmin,
>>>>>
>>>>> Do suspend/resume work when vhci_hcd is not loaded?
>>>>> What happens when when system suspends and resumes with faux device?
>>>>> Can you send me dmesg logs and pm logs?
>>>>>
>>>> Hi Greg,shuah
>>>>
>>>> Yes, system with vhci_hcd unload or just load vhci_hcd driver
>>>> without usbip devices bound to vhci_hcd,system suspend/resume 
>>>> worked well.
>>>> Some logs for you.
>>>
>>> Sorry for the delay. I was at a conference last week.
>>> Thank you for sending these logs.
>>>
>>>> 1.system with vhci_hcd driver load,but don't bound any usbip 
>>>> devices to vhci_hcd,suspend/resume worked well.
>>>> see dmesg-faux bus-load.log
>>>
>>>
>>>>
>>>> 2.usbip device bound to vhci_hcd,and do system suspend 
>>>> action,suspend/resume worked failed.
>>>> I observed two distinct failure scenario:
>>>> Scenario 1: System failed to enter suspend state,and will auto resume;
>>>
>>>
>>>> the log for use platform bus:
>>>> dmesg-platform bus-device bound-auto resume.log
>>>
>>> This is clear from the suspend hook in the vhci_hcd.
>>> When it returns EBUSY, suspend will fail and move to
>>> auto resume.
>>>
>>>> the log for use faux bus:
>>>> dmesg-faux bus-device bound-auto resume.log
>>>
>>> It is good that the behavior is same with faux bus even though
>>> suspend hook isn't called. I will take a look at the log.
>>>
>>>>
>>>> Scenario 2: System resume failed with black screen freeze,a forced 
>>>> restart of the machine is require.
>>>> the log for use platform bus:
>>>> dmesg-platform bus-device bound-black screen.log
>>>> the log for use faux bus:
>>>> dmesg-faux bus-device bound-black screen.log
>>>
>>> That is bad. When does this happen? Is there a difference in
>>> configuration?
>>>
>> No, there's no difference. The same code is used for two different 
>> failure scenarios.
>> I just tested many times. These two different situations occur 
>> probabilistically.
>> But they both happened only when the USBIP device is bound to the 
>> vhci_hcd driver.
>>> The behavior same for platform bus and faux bus. Sounds like
>>> an existing problem that needs to be debugged separately.
>>>
>>> I will take a look at all these logs and get back to you in
>>> a day or two.
>>>
>
> I looked at the logs and here is what I found:
>
> Scenario 1:
>   dmesg-faux bus-device bound-auto resume.log
>   dmesg-platform bus-device bound-auto resume.log
>
> In this case suspend bailed out way before driver suspend
> when vhci_hcd is using platform and faux bus.
>
> Freezing remaining freezable tasks failed after 20.006 seconds (0 
> tasks refusing to freeze, wq_busy=1)
> Restarting kernel threads ... done
> OOM killer enabled.
> Restarting tasks ... done.
> random: crng reseeded on system resumption
> PM: suspend exit
>
> Auto-resume of the user-space worked. Scenario 1 isn't really
> interesting.
>
> Scenario 2:
>   dmesg-faux bus-device bound-black screen.log
>   dmesg-platform bus-device bound-black screen.log
>
> Even though the result is the same in seeing blank screen, how
> we get there is different.
>
> =================
> faux-bus device:
> =================
> - suspend worked - looks like
>   usb 4-1: PM: calling usb_dev_suspend @ 6054, parent: usb4
>   usb 4-1: PM: usb_dev_suspend returned 0 after 13675 usecs
>   usb usb4: PM: calling usb_dev_suspend @ 6055, parent: vhci_hcd.0
>   usb usb4: PM: usb_dev_suspend returned 0 after 9 usecs
>
> vhci_hcd suspend isn't in play here. usb_dev_suspend() returns.
> See below
>
> usb 4-1: PM: usb_dev_suspend returned message.
>
> -------------------------------------------------------------
>
> - resume started (assuming it has been initiated by user)
>
> [  650.027491][ T6056] pci 0000:00:01.0: PM: pci_pm_suspend_noirq 
> returned 0 after 304 usecs
>
> See see timestamp difference between the last suspend message and the
> first resume message.
> [  674.000257][   T39] pci 0000:00:00.0: PM: calling 
> pci_pm_resume_noirq @ 39, parent: pci0000:00
>
> usb 4-1 usb_dev_resume never returns.
>
> [  674.071125][ T6117] usb usb4: PM: usb_dev_resume returned 0 after 
> 21110 usecs
> [  674.113991][ T6126] usb 4-1: PM: calling usb_dev_resume @ 6126, 
> parent: usb4
>
> -------------------------------------------------------------
>
> =====================
> platform bus device
> =====================
>
> - suspend was aborted because vhci_hcd suspend routine returned error
>
> [  297.854621][ T9402] usb 4-1: PM: calling usb_dev_suspend @ 9402, 
> parent: usb4
> [  297.868524][ T9402] usb 4-1: PM: usb_dev_suspend returned 0 after 
> 13214 usecs
> [  297.869994][ T9403] usb usb4: PM: calling usb_dev_suspend @ 9403, 
> parent: vhci_hcd.0
> [  297.871959][ T9403] usb usb4: PM: usb_dev_suspend returned 0 after 
> 30 usecs
> [  297.873644][ T9394] vhci_hcd vhci_hcd.0: PM: calling 
> platform_pm_suspend @ 9394, parent: platform
> [  297.874738][ T9394] vhci_hcd vhci_hcd.0: We have 1 active 
> connection. Do not suspend.
> [  297.875369][ T9394] vhci_hcd vhci_hcd.0: PM: dpm_run_callback(): 
> platform_pm_suspend returns -16
> [  297.876078][ T9394] vhci_hcd vhci_hcd.0: PM: platform_pm_suspend 
> returned -16 after 1341 usecs
> [  297.876774][ T9394] vhci_hcd vhci_hcd.0: PM: failed to suspend: 
> error -16
>
> - the following triggers resume
> [  297.877321][ T9394] PM: Some devices failed to suspend, or early 
> wake event detected
>
> [  297.881065][ T9403] usb usb3: PM: usb_dev_resume returned 0 after 
> 19 usecs
> [  297.904551][ T9408] usb usb4: PM: usb_dev_resume returned 0 after 
> 22911 usecs
> [  297.905148][ T9418] usb 4-1: PM: calling usb_dev_resume @ 9418, 
> parent: usb4
>
> usb 4-1 usb_dev_resume never returns.
>
> Note - In both cases, usb_dev_resume doesn't return. When it is called 
> is the
> difference.
>
> I don't think suspend/resume works when devices are bound. Suspend 
> exits and
> starts resume which seems to fail because it doesn't handle the 
> virtual usb
> device resume. There is a missing piece here.
>
> When vhci_hcd imports a device and acts as a proxy between the virtual 
> mass
> storage device (e.g in this case) - it appears suspend and resume are
> handled as if it is a usb device. Maybe this is incorrect?
>
> usb_dev_suspend() works and usb_dev_resume() on these virtual usb 
> devices?
> Do we need to handle this in usb_dev_resume()?
>
> Talking out loud - I have to do some looking into.
>
Re:
Yes, your analysis is completely correct.

In fact, I've experimented with adding PM hooks to the faux bus,
and found that faux bus devices then behave identically to platform bus 
devices during suspend/resume.
See the attachment.

This is likely a historical legacy issue.
Regarding this matter, is there anything else you'd like me to assist with?

> thanks,
> -- Shuah
>
>
>

[-- Attachment #2: dmesg-faux bus-device bound-with pm hook-black screen.log --]
[-- Type: text/x-log, Size: 178589 bytes --]

[    0.000000] Linux version 6.15.0-rc5+ (root@standardpc) (gcc (Ubuntu 9.3.0-10kylin2) 9.3.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #20 SMP PREEMPT_DYNAMIC Thu Jul  3 09:13:18 CST 2025
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-6.15.0-rc5+ root=UUID=3516f70c-4dd9-4b0f-bac4-c41778d09bbb ro quiet splash console=ttyS0 loglevel=7 initcall_debug no_console_suspend ignore_loglevel crashkernel=512M-:192M audit=0 security=kysec
[    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] 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-0x00000000bffdefff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bffdf000-0x00000000bfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable
[    0.000000] printk: debug: ignoring loglevel setting.
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] SMBIOS 2.8 present.
[    0.000000] DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.14.0-0-g155821a1990b-prebuilt.qemu.org 04/01/2014
[    0.000000] DMI: Memory slots populated: 1/1
[    0.000000] Hypervisor detected: KVM
[    0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[    0.000001] kvm-clock: using sched offset of 963931164954 cycles
[    0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    0.000005] tsc: Detected 2803.200 MHz processor
[    0.000630] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000632] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000636] last_pfn = 0x240000 max_arch_pfn = 0x400000000
[    0.000677] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs
[    0.000680] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000728] last_pfn = 0xbffdf max_arch_pfn = 0x400000000
[    0.007090] found SMP MP-table at [mem 0x000f5a40-0x000f5a4f]
[    0.007104] Using GB pages for direct mapping
[    0.007235] RAMDISK: [mem 0x2f169000-0x338abfff]
[    0.007238] ACPI: Early table checksum verification disabled
[    0.007242] ACPI: RSDP 0x00000000000F5A00 000014 (v00 BOCHS )
[    0.007246] ACPI: RSDT 0x00000000BFFE1639 000030 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.007251] ACPI: FACP 0x00000000BFFE150D 000074 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.007256] ACPI: DSDT 0x00000000BFFDFD80 00178D (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.007259] ACPI: FACS 0x00000000BFFDFD40 000040
[    0.007261] ACPI: APIC 0x00000000BFFE1581 000090 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.007264] ACPI: WAET 0x00000000BFFE1611 000028 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.007266] ACPI: Reserving FACP table memory at [mem 0xbffe150d-0xbffe1580]
[    0.007267] ACPI: Reserving DSDT table memory at [mem 0xbffdfd80-0xbffe150c]
[    0.007267] ACPI: Reserving FACS table memory at [mem 0xbffdfd40-0xbffdfd7f]
[    0.007268] ACPI: Reserving APIC table memory at [mem 0xbffe1581-0xbffe1610]
[    0.007268] ACPI: Reserving WAET table memory at [mem 0xbffe1611-0xbffe1638]
[    0.007491] No NUMA configuration found
[    0.007491] Faking a node at [mem 0x0000000000000000-0x000000023fffffff]
[    0.007497] NODE_DATA(0) allocated [mem 0x23ffd59c0-0x23fffffff]
[    0.007627] crashkernel reserved: 0x00000000b3000000 - 0x00000000bf000000 (192 MB)
[    0.007640] Zone ranges:
[    0.007640]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.007642]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.007643]   Normal   [mem 0x0000000100000000-0x000000023fffffff]
[    0.007644]   Device   empty
[    0.007644] Movable zone start for each node
[    0.007646] Early memory node ranges
[    0.007646]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.007647]   node   0: [mem 0x0000000000100000-0x00000000bffdefff]
[    0.007648]   node   0: [mem 0x0000000100000000-0x000000023fffffff]
[    0.007649] Initmem setup node 0 [mem 0x0000000000001000-0x000000023fffffff]
[    0.007654] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.007671] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.018253] On node 0, zone Normal: 33 pages in unavailable ranges
[    0.018556] ACPI: PM-Timer IO Port: 0x608
[    0.018572] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[    0.018605] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
[    0.018607] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.018609] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
[    0.018610] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.018611] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
[    0.018611] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
[    0.018615] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.018617] TSC deadline timer available
[    0.018620] CPU topo: Max. logical packages:   4
[    0.018621] CPU topo: Max. logical dies:       4
[    0.018621] CPU topo: Max. dies per package:   1
[    0.018624] CPU topo: Max. threads per core:   1
[    0.018624] CPU topo: Num. cores per package:     1
[    0.018625] CPU topo: Num. threads per package:   1
[    0.018625] CPU topo: Allowing 4 present CPUs plus 0 hotplug CPUs
[    0.018643] kvm-guest: APIC: eoi() replaced with kvm_guest_apic_eoi_write()
[    0.018656] kvm-guest: KVM setup pv remote TLB flush
[    0.018661] kvm-guest: setup PV sched yield
[    0.018666] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.018667] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[    0.018668] PM: hibernation: Registered nosave memory: [mem 0xbffdf000-0xffffffff]
[    0.018669] [mem 0xc0000000-0xfeffbfff] available for PCI devices
[    0.018670] Booting paravirtualized kernel on KVM
[    0.018672] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.018676] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.018892] percpu: Embedded 61 pages/cpu s212992 r8192 d28672 u524288
[    0.018896] pcpu-alloc: s212992 r8192 d28672 u524288 alloc=1*2097152
[    0.018898] pcpu-alloc: [0] 0 1 2 3 
[    0.018926] kvm-guest: PV spinlocks enabled
[    0.018927] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear)
[    0.018930] Kernel command line: BOOT_IMAGE=/vmlinuz-6.15.0-rc5+ root=UUID=3516f70c-4dd9-4b0f-bac4-c41778d09bbb ro quiet splash console=ttyS0 loglevel=7 initcall_debug no_console_suspend ignore_loglevel crashkernel=512M-:192M audit=0 security=kysec
[    0.019038] audit: disabled (until reboot)
[    0.019048] Unknown kernel command line parameters "splash BOOT_IMAGE=/vmlinuz-6.15.0-rc5+", will be passed to user space.
[    0.019060] random: crng init done
[    0.019061] printk: log buffer data + meta data: 1048576 + 3670016 = 4718592 bytes
[    0.019693] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.020007] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.020078] software IO TLB: area num 4.
[    0.193607] Fallback order for Node 0: 0 
[    0.193612] Built 1 zonelists, mobility grouping on.  Total pages: 2097021
[    0.193614] Policy zone: Normal
[    0.193616] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.205202] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.212705] ftrace: allocating 54136 entries in 212 pages
[    0.212708] ftrace: allocated 212 pages with 4 groups
[    0.213503] Dynamic Preempt: voluntary
[    0.213552] rcu: Preemptible hierarchical RCU implementation.
[    0.213552] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[    0.213553] 	Trampoline variant of Tasks RCU enabled.
[    0.213554] 	Rude variant of Tasks RCU enabled.
[    0.213554] 	Tracing variant of Tasks RCU enabled.
[    0.213554] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.213555] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.213560] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.213561] RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.213562] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.216320] NR_IRQS: 524544, nr_irqs: 456, preallocated irqs: 16
[    0.216521] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.216571] calling  con_init+0x0/0x270 @ 0
[    0.216583] Console: colour dummy device 80x25
[    0.216584] initcall con_init+0x0/0x270 returned 0 after 0 usecs
[    0.216586] calling  hvc_console_init+0x0/0x30 @ 0
[    0.216588] initcall hvc_console_init+0x0/0x30 returned 0 after 0 usecs
[    0.216589] calling  xen_cons_init+0x0/0x60 @ 0
[    0.216592] initcall xen_cons_init+0x0/0x60 returned 0 after 0 usecs
[    0.216593] calling  univ8250_console_init+0x0/0x40 @ 0
[    0.216640] printk: legacy console [ttyS0] enabled
[    0.276939] initcall univ8250_console_init+0x0/0x40 returned 0 after 0 usecs
[    0.277447] calling  kgdboc_earlycon_late_init+0x0/0x40 @ 0
[    0.277855] initcall kgdboc_earlycon_late_init+0x0/0x40 returned 0 after 0 usecs
[    0.278398] ACPI: Core revision 20240827
[    0.278733] APIC: Switch to symmetric I/O mode setup
[    0.279321] x2apic enabled
[    0.279786] APIC: Switched APIC routing to: physical x2apic
[    0.280190] kvm-guest: APIC: send_IPI_mask() replaced with kvm_send_ipi_mask()
[    0.280673] kvm-guest: APIC: send_IPI_mask_allbutself() replaced with kvm_send_ipi_mask_allbutself()
[    0.281228] kvm-guest: setup PV IPIs
[    0.282108] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x28680fa287f, max_idle_ns: 440795281151 ns
[    0.282850] Calibrating delay loop (skipped) preset value.. 5606.40 BogoMIPS (lpj=11212800)
[    0.283619] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.284112] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.284461] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.284846] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.285371] Spectre V2 : Spectre BHI mitigation: SW BHB clearing on syscall and VM exit
[    0.285782] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[    0.286109] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[    0.286551] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.286845] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.286845] GDS: Unknown: Dependent on hypervisor status
[    0.286845] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.286845] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.286845] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.286845] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    0.286845] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.286845] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    0.286845] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.286845] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.286845] x86/fpu: xstate_offset[5]:  832, xstate_sizes[5]:   64
[    0.286845] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    0.286845] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    0.286845] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    0.286845] x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
[    0.286845] Freeing SMP alternatives memory: 44K
[    0.286845] pid_max: default: 32768 minimum: 301
[    0.286845] LSM: initializing lsm=capability,ima,evm
[    0.286845] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.286845] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.286845] smpboot: CPU0: 11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz (family: 0x6, model: 0x8c, stepping: 0x1)
[    0.286845] calling  init_hw_perf_events+0x0/0x720 @ 1
[    0.286845] Performance Events: Icelake events, full-width counters, Intel PMU driver.
[    0.286845] ... version:                2
[    0.286845] ... bit width:              48
[    0.286845] ... generic registers:      8
[    0.286845] ... value mask:             0000ffffffffffff
[    0.286845] ... max period:             00007fffffffffff
[    0.286845] ... fixed-purpose events:   3
[    0.286845] ... event mask:             00000007000000ff
[    0.286845] initcall init_hw_perf_events+0x0/0x720 returned 0 after 0 usecs
[    0.286845] calling  mc_debug_enable+0x0/0xa0 @ 1
[    0.286850] initcall mc_debug_enable+0x0/0xa0 returned 0 after 0 usecs
[    0.287241] calling  do_init_real_mode+0x0/0x20 @ 1
[    0.287553] initcall do_init_real_mode+0x0/0x20 returned 0 after 0 usecs
[    0.287922] calling  init_sigframe_size+0x0/0x50 @ 1
[    0.288202] signal: max sigframe size: 3632
[    0.288454] initcall init_sigframe_size+0x0/0x50 returned 0 after 0 usecs
[    0.288881] calling  trace_init_perf_perm_irq_work_exit+0x0/0x20 @ 1
[    0.289290] initcall trace_init_perf_perm_irq_work_exit+0x0/0x20 returned 0 after 0 usecs
[    0.289802] calling  cache_ap_register+0x0/0x70 @ 1
[    0.290122] initcall cache_ap_register+0x0/0x70 returned 0 after 0 usecs
[    0.290534] calling  bp_init_aperfmperf+0x0/0x2c0 @ 1
[    0.290848] initcall bp_init_aperfmperf+0x0/0x2c0 returned 0 after 0 usecs
[    0.291278] calling  save_builtin_microcode+0x0/0xe0 @ 1
[    0.291617] initcall save_builtin_microcode+0x0/0xe0 returned 0 after 0 usecs
[    0.292056] calling  save_microcode_in_initrd+0x0/0x110 @ 1
[    0.292410] initcall save_microcode_in_initrd+0x0/0x110 returned 0 after 0 usecs
[    0.292867] calling  register_nmi_cpu_backtrace_handler+0x0/0x30 @ 1
[    0.293265] initcall register_nmi_cpu_backtrace_handler+0x0/0x30 returned 0 after 0 usecs
[    0.293783] calling  numachip_system_init+0x0/0x80 @ 1
[    0.294118] initcall numachip_system_init+0x0/0x80 returned 0 after 0 usecs
[    0.294549] calling  kvm_setup_vsyscall_timeinfo+0x0/0x190 @ 1
[    0.294848] initcall kvm_setup_vsyscall_timeinfo+0x0/0x190 returned 0 after 0 usecs
[    0.295256] calling  spawn_ksoftirqd+0x0/0x60 @ 1
[    0.295549] initcall spawn_ksoftirqd+0x0/0x60 returned 0 after 0 usecs
[    0.295937] calling  init_signal_sysctls+0x0/0x40 @ 1
[    0.296269] initcall init_signal_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.297122] calling  init_umh_sysctls+0x0/0x40 @ 1
[    0.297440] initcall init_umh_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.297860] calling  kthreads_init+0x0/0x40 @ 1
[    0.298145] initcall kthreads_init+0x0/0x40 returned 0 after 0 usecs
[    0.298502] calling  migration_init+0x0/0x40 @ 1
[    0.298774] initcall migration_init+0x0/0x40 returned 0 after 0 usecs
[    0.298849] calling  printk_set_kthreads_ready+0x0/0x50 @ 1
[    0.299174] initcall printk_set_kthreads_ready+0x0/0x50 returned 0 after 0 usecs
[    0.299625] calling  srcu_bootup_announce+0x0/0x90 @ 1
[    0.299967] rcu: Hierarchical SRCU implementation.
[    0.300277] rcu: 	Max phase no-delay instances is 1000.
[    0.300612] initcall srcu_bootup_announce+0x0/0x90 returned 0 after 0 usecs
[    0.301044] calling  rcu_spawn_gp_kthread+0x0/0x260 @ 1
[    0.302859] initcall rcu_spawn_gp_kthread+0x0/0x260 returned 0 after 4000 usecs
[    0.303315] calling  check_cpu_stall_init+0x0/0x30 @ 1
[    0.303646] initcall check_cpu_stall_init+0x0/0x30 returned 0 after 0 usecs
[    0.304077] calling  rcu_sysrq_init+0x0/0x40 @ 1
[    0.304385] initcall rcu_sysrq_init+0x0/0x40 returned 0 after 0 usecs
[    0.304792] calling  trace_init_flags_sys_enter+0x0/0x20 @ 1
[    0.305156] initcall trace_init_flags_sys_enter+0x0/0x20 returned 0 after 0 usecs
[    0.305620] calling  trace_init_flags_sys_exit+0x0/0x20 @ 1
[    0.305974] initcall trace_init_flags_sys_exit+0x0/0x20 returned 0 after 0 usecs
[    0.306444] calling  tmigr_init+0x0/0x190 @ 1
[    0.306731] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[    0.306852] initcall tmigr_init+0x0/0x190 returned 0 after 4000 usecs
[    0.307298] calling  cpu_stop_init+0x0/0xa0 @ 1
[    0.310857] initcall cpu_stop_init+0x0/0xa0 returned 0 after 4000 usecs
[    0.311278] calling  init_kprobes+0x0/0x1e0 @ 1
[    0.311663] initcall init_kprobes+0x0/0x1e0 returned 0 after 0 usecs
[    0.312063] calling  init_trace_printk+0x0/0x20 @ 1
[    0.312379] initcall init_trace_printk+0x0/0x20 returned 0 after 0 usecs
[    0.312744] calling  event_trace_enable_again+0x0/0x60 @ 1
[    0.313100] initcall event_trace_enable_again+0x0/0x60 returned 0 after 0 usecs
[    0.313552] calling  irq_work_init_threads+0x0/0x10 @ 1
[    0.313889] initcall irq_work_init_threads+0x0/0x10 returned 0 after 0 usecs
[    0.314324] calling  static_call_init+0x0/0xe0 @ 1
[    0.314635] initcall static_call_init+0x0/0xe0 returned 0 after 0 usecs
[    0.314849] calling  jump_label_init_module+0x0/0x20 @ 1
[    0.315188] initcall jump_label_init_module+0x0/0x20 returned 0 after 0 usecs
[    0.315622] calling  init_zero_pfn+0x0/0x50 @ 1
[    0.315914] initcall init_zero_pfn+0x0/0x50 returned 0 after 0 usecs
[    0.316329] calling  init_fs_inode_sysctls+0x0/0x40 @ 1
[    0.316713] initcall init_fs_inode_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.317150] calling  init_fs_locks_sysctls+0x0/0x40 @ 1
[    0.317452] initcall init_fs_locks_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.317834] calling  init_fs_sysctls+0x0/0x40 @ 1
[    0.318141] initcall init_fs_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.318549] calling  init_security_keys_sysctls+0x0/0x40 @ 1
[    0.318851] initcall init_security_keys_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.319298] calling  dynamic_debug_init+0x0/0x2b0 @ 1
[    0.319635] initcall dynamic_debug_init+0x0/0x2b0 returned 0 after 0 usecs
[    0.320045] calling  unpopulated_init+0x0/0x70 @ 1
[    0.320355] initcall unpopulated_init+0x0/0x70 returned -19 after 0 usecs
[    0.320811] calling  efi_memreserve_root_init+0x0/0x40 @ 1
[    0.321183] initcall efi_memreserve_root_init+0x0/0x40 returned 0 after 0 usecs
[    0.321659] calling  efi_earlycon_remap_fb+0x0/0x70 @ 1
[    0.321996] initcall efi_earlycon_remap_fb+0x0/0x70 returned 0 after 0 usecs
[    0.322449] calling  idle_inject_init+0x0/0x20 @ 1
[    0.322813] initcall idle_inject_init+0x0/0x20 returned 0 after 0 usecs
[    0.322916] smp: Bringing up secondary CPUs ...
[    0.323308] smpboot: x86: Booting SMP configuration:
[    0.323630] .... node  #0, CPUs:      #1 #2 #3
[    0.334944] smp: Brought up 1 node, 4 CPUs
[    0.335791] smpboot: Total of 4 processors activated (22425.60 BogoMIPS)
[    0.336468] Memory: 7856812K/8388084K available (17883K kernel code, 5975K rwdata, 7752K rodata, 4692K init, 5544K bss, 524120K reserved, 0K cma-reserved)
[    0.336468] devtmpfs: initialized
[    0.336468] x86/mm: Memory block size: 128MB
[    0.339086] calling  setup_split_lock_delayed_work+0x0/0xa0 @ 1
[    0.339473] initcall setup_split_lock_delayed_work+0x0/0xa0 returned 0 after 0 usecs
[    0.339948] calling  bpf_jit_charge_init+0x0/0x50 @ 1
[    0.340275] initcall bpf_jit_charge_init+0x0/0x50 returned 0 after 0 usecs
[    0.340704] calling  ipc_ns_init+0x0/0x50 @ 1
[    0.340990] initcall ipc_ns_init+0x0/0x50 returned 0 after 0 usecs
[    0.341375] calling  init_mmap_min_addr+0x0/0x50 @ 1
[    0.341703] initcall init_mmap_min_addr+0x0/0x50 returned 0 after 0 usecs
[    0.342127] calling  pci_realloc_setup_params+0x0/0x90 @ 1
[    0.342477] initcall pci_realloc_setup_params+0x0/0x90 returned 0 after 0 usecs
[    0.342848] calling  inet_frag_wq_init+0x0/0x50 @ 1
[    0.343196] initcall inet_frag_wq_init+0x0/0x50 returned 0 after 0 usecs
[    0.343308] calling  xen_pvh_gnttab_setup+0x0/0x50 @ 1
[    0.343653] initcall xen_pvh_gnttab_setup+0x0/0x50 returned -19 after 0 usecs
[    0.344094] calling  e820__register_nvs_regions+0x0/0x70 @ 1
[    0.344456] initcall e820__register_nvs_regions+0x0/0x70 returned 0 after 0 usecs
[    0.344915] calling  cpufreq_register_tsc_scaling+0x0/0x40 @ 1
[    0.345294] initcall cpufreq_register_tsc_scaling+0x0/0x40 returned 0 after 0 usecs
[    0.345732] calling  reboot_init+0x0/0x60 @ 1
[    0.345988] initcall reboot_init+0x0/0x60 returned 0 after 0 usecs
[    0.346330] calling  init_lapic_sysfs+0x0/0x40 @ 1
[    0.346848] initcall init_lapic_sysfs+0x0/0x40 returned 0 after 0 usecs
[    0.347211] calling  alloc_frozen_cpus+0x0/0x30 @ 1
[    0.347492] initcall alloc_frozen_cpus+0x0/0x30 returned 0 after 0 usecs
[    0.347857] calling  cpu_hotplug_pm_sync_init+0x0/0x30 @ 1
[    0.348164] initcall cpu_hotplug_pm_sync_init+0x0/0x30 returned 0 after 0 usecs
[    0.348571] calling  wq_sysfs_init+0x0/0x30 @ 1
[    0.348848] initcall wq_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[    0.349195] calling  ksysfs_init+0x0/0xd0 @ 1
[    0.349461] initcall ksysfs_init+0x0/0xd0 returned 0 after 0 usecs
[    0.349881] calling  schedutil_gov_init+0x0/0x20 @ 1
[    0.350308] initcall schedutil_gov_init+0x0/0x20 returned 0 after 0 usecs
[    0.350744] calling  pm_init+0x0/0x90 @ 1
[    0.350863] initcall pm_init+0x0/0x90 returned 0 after 0 usecs
[    0.351190] calling  pm_disk_init+0x0/0x30 @ 1
[    0.351468] initcall pm_disk_init+0x0/0x30 returned 0 after 0 usecs
[    0.351877] calling  swsusp_header_init+0x0/0x40 @ 1
[    0.352197] initcall swsusp_header_init+0x0/0x40 returned 0 after 0 usecs
[    0.352617] calling  rcu_set_runtime_mode+0x0/0x30 @ 1
[    0.352981] initcall rcu_set_runtime_mode+0x0/0x30 returned 0 after 0 usecs
[    0.353421] calling  rcu_init_tasks_generic+0x0/0x100 @ 1
[    0.353788] initcall rcu_init_tasks_generic+0x0/0x100 returned 0 after 0 usecs
[    0.353788] calling  init_jiffies_clocksource+0x0/0x30 @ 1
[    0.353788] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.354850] initcall init_jiffies_clocksource+0x0/0x30 returned 0 after 4000 usecs
[    0.355340] calling  posixtimer_init+0x0/0xd0 @ 1
[    0.355656] posixtimers hash table entries: 2048 (order: 3, 32768 bytes, linear)
[    0.356113] initcall posixtimer_init+0x0/0xd0 returned 0 after 0 usecs
[    0.356520] calling  futex_init+0x0/0xe0 @ 1
[    0.356824] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.357254] initcall futex_init+0x0/0xe0 returned 0 after 0 usecs
[    0.357637] calling  cgroup_wq_init+0x0/0x40 @ 1
[    0.357943] initcall cgroup_wq_init+0x0/0x40 returned 0 after 0 usecs
[    0.358344] calling  cgroup1_wq_init+0x0/0x40 @ 1
[    0.358650] initcall cgroup1_wq_init+0x0/0x40 returned 0 after 0 usecs
[    0.358849] calling  ftrace_mod_cmd_init+0x0/0x20 @ 1
[    0.359177] initcall ftrace_mod_cmd_init+0x0/0x20 returned 0 after 0 usecs
[    0.359602] calling  init_wakeup_tracer+0x0/0x40 @ 1
[    0.359923] initcall init_wakeup_tracer+0x0/0x40 returned 0 after 0 usecs
[    0.360342] calling  init_graph_trace+0x0/0x70 @ 1
[    0.360661] initcall init_graph_trace+0x0/0x70 returned 0 after 0 usecs
[    0.361072] calling  trace_events_eprobe_init_early+0x0/0x40 @ 1
[    0.361450] initcall trace_events_eprobe_init_early+0x0/0x40 returned 0 after 0 usecs
[    0.361932] calling  trace_events_synth_init_early+0x0/0x40 @ 1
[    0.362307] initcall trace_events_synth_init_early+0x0/0x40 returned 0 after 0 usecs
[    0.362775] calling  init_kprobe_trace_early+0x0/0x40 @ 1
[    0.362848] initcall init_kprobe_trace_early+0x0/0x40 returned 0 after 0 usecs
[    0.363239] calling  bpf_offload_init+0x0/0x30 @ 1
[    0.363962] initcall bpf_offload_init+0x0/0x30 returned 0 after 0 usecs
[    0.364382] calling  cgroup_bpf_wq_init+0x0/0x40 @ 1
[    0.364701] initcall cgroup_bpf_wq_init+0x0/0x40 returned 0 after 0 usecs
[    0.365122] calling  init_events_core_sysctls+0x0/0x40 @ 1
[    0.365477] initcall init_events_core_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.365975] calling  init_callchain_sysctls+0x0/0x40 @ 1
[    0.366377] initcall init_callchain_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.366820] calling  memory_failure_init+0x0/0xd0 @ 1
[    0.366852] initcall memory_failure_init+0x0/0xd0 returned 0 after 0 usecs
[    0.367277] calling  cma_init_reserved_areas+0x0/0x280 @ 1
[    0.367625] initcall cma_init_reserved_areas+0x0/0x280 returned 0 after 0 usecs
[    0.368092] calling  fsnotify_init+0x0/0xa0 @ 1
[    0.368412] initcall fsnotify_init+0x0/0xa0 returned 0 after 0 usecs
[    0.368806] calling  filelock_init+0x0/0x160 @ 1
[    0.369123] initcall filelock_init+0x0/0x160 returned 0 after 0 usecs
[    0.369566] calling  init_script_binfmt+0x0/0x30 @ 1
[    0.369896] initcall init_script_binfmt+0x0/0x30 returned 0 after 0 usecs
[    0.370321] calling  init_elf_binfmt+0x0/0x30 @ 1
[    0.370627] initcall init_elf_binfmt+0x0/0x30 returned 0 after 0 usecs
[    0.370848] calling  init_compat_elf_binfmt+0x0/0x30 @ 1
[    0.371191] initcall init_compat_elf_binfmt+0x0/0x30 returned 0 after 0 usecs
[    0.371631] calling  configfs_init+0x0/0x100 @ 1
[    0.371948] initcall configfs_init+0x0/0x100 returned 0 after 0 usecs
[    0.372349] calling  debugfs_init+0x0/0x110 @ 1
[    0.372647] initcall debugfs_init+0x0/0x110 returned 0 after 0 usecs
[    0.373056] calling  tracefs_init+0x0/0xc0 @ 1
[    0.373358] initcall tracefs_init+0x0/0xc0 returned 0 after 0 usecs
[    0.373750] calling  securityfs_init+0x0/0x90 @ 1
[    0.374090] initcall securityfs_init+0x0/0x90 returned 0 after 0 usecs
[    0.374498] calling  pinctrl_init+0x0/0xd0 @ 1
[    0.374803] pinctrl core: initialized pinctrl subsystem
[    0.374860] initcall pinctrl_init+0x0/0xd0 returned 0 after 4000 usecs
[    0.375268] calling  gpiolib_dev_init+0x0/0x170 @ 1
[    0.375610] initcall gpiolib_dev_init+0x0/0x170 returned 0 after 0 usecs
[    0.376027] calling  virtio_init+0x0/0x40 @ 1
[    0.376319] initcall virtio_init+0x0/0x40 returned 0 after 0 usecs
[    0.376713] calling  regulator_init+0x0/0xc0 @ 1
[    0.377063] probe of reg-dummy returned 0 after 0 usecs
[    0.377403] initcall regulator_init+0x0/0xc0 returned 0 after 0 usecs
[    0.377809] calling  iommu_init+0x0/0x40 @ 1
[    0.378096] initcall iommu_init+0x0/0x40 returned 0 after 0 usecs
[    0.378457] calling  component_debug_init+0x0/0x30 @ 1
[    0.378748] initcall component_debug_init+0x0/0x30 returned 0 after 0 usecs
[    0.378848] calling  early_resume_init+0x0/0xe0 @ 1
[    0.379204] PM: RTC time: 01:18:12, date: 2025-07-03
[    0.379527] initcall early_resume_init+0x0/0xe0 returned 0 after 0 usecs
[    0.379940] calling  opp_debug_init+0x0/0x30 @ 1
[    0.380241] initcall opp_debug_init+0x0/0x30 returned 0 after 0 usecs
[    0.380693] calling  cpufreq_core_init+0x0/0x110 @ 1
[    0.381126] initcall cpufreq_core_init+0x0/0x110 returned 0 after 0 usecs
[    0.381563] calling  cpufreq_gov_performance_init+0x0/0x20 @ 1
[    0.381928] initcall cpufreq_gov_performance_init+0x0/0x20 returned 0 after 0 usecs
[    0.382391] calling  cpufreq_gov_powersave_init+0x0/0x20 @ 1
[    0.382749] initcall cpufreq_gov_powersave_init+0x0/0x20 returned 0 after 0 usecs
[    0.382848] calling  cpufreq_gov_userspace_init+0x0/0x20 @ 1
[    0.383206] initcall cpufreq_gov_userspace_init+0x0/0x20 returned 0 after 0 usecs
[    0.383671] calling  CPU_FREQ_GOV_ONDEMAND_init+0x0/0x20 @ 1
[    0.384040] initcall CPU_FREQ_GOV_ONDEMAND_init+0x0/0x20 returned 0 after 0 usecs
[    0.384504] calling  CPU_FREQ_GOV_CONSERVATIVE_init+0x0/0x20 @ 1
[    0.384933] initcall CPU_FREQ_GOV_CONSERVATIVE_init+0x0/0x20 returned 0 after 0 usecs
[    0.385412] calling  cpuidle_init+0x0/0x30 @ 1
[    0.385706] initcall cpuidle_init+0x0/0x30 returned 0 after 0 usecs
[    0.386094] calling  capsule_reboot_register+0x0/0x20 @ 1
[    0.386463] initcall capsule_reboot_register+0x0/0x20 returned 0 after 0 usecs
[    0.386850] calling  unaccepted_memory_init_kdump+0x0/0x30 @ 1
[    0.387217] initcall unaccepted_memory_init_kdump+0x0/0x30 returned 0 after 0 usecs
[    0.387684] calling  sock_init+0x0/0x100 @ 1
[    0.388323] initcall sock_init+0x0/0x100 returned 0 after 0 usecs
[    0.388715] calling  net_inuse_init+0x0/0x40 @ 1
[    0.389038] initcall net_inuse_init+0x0/0x40 returned 0 after 0 usecs
[    0.389442] calling  sock_struct_check+0x0/0x20 @ 1
[    0.389759] initcall sock_struct_check+0x0/0x20 returned 0 after 0 usecs
[    0.390180] calling  init_default_flow_dissectors+0x0/0x60 @ 1
[    0.390549] initcall init_default_flow_dissectors+0x0/0x60 returned 0 after 0 usecs
[    0.390850] calling  netlink_proto_init+0x0/0x170 @ 1
[    0.391184] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.391568] initcall netlink_proto_init+0x0/0x170 returned 0 after 0 usecs
[    0.392296] calling  genl_init+0x0/0x50 @ 1
[    0.392578] initcall genl_init+0x0/0x50 returned 0 after 0 usecs
[    0.392953] calling  bsp_pm_check_init+0x0/0x30 @ 1
[    0.393267] initcall bsp_pm_check_init+0x0/0x30 returned 0 after 0 usecs
[    0.393685] calling  __gnttab_init+0x0/0x50 @ 1
[    0.393983] initcall __gnttab_init+0x0/0x50 returned -19 after 0 usecs
[    0.394437] calling  irq_sysfs_init+0x0/0xc0 @ 1
[    0.394793] initcall irq_sysfs_init+0x0/0xc0 returned 0 after 0 usecs
[    0.394850] calling  dma_atomic_pool_init+0x0/0x170 @ 1
[    0.395186] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[    0.395623] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.396096] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.396586] initcall dma_atomic_pool_init+0x0/0x170 returned 0 after 0 usecs
[    0.397020] calling  audit_init+0x0/0x1d0 @ 1
[    0.397305] initcall audit_init+0x0/0x1d0 returned 0 after 0 usecs
[    0.397692] calling  bdi_class_init+0x0/0x50 @ 1
[    0.397997] initcall bdi_class_init+0x0/0x50 returned 0 after 0 usecs
[    0.398402] calling  mm_sysfs_init+0x0/0x40 @ 1
[    0.398696] initcall mm_sysfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.398847] calling  init_per_zone_wmark_min+0x0/0x40 @ 1
[    0.399198] initcall init_per_zone_wmark_min+0x0/0x40 returned 0 after 0 usecs
[    0.399667] calling  gpiolib_sysfs_init+0x0/0x40 @ 1
[    0.400000] initcall gpiolib_sysfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.400444] calling  acpi_gpio_setup_params+0x0/0xe0 @ 1
[    0.400801] initcall acpi_gpio_setup_params+0x0/0xe0 returned 0 after 0 usecs
[    0.401307] calling  pcibus_class_init+0x0/0x20 @ 1
[    0.401636] initcall pcibus_class_init+0x0/0x20 returned 0 after 0 usecs
[    0.402068] calling  pci_driver_init+0x0/0x40 @ 1
[    0.402383] initcall pci_driver_init+0x0/0x40 returned 0 after 0 usecs
[    0.402789] calling  rio_bus_init+0x0/0x50 @ 1
[    0.402854] initcall rio_bus_init+0x0/0x50 returned 0 after 0 usecs
[    0.403246] calling  backlight_class_init+0x0/0x80 @ 1
[    0.403581] initcall backlight_class_init+0x0/0x80 returned 0 after 0 usecs
[    0.404033] calling  xenbus_init+0x0/0x680 @ 1
[    0.404325] initcall xenbus_init+0x0/0x680 returned -19 after 0 usecs
[    0.404733] calling  tty_class_init+0x0/0x20 @ 1
[    0.405035] initcall tty_class_init+0x0/0x20 returned 0 after 0 usecs
[    0.405438] calling  vtconsole_class_init+0x0/0xc0 @ 1
[    0.405790] initcall vtconsole_class_init+0x0/0xc0 returned 0 after 0 usecs
[    0.406219] calling  serdev_init+0x0/0x30 @ 1
[    0.406509] initcall serdev_init+0x0/0x30 returned 0 after 0 usecs
[    0.406848] calling  iommu_dev_init+0x0/0x20 @ 1
[    0.407148] initcall iommu_dev_init+0x0/0x20 returned 0 after 0 usecs
[    0.407546] calling  mipi_dsi_bus_init+0x0/0x20 @ 1
[    0.407861] initcall mipi_dsi_bus_init+0x0/0x20 returned 0 after 0 usecs
[    0.408272] calling  devlink_class_init+0x0/0x50 @ 1
[    0.408592] initcall devlink_class_init+0x0/0x50 returned 0 after 0 usecs
[    0.409008] calling  software_node_init+0x0/0x40 @ 1
[    0.409330] initcall software_node_init+0x0/0x40 returned 0 after 0 usecs
[    0.409736] calling  wakeup_sources_debugfs_init+0x0/0x40 @ 1
[    0.410105] initcall wakeup_sources_debugfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.410575] calling  wakeup_sources_sysfs_init+0x0/0x40 @ 1
[    0.410849] initcall wakeup_sources_sysfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.411292] calling  isa_bus_init+0x0/0x50 @ 1
[    0.411556] initcall isa_bus_init+0x0/0x50 returned 0 after 0 usecs
[    0.411971] calling  regmap_initcall+0x0/0x20 @ 1
[    0.412277] initcall regmap_initcall+0x0/0x20 returned 0 after 0 usecs
[    0.412689] calling  sram_init+0x0/0x30 @ 1
[    0.412972] initcall sram_init+0x0/0x30 returned 0 after 0 usecs
[    0.413415] calling  spi_init+0x0/0xd0 @ 1
[    0.413775] initcall spi_init+0x0/0xd0 returned 0 after 0 usecs
[    0.414150] calling  i2c_init+0x0/0xc0 @ 1
[    0.414435] initcall i2c_init+0x0/0xc0 returned 0 after 0 usecs
[    0.414809] calling  thermal_init+0x0/0x180 @ 1
[    0.414865] thermal_sys: Registered thermal governor 'fair_share'
[    0.414866] thermal_sys: Registered thermal governor 'bang_bang'
[    0.415249] thermal_sys: Registered thermal governor 'step_wise'
[    0.415654] thermal_sys: Registered thermal governor 'user_space'
[    0.416030] initcall thermal_init+0x0/0x180 returned 0 after 0 usecs
[    0.416836] calling  init_ladder+0x0/0x40 @ 1
[    0.417144] cpuidle: using governor ladder
[    0.417434] initcall init_ladder+0x0/0x40 returned 0 after 0 usecs
[    0.417834] calling  init_menu+0x0/0x20 @ 1
[    0.418119] cpuidle: using governor menu
[    0.418385] initcall init_menu+0x0/0x20 returned 0 after 0 usecs
[    0.418770] calling  teo_governor_init+0x0/0x20 @ 1
[    0.418848] initcall teo_governor_init+0x0/0x20 returned 0 after 0 usecs
[    0.419281] calling  init_haltpoll+0x0/0x40 @ 1
[    0.419578] initcall init_haltpoll+0x0/0x40 returned 0 after 0 usecs
[    0.419973] calling  pcc_init+0x0/0xb0 @ 1
[    0.420573] initcall pcc_init+0x0/0xb0 returned -19 after 0 usecs
[    0.420966] calling  amd_postcore_init+0x0/0x130 @ 1
[    0.421292] initcall amd_postcore_init+0x0/0x130 returned 0 after 0 usecs
[    0.421708] calling  kobject_uevent_init+0x0/0x20 @ 1
[    0.422038] initcall kobject_uevent_init+0x0/0x20 returned 0 after 0 usecs
[    0.422508] calling  report_snp_info+0x0/0xe0 @ 1
[    0.422815] initcall report_snp_info+0x0/0xe0 returned 0 after 0 usecs
[    0.422848] calling  sev_sysfs_init+0x0/0xa0 @ 1
[    0.423150] initcall sev_sysfs_init+0x0/0xa0 returned -19 after 0 usecs
[    0.423561] calling  bts_init+0x0/0x100 @ 1
[    0.423840] initcall bts_init+0x0/0x100 returned -19 after 0 usecs
[    0.424227] calling  pt_init+0x0/0x3b0 @ 1
[    0.424499] initcall pt_init+0x0/0x3b0 returned -19 after 0 usecs
[    0.424886] calling  init_x86_sysctl+0x0/0x40 @ 1
[    0.425195] initcall init_x86_sysctl+0x0/0x40 returned 0 after 0 usecs
[    0.425601] calling  boot_params_ksysfs_init+0x0/0x320 @ 1
[    0.425953] initcall boot_params_ksysfs_init+0x0/0x320 returned 0 after 0 usecs
[    0.426398] calling  sbf_init+0x0/0xf0 @ 1
[    0.426662] initcall sbf_init+0x0/0xf0 returned 0 after 0 usecs
[    0.426847] calling  arch_kdebugfs_init+0x0/0x30 @ 1
[    0.427175] initcall arch_kdebugfs_init+0x0/0x30 returned 0 after 0 usecs
[    0.427601] calling  xfd_update_static_branch+0x0/0x40 @ 1
[    0.427956] initcall xfd_update_static_branch+0x0/0x40 returned 0 after 0 usecs
[    0.428412] calling  mtrr_if_init+0x0/0x70 @ 1
[    0.428718] initcall mtrr_if_init+0x0/0x70 returned 0 after 0 usecs
[    0.429159] calling  activate_jump_labels+0x0/0x50 @ 1
[    0.429586] initcall activate_jump_labels+0x0/0x50 returned 0 after 0 usecs
[    0.430022] calling  init_s4_sigcheck+0x0/0x40 @ 1
[    0.430319] initcall init_s4_sigcheck+0x0/0x40 returned 0 after 0 usecs
[    0.430692] calling  ffh_cstate_init+0x0/0x50 @ 1
[    0.430852] initcall ffh_cstate_init+0x0/0x50 returned 0 after 0 usecs
[    0.431254] calling  kvm_alloc_cpumask+0x0/0xd0 @ 1
[    0.431584] initcall kvm_alloc_cpumask+0x0/0xd0 returned 0 after 0 usecs
[    0.432004] calling  activate_jump_labels+0x0/0x50 @ 1
[    0.432407] initcall activate_jump_labels+0x0/0x50 returned 0 after 0 usecs
[    0.432873] calling  gigantic_pages_init+0x0/0x40 @ 1
[    0.433226] initcall gigantic_pages_init+0x0/0x40 returned 0 after 0 usecs
[    0.433649] calling  uv_rtc_setup_clock+0x0/0x330 @ 1
[    0.433973] initcall uv_rtc_setup_clock+0x0/0x330 returned -19 after 0 usecs
[    0.434407] calling  kcmp_cookies_init+0x0/0x50 @ 1
[    0.434741] initcall kcmp_cookies_init+0x0/0x50 returned 0 after 0 usecs
[    0.434848] calling  cryptomgr_init+0x0/0x20 @ 1
[    0.435157] initcall cryptomgr_init+0x0/0x20 returned 0 after 0 usecs
[    0.435558] calling  crc32_x86_init+0x0/0x100 @ 1
[    0.435952] initcall crc32_x86_init+0x0/0x100 returned 0 after 0 usecs
[    0.436366] calling  crc64_x86_init+0x0/0x170 @ 1
[    0.436754] initcall crc64_x86_init+0x0/0x170 returned 0 after 0 usecs
[    0.437158] calling  crc_t10dif_x86_init+0x0/0xd0 @ 1
[    0.437539] initcall crc_t10dif_x86_init+0x0/0xd0 returned 0 after 0 usecs
[    0.437964] calling  acpi_pci_init+0x0/0x70 @ 1
[    0.438262] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.438656] initcall acpi_pci_init+0x0/0x70 returned 0 after 0 usecs
[    0.438848] calling  dma_channel_table_init+0x0/0x110 @ 1
[    0.439194] initcall dma_channel_table_init+0x0/0x110 returned 0 after 0 usecs
[    0.439633] calling  dma_bus_init+0x0/0x160 @ 1
[    0.439972] initcall dma_bus_init+0x0/0x160 returned 0 after 0 usecs
[    0.440370] calling  register_xen_pci_notifier+0x0/0x40 @ 1
[    0.440727] initcall register_xen_pci_notifier+0x0/0x40 returned 0 after 0 usecs
[    0.441184] calling  xen_pcpu_init+0x0/0xf0 @ 1
[    0.441482] initcall xen_pcpu_init+0x0/0xf0 returned -19 after 0 usecs
[    0.441849] calling  serial_base_init+0x0/0x70 @ 1
[    0.442210] initcall serial_base_init+0x0/0x70 returned 0 after 0 usecs
[    0.442617] calling  iommu_dma_init+0x0/0x30 @ 1
[    0.442854] initcall iommu_dma_init+0x0/0x30 returned 0 after 0 usecs
[    0.443259] calling  dmi_id_init+0x0/0x400 @ 1
[    0.443581] initcall dmi_id_init+0x0/0x400 returned 0 after 0 usecs
[    0.443978] calling  numachip_timer_init+0x0/0x70 @ 1
[    0.444304] initcall numachip_timer_init+0x0/0x70 returned -19 after 0 usecs
[    0.444740] calling  ts_dmi_init+0x0/0xf0 @ 1
[    0.445032] initcall ts_dmi_init+0x0/0xf0 returned 0 after 0 usecs
[    0.445423] calling  pci_arch_init+0x0/0xa0 @ 1
[    0.445779] PCI: Using configuration type 1 for base access
[    0.446130] initcall pci_arch_init+0x0/0xa0 returned 0 after 0 usecs
[    0.446567] calling  init_vdso_image_64+0x0/0x20 @ 1
[    0.446856] initcall init_vdso_image_64+0x0/0x20 returned 0 after 0 usecs
[    0.447336] calling  init_vdso_image_32+0x0/0x20 @ 1
[    0.447664] initcall init_vdso_image_32+0x0/0x20 returned 0 after 0 usecs
[    0.448091] calling  fixup_ht_bug+0x0/0xe0 @ 1
[    0.448382] initcall fixup_ht_bug+0x0/0xe0 returned 0 after 0 usecs
[    0.449192] calling  mtrr_init_finalize+0x0/0x40 @ 1
[    0.449514] initcall mtrr_init_finalize+0x0/0x40 returned 0 after 0 usecs
[    0.449967] calling  blake2s_mod_init+0x0/0x90 @ 1
[    0.450341] initcall blake2s_mod_init+0x0/0x90 returned 0 after 0 usecs
[    0.450779] calling  uid_cache_init+0x0/0x110 @ 1
[    0.450863] initcall uid_cache_init+0x0/0x110 returned 0 after 0 usecs
[    0.451267] calling  pid_namespace_sysctl_init+0x0/0x30 @ 1
[    0.451628] initcall pid_namespace_sysctl_init+0x0/0x30 returned 0 after 0 usecs
[    0.452023] calling  param_sysfs_init+0x0/0x60 @ 1
[    0.452303] initcall param_sysfs_init+0x0/0x60 returned 0 after 0 usecs
[    0.452691] calling  user_namespace_sysctl_init+0x0/0xf0 @ 1
[    0.453055] initcall user_namespace_sysctl_init+0x0/0xf0 returned 0 after 0 usecs
[    0.453513] calling  proc_schedstat_init+0x0/0x40 @ 1
[    0.453839] initcall proc_schedstat_init+0x0/0x40 returned 0 after 0 usecs
[    0.454263] calling  pm_sysrq_init+0x0/0x30 @ 1
[    0.454570] initcall pm_sysrq_init+0x0/0x30 returned 0 after 0 usecs
[    0.454847] calling  create_proc_profile+0x0/0x60 @ 1
[    0.455170] initcall create_proc_profile+0x0/0x60 returned 0 after 0 usecs
[    0.455599] calling  crash_save_vmcoreinfo_init+0x0/0x6b0 @ 1
[    0.455984] initcall crash_save_vmcoreinfo_init+0x0/0x6b0 returned 0 after 0 usecs
[    0.456442] calling  crash_notes_memory_init+0x0/0x50 @ 1
[    0.456787] initcall crash_notes_memory_init+0x0/0x50 returned 0 after 0 usecs
[    0.457233] calling  crash_hotplug_init+0x0/0x50 @ 1
[    0.457578] initcall crash_hotplug_init+0x0/0x50 returned 66 after 0 usecs
[    0.458010] calling  cgroup_sysfs_init+0x0/0x30 @ 1
[    0.458324] initcall cgroup_sysfs_init+0x0/0x30 returned 0 after 0 usecs
[    0.458736] calling  user_namespaces_init+0x0/0x90 @ 1
[    0.458852] initcall user_namespaces_init+0x0/0x90 returned 0 after 0 usecs
[    0.459286] calling  init_optprobes+0x0/0x50 @ 1
[    0.459584] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.460113] initcall init_optprobes+0x0/0x50 returned 0 after 0 usecs
[    0.460508] calling  hung_task_init+0x0/0x90 @ 1
[    0.460804] initcall hung_task_init+0x0/0x90 returned 0 after 0 usecs
[    0.460804] calling  ftrace_check_for_weak_functions+0x0/0x70 @ 1
[    0.460804] initcall ftrace_check_for_weak_functions+0x0/0x70 returned 0 after 0 usecs
[    0.460804] calling  trace_eval_init+0x0/0xc0 @ 1
[    0.460804] initcall trace_eval_init+0x0/0xc0 returned 0 after 0 usecs
[    0.460864] calling  send_signal_irq_work_init+0x0/0x70 @ 1
[    0.462850] initcall send_signal_irq_work_init+0x0/0x70 returned 0 after 0 usecs
[    0.463369] calling  dev_map_init+0x0/0x30 @ 1
[    0.466855] initcall dev_map_init+0x0/0x30 returned 0 after 4000 usecs
[    0.467412] calling  netns_bpf_init+0x0/0x20 @ 1
[    0.467816] initcall netns_bpf_init+0x0/0x20 returned 0 after 0 usecs
[    0.468367] calling  oom_init+0x0/0x60 @ 1
[    0.468743] initcall oom_init+0x0/0x60 returned 0 after 0 usecs
[    0.468743] calling  init_user_buckets+0x0/0x40 @ 1
[    0.468743] initcall init_user_buckets+0x0/0x40 returned 0 after 0 usecs
[    0.468743] calling  init_vm_util_sysctls+0x0/0x40 @ 1
[    0.468844] initcall init_vm_util_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.470848] calling  default_bdi_init+0x0/0x40 @ 1
[    0.471286] initcall default_bdi_init+0x0/0x40 returned 0 after 0 usecs
[    0.471434] calling  cgwb_init+0x0/0x40 @ 1
[    0.471806] initcall cgwb_init+0x0/0x40 returned 0 after 0 usecs
[    0.472313] calling  percpu_enable_async+0x0/0x20 @ 1
[    0.472746] initcall percpu_enable_async+0x0/0x20 returned 0 after 0 usecs
[    0.473314] calling  kcompactd_init+0x0/0xa0 @ 1
[    0.473724] initcall kcompactd_init+0x0/0xa0 returned 0 after 0 usecs
[    0.473724] calling  init_user_reserve+0x0/0x50 @ 1
[    0.474848] initcall init_user_reserve+0x0/0x50 returned 0 after 0 usecs
[    0.475404] calling  init_admin_reserve+0x0/0x50 @ 1
[    0.475831] initcall init_admin_reserve+0x0/0x50 returned 0 after 0 usecs
[    0.476395] calling  init_reserve_notifier+0x0/0x40 @ 1
[    0.476846] initcall init_reserve_notifier+0x0/0x40 returned 0 after 0 usecs
[    0.477859] calling  swap_init_sysfs+0x0/0x90 @ 1
[    0.478292] initcall swap_init_sysfs+0x0/0x90 returned 0 after 0 usecs
[    0.478838] calling  swapfile_init+0x0/0xe0 @ 1
[    0.478849] initcall swapfile_init+0x0/0xe0 returned 0 after 0 usecs
[    0.479411] calling  hugetlb_init+0x0/0x610 @ 1
[    0.479817] HugeTLB: allocation took 0ms with hugepage_allocation_threads=1
[    0.480425] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.480991] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.481547] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.482111] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.482683] initcall hugetlb_init+0x0/0x610 returned 0 after 0 usecs
[    0.482848] calling  ksm_init+0x0/0x260 @ 1
[    0.483243] initcall ksm_init+0x0/0x260 returned 0 after 0 usecs
[    0.483370] calling  memory_tier_init+0x0/0xe0 @ 1
[    0.483823] initcall memory_tier_init+0x0/0xe0 returned 0 after 0 usecs
[    0.484372] calling  numa_init_sysfs+0x0/0x90 @ 1
[    0.484694] initcall numa_init_sysfs+0x0/0x90 returned 0 after 0 usecs
[    0.485101] calling  hugepage_init+0x0/0x400 @ 1
[    0.485471] initcall hugepage_init+0x0/0x400 returned 0 after 0 usecs
[    0.485471] calling  mem_cgroup_init+0x0/0xb0 @ 1
[    0.485471] initcall mem_cgroup_init+0x0/0xb0 returned 0 after 0 usecs
[    0.486848] calling  mem_cgroup_swap_init+0x0/0x60 @ 1
[    0.487181] initcall mem_cgroup_swap_init+0x0/0x60 returned 0 after 0 usecs
[    0.487611] calling  page_idle_init+0x0/0x50 @ 1
[    0.487914] initcall page_idle_init+0x0/0x50 returned 0 after 0 usecs
[    0.488312] calling  init_msg_buckets+0x0/0x40 @ 1
[    0.488658] initcall init_msg_buckets+0x0/0x40 returned 0 after 0 usecs
[    0.489074] calling  seqiv_module_init+0x0/0x20 @ 1
[    0.489386] initcall seqiv_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.489807] calling  dh_init+0x0/0x60 @ 1
[    0.490080] initcall dh_init+0x0/0x60 returned 0 after 0 usecs
[    0.490428] calling  rsa_init+0x0/0x80 @ 1
[    0.490668] initcall rsa_init+0x0/0x80 returned 0 after 0 usecs
[    0.490847] calling  hmac_module_init+0x0/0x20 @ 1
[    0.491122] initcall hmac_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.491484] calling  crypto_null_mod_init+0x0/0x80 @ 1
[    0.491776] initcall crypto_null_mod_init+0x0/0x80 returned 0 after 0 usecs
[    0.492155] calling  md5_mod_init+0x0/0x20 @ 1
[    0.492411] initcall md5_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.492770] calling  sha1_generic_mod_init+0x0/0x20 @ 1
[    0.493105] initcall sha1_generic_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.493561] calling  sha256_generic_mod_init+0x0/0x30 @ 1
[    0.493893] initcall sha256_generic_mod_init+0x0/0x30 returned 0 after 0 usecs
[    0.494350] calling  sha512_generic_mod_init+0x0/0x30 @ 1
[    0.494694] initcall sha512_generic_mod_init+0x0/0x30 returned 0 after 0 usecs
[    0.494848] calling  sha3_generic_mod_init+0x0/0x30 @ 1
[    0.495191] initcall sha3_generic_mod_init+0x0/0x30 returned 0 after 0 usecs
[    0.495630] calling  crypto_ecb_module_init+0x0/0x20 @ 1
[    0.495975] initcall crypto_ecb_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.496423] calling  crypto_cbc_module_init+0x0/0x20 @ 1
[    0.496771] initcall crypto_cbc_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.497217] calling  crypto_cts_module_init+0x0/0x20 @ 1
[    0.497557] initcall crypto_cts_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.497993] calling  xts_module_init+0x0/0x20 @ 1
[    0.498296] initcall xts_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.498712] calling  crypto_ctr_module_init+0x0/0x30 @ 1
[    0.498848] initcall crypto_ctr_module_init+0x0/0x30 returned 0 after 0 usecs
[    0.499288] calling  crypto_gcm_module_init+0x0/0x90 @ 1
[    0.499633] initcall crypto_gcm_module_init+0x0/0x90 returned 0 after 0 usecs
[    0.500068] calling  aes_init+0x0/0x20 @ 1
[    0.500358] initcall aes_init+0x0/0x20 returned 0 after 0 usecs
[    0.500730] calling  crc32c_mod_init+0x0/0x40 @ 1
[    0.501041] initcall crc32c_mod_init+0x0/0x40 returned 0 after 0 usecs
[    0.501444] calling  lzo_mod_init+0x0/0x20 @ 1
[    0.501732] initcall lzo_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.502119] calling  lzorle_mod_init+0x0/0x20 @ 1
[    0.502425] initcall lzorle_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.502838] calling  drbg_init+0x0/0x220 @ 1
[    0.502857] initcall drbg_init+0x0/0x220 returned 0 after 0 usecs
[    0.503238] calling  ghash_mod_init+0x0/0x20 @ 1
[    0.503536] initcall ghash_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.503933] calling  ecdh_init+0x0/0x90 @ 1
[    0.504213] initcall ecdh_init+0x0/0x90 returned 0 after 0 usecs
[    0.504591] calling  init_bio+0x0/0xe0 @ 1
[    0.504892] initcall init_bio+0x0/0xe0 returned 0 after 0 usecs
[    0.505664] calling  blk_ioc_init+0x0/0x80 @ 1
[    0.505920] initcall blk_ioc_init+0x0/0x80 returned 0 after 0 usecs
[    0.506266] calling  blk_mq_init+0x0/0x130 @ 1
[    0.506522] initcall blk_mq_init+0x0/0x130 returned 0 after 0 usecs
[    0.506848] calling  genhd_device_init+0x0/0x60 @ 1
[    0.507186] initcall genhd_device_init+0x0/0x60 returned 0 after 0 usecs
[    0.507282] calling  blkcg_punt_bio_init+0x0/0x40 @ 1
[    0.507631] initcall blkcg_punt_bio_init+0x0/0x40 returned 0 after 0 usecs
[    0.507631] calling  blk_integrity_auto_init+0x0/0xe0 @ 1
[    0.507649] initcall blk_integrity_auto_init+0x0/0xe0 returned 0 after 0 usecs
[    0.507649] calling  io_wq_init+0x0/0x50 @ 1
[    0.507649] initcall io_wq_init+0x0/0x50 returned 0 after 0 usecs
[    0.507991] calling  sg_pool_init+0x0/0x110 @ 1
[    0.508294] initcall sg_pool_init+0x0/0x110 returned 0 after 0 usecs
[    0.510848] calling  irq_poll_setup+0x0/0x90 @ 1
[    0.511146] initcall irq_poll_setup+0x0/0x90 returned 0 after 0 usecs
[    0.511550] calling  sx150x_init+0x0/0x30 @ 1
[    0.511846] initcall sx150x_init+0x0/0x30 returned 0 after 0 usecs
[    0.512242] calling  byt_gpio_init+0x0/0x30 @ 1
[    0.512544] initcall byt_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.512944] calling  chv_pinctrl_init+0x0/0x30 @ 1
[    0.513262] initcall chv_pinctrl_init+0x0/0x30 returned 0 after 0 usecs
[    0.513669] calling  gpiolib_debugfs_init+0x0/0x40 @ 1
[    0.514010] initcall gpiolib_debugfs_init+0x0/0x40 returned 0 after 0 usecs
[    0.514437] calling  palmas_gpio_init+0x0/0x30 @ 1
[    0.514752] initcall palmas_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.514848] calling  rc5t583_gpio_init+0x0/0x30 @ 1
[    0.515164] initcall rc5t583_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.515591] calling  tps6586x_gpio_init+0x0/0x30 @ 1
[    0.515913] initcall tps6586x_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.516334] calling  tps65910_gpio_init+0x0/0x30 @ 1
[    0.516656] initcall tps65910_gpio_init+0x0/0x30 returned 0 after 0 usecs
[    0.517073] calling  pwm_init+0x0/0x70 @ 1
[    0.517344] initcall pwm_init+0x0/0x70 returned 0 after 0 usecs
[    0.517720] calling  leds_init+0x0/0x60 @ 1
[    0.518007] initcall leds_init+0x0/0x60 returned 0 after 0 usecs
[    0.518385] calling  pci_slot_init+0x0/0x60 @ 1
[    0.518681] initcall pci_slot_init+0x0/0x60 returned 0 after 0 usecs
[    0.518849] calling  fbmem_init+0x0/0x90 @ 1
[    0.519150] initcall fbmem_init+0x0/0x90 returned 0 after 0 usecs
[    0.519544] calling  scan_for_dmi_ipmi+0x0/0x300 @ 1
[    0.519861] initcall scan_for_dmi_ipmi+0x0/0x300 returned 0 after 0 usecs
[    0.520282] calling  acpi_init+0x0/0x540 @ 1
[    0.520580] ACPI: Added _OSI(Module Device)
[    0.520853] ACPI: Added _OSI(Processor Device)
[    0.521140] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.521444] ACPI: Added _OSI(Processor Aggregator Device)
[    0.522212] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    0.523054] ACPI: Interpreter enabled
[    0.523215] ACPI: PM: (supports S0 S5)
[    0.523472] ACPI: Using IOAPIC for interrupt routing
[    0.523816] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.524366] PCI: Using E820 reservations for host bridge windows
[    0.524760] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.526452] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.527316] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI HPX-Type3]
[    0.527861] acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    0.528478] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended configuration space under this bridge
[    0.529354] acpiphp: Slot [3] registered
[    0.529626] acpiphp: Slot [4] registered
[    0.529896] acpiphp: Slot [5] registered
[    0.530166] acpiphp: Slot [6] registered
[    0.530436] acpiphp: Slot [7] registered
[    0.530707] acpiphp: Slot [8] registered
[    0.530857] acpiphp: Slot [9] registered
[    0.531129] acpiphp: Slot [10] registered
[    0.531409] acpiphp: Slot [11] registered
[    0.531681] acpiphp: Slot [12] registered
[    0.531965] acpiphp: Slot [13] registered
[    0.532240] acpiphp: Slot [14] registered
[    0.532513] acpiphp: Slot [15] registered
[    0.532787] acpiphp: Slot [16] registered
[    0.533061] acpiphp: Slot [17] registered
[    0.533346] acpiphp: Slot [18] registered
[    0.533632] acpiphp: Slot [19] registered
[    0.533904] acpiphp: Slot [20] registered
[    0.534179] acpiphp: Slot [21] registered
[    0.534799] acpiphp: Slot [22] registered
[    0.534856] acpiphp: Slot [23] registered
[    0.535145] acpiphp: Slot [24] registered
[    0.535422] acpiphp: Slot [25] registered
[    0.535700] acpiphp: Slot [26] registered
[    0.535979] acpiphp: Slot [27] registered
[    0.536251] acpiphp: Slot [28] registered
[    0.536523] acpiphp: Slot [29] registered
[    0.536798] acpiphp: Slot [30] registered
[    0.537073] acpiphp: Slot [31] registered
[    0.537348] PCI host bridge to bus 0000:00
[    0.537589] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.537960] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.538330] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.538734] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]
[    0.538848] pci_bus 0000:00: root bus resource [mem 0x240000000-0x2bfffffff window]
[    0.539310] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.539688] pci 0000:00:00.0: calling  quirk_mmio_always_on+0x0/0x20 @ 1
[    0.540106] pci 0000:00:00.0: quirk_mmio_always_on+0x0/0x20 took 0 usecs
[    0.540485] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 conventional PCI endpoint
[    0.541124] pci 0000:00:00.0: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.541576] pci 0000:00:00.0: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.542479] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 conventional PCI endpoint
[    0.543081] pci 0000:00:01.0: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.543581] pci 0000:00:01.0: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.544276] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180 conventional PCI endpoint
[    0.545325] pci 0000:00:01.1: BAR 4 [io  0xc5a0-0xc5af]
[    0.545677] pci 0000:00:01.1: BAR 0 [io  0x01f0-0x01f7]: legacy IDE quirk
[    0.546094] pci 0000:00:01.1: BAR 1 [io  0x03f6]: legacy IDE quirk
[    0.546495] pci 0000:00:01.1: BAR 2 [io  0x0170-0x0177]: legacy IDE quirk
[    0.546850] pci 0000:00:01.1: BAR 3 [io  0x0376]: legacy IDE quirk
[    0.547245] pci 0000:00:01.1: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.547702] pci 0000:00:01.1: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.548219] pci 0000:00:01.3: calling  acpi_pm_check_blacklist+0x0/0x50 @ 1
[    0.548661] pci 0000:00:01.3: acpi_pm_check_blacklist+0x0/0x50 took 0 usecs
[    0.549088] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000 conventional PCI endpoint
[    0.549768] pci 0000:00:01.3: calling  quirk_piix4_acpi+0x0/0x180 @ 1
[    0.550175] pci 0000:00:01.3: quirk: [io  0x0600-0x063f] claimed by PIIX4 ACPI
[    0.550633] pci 0000:00:01.3: quirk: [io  0x0700-0x070f] claimed by PIIX4 SMB
[    0.550866] pci 0000:00:01.3: quirk_piix4_acpi+0x0/0x180 took 3906 usecs
[    0.551287] pci 0000:00:01.3: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.551725] pci 0000:00:01.3: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.552166] pci 0000:00:01.3: calling  pci_fixup_piix4_acpi+0x0/0x20 @ 1
[    0.552582] pci 0000:00:01.3: pci_fixup_piix4_acpi+0x0/0x20 took 0 usecs
[    0.553080] pci 0000:00:02.0: [1b36:0100] type 00 class 0x030000 conventional PCI endpoint
[    0.555790] pci 0000:00:02.0: BAR 0 [mem 0xf4000000-0xf7ffffff]
[    0.556253] pci 0000:00:02.0: BAR 1 [mem 0xf8000000-0xfbffffff]
[    0.556656] pci 0000:00:02.0: BAR 2 [mem 0xfc054000-0xfc055fff]
[    0.557032] pci 0000:00:02.0: BAR 3 [io  0xc540-0xc55f]
[    0.557377] pci 0000:00:02.0: ROM [mem 0xfc040000-0xfc04ffff pref]
[    0.557847] pci 0000:00:02.0: calling  screen_info_fixup_lfb+0x0/0x170 @ 1
[    0.558299] pci 0000:00:02.0: screen_info_fixup_lfb+0x0/0x170 took 0 usecs
[    0.558754] pci 0000:00:02.0: calling  pci_fixup_video+0x0/0x120 @ 1
[    0.558871] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.559386] pci 0000:00:02.0: pci_fixup_video+0x0/0x120 took 0 usecs
[    0.560905] pci 0000:00:03.0: [1af4:1000] type 00 class 0x020000 conventional PCI endpoint
[    0.562636] pci 0000:00:03.0: BAR 0 [io  0xc560-0xc57f]
[    0.562853] pci 0000:00:03.0: BAR 1 [mem 0xfc056000-0xfc056fff]
[    0.563243] pci 0000:00:03.0: BAR 4 [mem 0xfebf0000-0xfebf3fff 64bit pref]
[    0.563680] pci 0000:00:03.0: ROM [mem 0xfc000000-0xfc03ffff pref]
[    0.564587] pci 0000:00:04.0: [1b36:000d] type 00 class 0x0c0330 conventional PCI endpoint
[    0.565479] pci 0000:00:04.0: BAR 0 [mem 0xfc050000-0xfc053fff 64bit]
[    0.566241] pci 0000:00:05.0: [8086:2415] type 00 class 0x040100 conventional PCI endpoint
[    0.567175] pci 0000:00:05.0: BAR 0 [io  0xc000-0xc3ff]
[    0.567518] pci 0000:00:05.0: BAR 1 [io  0xc400-0xc4ff]
[    0.567872] pci 0000:00:05.0: calling  quirk_igfx_skip_te_disable+0x0/0xb0 @ 1
[    0.568278] pci 0000:00:05.0: quirk_igfx_skip_te_disable+0x0/0xb0 took 0 usecs
[    0.568963] pci 0000:00:06.0: [1af4:1052] type 00 class 0x098000 conventional PCI endpoint
[    0.570133] pci 0000:00:06.0: BAR 1 [mem 0xfc057000-0xfc057fff]
[    0.570517] pci 0000:00:06.0: BAR 4 [mem 0xfebf4000-0xfebf7fff 64bit pref]
[    0.571450] pci 0000:00:07.0: [1af4:1003] type 00 class 0x078000 conventional PCI endpoint
[    0.573279] pci 0000:00:07.0: BAR 0 [io  0xc500-0xc53f]
[    0.573638] pci 0000:00:07.0: BAR 1 [mem 0xfc058000-0xfc058fff]
[    0.574023] pci 0000:00:07.0: BAR 4 [mem 0xfebf8000-0xfebfbfff 64bit pref]
[    0.575019] pci 0000:00:08.0: [1af4:1002] type 00 class 0x00ff00 conventional PCI endpoint
[    0.576050] pci 0000:00:08.0: BAR 0 [io  0xc580-0xc59f]
[    0.576405] pci 0000:00:08.0: BAR 4 [mem 0xfebfc000-0xfebfffff 64bit pref]
[    0.582628] ACPI: PCI: Interrupt link LNKA configured for IRQ 10
[    0.582900] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[    0.583281] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[    0.583661] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[    0.584021] ACPI: PCI: Interrupt link LNKS configured for IRQ 9
[    0.584635] initcall acpi_init+0x0/0x540 returned 0 after 64000 usecs
[    0.585020] calling  adxl_init+0x0/0x1b0 @ 1
[    0.585277] initcall adxl_init+0x0/0x1b0 returned -19 after 0 usecs
[    0.585647] calling  hmat_init+0x0/0x3d0 @ 1
[    0.585923] initcall hmat_init+0x0/0x3d0 returned 0 after 0 usecs
[    0.586309] calling  acpi_hed_driver_init+0x0/0x30 @ 1
[    0.586681] initcall acpi_hed_driver_init+0x0/0x30 returned 0 after 0 usecs
[    0.586852] calling  pnp_init+0x0/0x20 @ 1
[    0.587133] initcall pnp_init+0x0/0x20 returned 0 after 0 usecs
[    0.587515] calling  balloon_init+0x0/0x2d0 @ 1
[    0.587817] initcall balloon_init+0x0/0x2d0 returned -19 after 0 usecs
[    0.588228] calling  xen_setup_shutdown_event+0x0/0x50 @ 1
[    0.588627] initcall xen_setup_shutdown_event+0x0/0x50 returned -19 after 0 usecs
[    0.589097] calling  xenbus_probe_backend_init+0x0/0xa0 @ 1
[    0.589814] initcall xenbus_probe_backend_init+0x0/0xa0 returned 0 after 0 usecs
[    0.590285] calling  xenbus_probe_frontend_init+0x0/0x60 @ 1
[    0.590663] initcall xenbus_probe_frontend_init+0x0/0x60 returned 0 after 0 usecs
[    0.590849] calling  xen_acpi_pad_init+0x0/0x60 @ 1
[    0.591164] initcall xen_acpi_pad_init+0x0/0x60 returned -19 after 0 usecs
[    0.591587] calling  misc_init+0x0/0xb0 @ 1
[    0.591881] initcall misc_init+0x0/0xb0 returned 0 after 0 usecs
[    0.592355] calling  tpm_init+0x0/0xe0 @ 1
[    0.592689] initcall tpm_init+0x0/0xe0 returned 0 after 0 usecs
[    0.592689] calling  iommu_subsys_init+0x0/0x170 @ 1
[    0.592689] iommu: Default domain type: Translated
[    0.592689] iommu: DMA domain TLB invalidation policy: lazy mode
[    0.592689] initcall iommu_subsys_init+0x0/0x170 returned 0 after 0 usecs
[    0.592689] calling  cn_init+0x0/0xf0 @ 1
[    0.594877] initcall cn_init+0x0/0xf0 returned 0 after 0 usecs
[    0.595244] calling  pm860x_i2c_init+0x0/0x50 @ 1
[    0.595562] initcall pm860x_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.595965] calling  wm8400_driver_init+0x0/0x50 @ 1
[    0.596290] initcall wm8400_driver_init+0x0/0x50 returned 0 after 0 usecs
[    0.596707] calling  wm831x_i2c_init+0x0/0x50 @ 1
[    0.597032] initcall wm831x_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.597435] calling  wm831x_spi_init+0x0/0x40 @ 1
[    0.597762] initcall wm831x_spi_init+0x0/0x40 returned 0 after 0 usecs
[    0.598174] calling  wm8350_i2c_init+0x0/0x30 @ 1
[    0.598483] initcall wm8350_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.598848] calling  tps65910_i2c_init+0x0/0x30 @ 1
[    0.599168] initcall tps65910_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.599584] calling  ezx_pcap_init+0x0/0x30 @ 1
[    0.599884] initcall ezx_pcap_init+0x0/0x30 returned 0 after 0 usecs
[    0.600278] calling  da903x_init+0x0/0x30 @ 1
[    0.600566] initcall da903x_init+0x0/0x30 returned 0 after 0 usecs
[    0.600957] calling  da9052_spi_init+0x0/0x50 @ 1
[    0.601262] initcall da9052_spi_init+0x0/0x50 returned 0 after 0 usecs
[    0.601678] calling  da9052_i2c_init+0x0/0x50 @ 1
[    0.602001] initcall da9052_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.602406] calling  lp8788_init+0x0/0x30 @ 1
[    0.602661] initcall lp8788_init+0x0/0x30 returned 0 after 0 usecs
[    0.602847] calling  da9055_i2c_init+0x0/0x50 @ 1
[    0.603116] initcall da9055_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.603474] calling  max77843_i2c_init+0x0/0x30 @ 1
[    0.603786] initcall max77843_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.604199] calling  max8925_i2c_init+0x0/0x50 @ 1
[    0.604606] initcall max8925_i2c_init+0x0/0x50 returned 0 after 0 usecs
[    0.605080] calling  max8997_i2c_init+0x0/0x30 @ 1
[    0.605399] initcall max8997_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.605834] calling  max8998_i2c_init+0x0/0x30 @ 1
[    0.606150] initcall max8998_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.606558] calling  tps6586x_init+0x0/0x30 @ 1
[    0.606850] initcall tps6586x_init+0x0/0x30 returned 0 after 0 usecs
[    0.607248] calling  tps65090_init+0x0/0x30 @ 1
[    0.607547] initcall tps65090_init+0x0/0x30 returned 0 after 0 usecs
[    0.607941] calling  aat2870_init+0x0/0x30 @ 1
[    0.608237] initcall aat2870_init+0x0/0x30 returned 0 after 0 usecs
[    0.608629] calling  palmas_i2c_init+0x0/0x30 @ 1
[    0.608943] initcall palmas_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.609347] calling  rc5t583_i2c_init+0x0/0x30 @ 1
[    0.609675] initcall rc5t583_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.610082] calling  as3711_i2c_init+0x0/0x30 @ 1
[    0.610389] initcall as3711_i2c_init+0x0/0x30 returned 0 after 0 usecs
[    0.610791] calling  libnvdimm_init+0x0/0x70 @ 1
[    0.610893] initcall libnvdimm_init+0x0/0x70 returned 0 after 0 usecs
[    0.611297] calling  dax_core_init+0x0/0x110 @ 1
[    0.611686] initcall dax_core_init+0x0/0x110 returned 0 after 0 usecs
[    0.612091] calling  dma_buf_init+0x0/0xb0 @ 1
[    0.612398] initcall dma_buf_init+0x0/0xb0 returned 0 after 0 usecs
[    0.612792] calling  init_scsi+0x0/0xa0 @ 1
[    0.613131] SCSI subsystem initialized
[    0.613398] initcall init_scsi+0x0/0xa0 returned 0 after 0 usecs
[    0.613773] calling  ata_init+0x0/0x410 @ 1
[    0.614069] libata version 3.00 loaded.
[    0.614069] initcall ata_init+0x0/0x410 returned 0 after 0 usecs
[    0.614848] calling  phy_init+0x0/0x2b0 @ 1
[    0.615156] initcall phy_init+0x0/0x2b0 returned 0 after 0 usecs
[    0.615533] calling  usb_common_init+0x0/0x30 @ 1
[    0.615849] initcall usb_common_init+0x0/0x30 returned 0 after 0 usecs
[    0.616255] calling  usb_init+0x0/0x190 @ 1
[    0.616544] ACPI: bus type USB registered
[    0.616834] usbcore: registered new interface driver usbfs
[    0.617200] usbcore: registered new interface driver hub
[    0.617544] usbcore: registered new device driver usb
[    0.617867] initcall usb_init+0x0/0x190 returned 0 after 0 usecs
[    0.618657] calling  xdbc_init+0x0/0x1e0 @ 1
[    0.618849] initcall xdbc_init+0x0/0x1e0 returned 0 after 0 usecs
[    0.619229] calling  usb_roles_init+0x0/0x20 @ 1
[    0.619532] initcall usb_roles_init+0x0/0x20 returned 0 after 0 usecs
[    0.619941] calling  serio_init+0x0/0x50 @ 1
[    0.620228] initcall serio_init+0x0/0x50 returned 0 after 0 usecs
[    0.620668] calling  input_init+0x0/0x130 @ 1
[    0.620974] initcall input_init+0x0/0x130 returned 0 after 0 usecs
[    0.621367] calling  rtc_init+0x0/0x40 @ 1
[    0.621653] initcall rtc_init+0x0/0x40 returned 0 after 0 usecs
[    0.622033] calling  dw_i2c_init_driver+0x0/0x30 @ 1
[    0.622373] initcall dw_i2c_init_driver+0x0/0x30 returned 0 after 0 usecs
[    0.622793] calling  pps_init+0x0/0xc0 @ 1
[    0.622853] pps_core: LinuxPPS API ver. 1 registered
[    0.623173] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.623729] initcall pps_init+0x0/0xc0 returned 0 after 0 usecs
[    0.624111] calling  ptp_init+0x0/0xa0 @ 1
[    0.624385] PTP clock support registered
[    0.624650] initcall ptp_init+0x0/0xa0 returned 0 after 0 usecs
[    0.625029] calling  power_supply_class_init+0x0/0x30 @ 1
[    0.625377] initcall power_supply_class_init+0x0/0x30 returned 0 after 0 usecs
[    0.625821] calling  hwmon_init+0x0/0x110 @ 1
[    0.626113] initcall hwmon_init+0x0/0x110 returned 0 after 0 usecs
[    0.626496] calling  intel_tcc_init+0x0/0x40 @ 1
[    0.626800] initcall intel_tcc_init+0x0/0x40 returned 0 after 0 usecs
[    0.626847] calling  md_init+0x0/0x190 @ 1
[    0.627145] initcall md_init+0x0/0x190 returned 0 after 0 usecs
[    0.627251] calling  edac_init+0x0/0x90 @ 1
[    0.627542] EDAC MC: Ver: 3.0.0
[    0.627894] initcall edac_init+0x0/0x90 returned 0 after 0 usecs
[    0.627894] calling  mmc_init+0x0/0x50 @ 1
[    0.627894] initcall mmc_init+0x0/0x50 returned 0 after 0 usecs
[    0.627902] calling  dmi_init+0x0/0x140 @ 1
[    0.628210] initcall dmi_init+0x0/0x140 returned 0 after 0 usecs
[    0.628586] calling  efisubsys_init+0x0/0x610 @ 1
[    0.628911] initcall efisubsys_init+0x0/0x610 returned 0 after 0 usecs
[    0.629319] calling  vme_init+0x0/0x20 @ 1
[    0.630854] initcall vme_init+0x0/0x20 returned 0 after 0 usecs
[    0.631227] calling  remoteproc_init+0x0/0x80 @ 1
[    0.631557] initcall remoteproc_init+0x0/0x80 returned 0 after 0 usecs
[    0.631964] calling  devfreq_init+0x0/0xe0 @ 1
[    0.632280] initcall devfreq_init+0x0/0xe0 returned 0 after 0 usecs
[    0.632280] calling  devfreq_event_init+0x0/0x60 @ 1
[    0.632280] initcall devfreq_event_init+0x0/0x60 returned 0 after 0 usecs
[    0.632280] calling  devfreq_simple_ondemand_init+0x0/0x20 @ 1
[    0.632361] initcall devfreq_simple_ondemand_init+0x0/0x20 returned 0 after 0 usecs
[    0.632829] calling  devfreq_performance_init+0x0/0x20 @ 1
[    0.633174] initcall devfreq_performance_init+0x0/0x20 returned 0 after 0 usecs
[    0.634848] calling  devfreq_powersave_init+0x0/0x20 @ 1
[    0.635186] initcall devfreq_powersave_init+0x0/0x20 returned 0 after 0 usecs
[    0.635634] calling  devfreq_userspace_init+0x0/0x20 @ 1
[    0.635976] initcall devfreq_userspace_init+0x0/0x20 returned 0 after 0 usecs
[    0.636431] calling  devfreq_passive_init+0x0/0x20 @ 1
[    0.636775] initcall devfreq_passive_init+0x0/0x20 returned 0 after 0 usecs
[    0.637290] calling  ras_init+0x0/0x20 @ 1
[    0.637576] initcall ras_init+0x0/0x20 returned 0 after 0 usecs
[    0.637951] calling  nvmem_init+0x0/0x20 @ 1
[    0.638243] initcall nvmem_init+0x0/0x20 returned 0 after 0 usecs
[    0.638631] calling  dpll_init+0x0/0x20 @ 1
[    0.638878] initcall dpll_init+0x0/0x20 returned 0 after 0 usecs
[    0.639261] calling  proto_init+0x0/0x20 @ 1
[    0.639545] initcall proto_init+0x0/0x20 returned 0 after 0 usecs
[    0.639932] calling  net_dev_init+0x0/0x3a0 @ 1
[    0.640374] initcall net_dev_init+0x0/0x3a0 returned 0 after 0 usecs
[    0.640777] calling  neigh_init+0x0/0x30 @ 1
[    0.641065] initcall neigh_init+0x0/0x30 returned 0 after 0 usecs
[    0.641452] calling  fib_notifier_init+0x0/0x20 @ 1
[    0.641768] initcall fib_notifier_init+0x0/0x20 returned 0 after 0 usecs
[    0.642183] calling  netdev_genl_init+0x0/0x50 @ 1
[    0.642495] initcall netdev_genl_init+0x0/0x50 returned 0 after 0 usecs
[    0.642851] calling  page_pool_user_init+0x0/0x20 @ 1
[    0.643185] initcall page_pool_user_init+0x0/0x20 returned 0 after 0 usecs
[    0.643609] calling  fib_rules_init+0x0/0x80 @ 1
[    0.643936] initcall fib_rules_init+0x0/0x80 returned 0 after 0 usecs
[    0.644334] calling  init_cgroup_netprio+0x0/0x30 @ 1
[    0.644658] initcall init_cgroup_netprio+0x0/0x30 returned 0 after 0 usecs
[    0.645082] calling  bpf_lwt_init+0x0/0x30 @ 1
[    0.645379] initcall bpf_lwt_init+0x0/0x30 returned 0 after 0 usecs
[    0.645768] calling  pktsched_init+0x0/0xc0 @ 1
[    0.646157] initcall pktsched_init+0x0/0xc0 returned 0 after 0 usecs
[    0.646562] calling  tc_filter_init+0x0/0xa0 @ 1
[    0.646853] initcall tc_filter_init+0x0/0xa0 returned 0 after 0 usecs
[    0.647543] calling  tc_action_init+0x0/0x30 @ 1
[    0.647848] initcall tc_action_init+0x0/0x30 returned 0 after 0 usecs
[    0.648219] calling  ethnl_init+0x0/0x80 @ 1
[    0.648490] initcall ethnl_init+0x0/0x80 returned 0 after 0 usecs
[    0.648827] calling  nexthop_init+0x0/0x40 @ 1
[    0.649090] initcall nexthop_init+0x0/0x40 returned 0 after 0 usecs
[    0.649436] calling  devlink_init+0x0/0x70 @ 1
[    0.649713] initcall devlink_init+0x0/0x70 returned 0 after 0 usecs
[    0.650060] calling  wireless_nlevent_init+0x0/0x50 @ 1
[    0.650361] initcall wireless_nlevent_init+0x0/0x50 returned 0 after 0 usecs
[    0.650749] calling  rfkill_init+0x0/0x130 @ 1
[    0.650870] initcall rfkill_init+0x0/0x130 returned 0 after 0 usecs
[    0.651241] calling  ncsi_init_netlink+0x0/0x20 @ 1
[    0.651587] initcall ncsi_init_netlink+0x0/0x20 returned 0 after 0 usecs
[    0.652007] calling  shaper_init+0x0/0x20 @ 1
[    0.652300] initcall shaper_init+0x0/0x20 returned 0 after 0 usecs
[    0.652706] calling  pci_subsys_init+0x0/0x80 @ 1
[    0.653136] PCI: Using ACPI for IRQ routing
[    0.653484] PCI: pci_cache_line_size set to 64 bytes
[    0.653923] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    0.654305] e820: reserve RAM buffer [mem 0xbffdf000-0xbfffffff]
[    0.654853] initcall pci_subsys_init+0x0/0x80 returned 0 after 4000 usecs
[    0.655285] calling  vsprintf_init_hashval+0x0/0x20 @ 1
[    0.655638] initcall vsprintf_init_hashval+0x0/0x20 returned 0 after 0 usecs
[    0.656079] calling  efi_runtime_map_init+0x0/0x260 @ 1
[    0.656417] initcall efi_runtime_map_init+0x0/0x260 returned 0 after 0 usecs
[    0.656849] calling  vga_arb_device_init+0x0/0xa0 @ 1
[    0.657196] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.657196] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.657196] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.657196] vgaarb: loaded
[    0.657196] initcall vga_arb_device_init+0x0/0xa0 returned 0 after 0 usecs
[    0.658848] calling  watchdog_init+0x0/0xb0 @ 1
[    0.659153] initcall watchdog_init+0x0/0xb0 returned 0 after 0 usecs
[    0.659381] calling  nmi_warning_debugfs+0x0/0x40 @ 1
[    0.659716] initcall nmi_warning_debugfs+0x0/0x40 returned 0 after 0 usecs
[    0.660144] calling  hpet_late_init+0x0/0x420 @ 1
[    0.660460] initcall hpet_late_init+0x0/0x420 returned -19 after 0 usecs
[    0.660879] calling  init_amd_nbs+0x0/0x340 @ 1
[    0.661176] initcall init_amd_nbs+0x0/0x340 returned 0 after 0 usecs
[    0.661574] calling  amd_smn_init+0x0/0x200 @ 1
[    0.661875] initcall amd_smn_init+0x0/0x200 returned 0 after 0 usecs
[    0.662281] calling  iomem_init_inode+0x0/0xa0 @ 1
[    0.662860] initcall iomem_init_inode+0x0/0xa0 returned 0 after 0 usecs
[    0.663279] calling  clocksource_done_booting+0x0/0x50 @ 1
[    0.663745] clocksource: Switched to clocksource kvm-clock
[    0.664086] initcall clocksource_done_booting+0x0/0x50 returned 0 after 346 usecs
[    0.664491] calling  tracer_init_tracefs+0x0/0xd0 @ 1
[    0.664794] initcall tracer_init_tracefs+0x0/0xd0 returned 0 after 15 usecs
[    0.665178] calling  init_trace_printk_function_export+0x0/0x40 @ 1
[    0.665547] initcall init_trace_printk_function_export+0x0/0x40 returned 0 after 18 usecs
[    0.665985] calling  init_graph_tracefs+0x0/0x40 @ 1
[    0.666268] initcall init_graph_tracefs+0x0/0x40 returned 0 after 1 usecs
[    0.666752] calling  trace_events_synth_init+0x0/0x60 @ 1
[    0.666752] initcall trace_events_synth_init+0x0/0x60 returned 0 after 1 usecs
[    0.666880] calling  bpf_event_init+0x0/0x20 @ 1
[    0.667191] initcall bpf_event_init+0x0/0x20 returned 0 after 2 usecs
[    0.667593] calling  init_kprobe_trace+0x0/0x1e0 @ 1
[    0.667959] initcall init_kprobe_trace+0x0/0x1e0 returned 0 after 8 usecs
[    0.668498] calling  init_dynamic_event+0x0/0x40 @ 1
[    0.668835] initcall init_dynamic_event+0x0/0x40 returned 0 after 2 usecs
[    0.669258] calling  init_uprobe_trace+0x0/0x80 @ 1
[    0.669577] initcall init_uprobe_trace+0x0/0x80 returned 0 after 4 usecs
[    0.669992] calling  bpf_init+0x0/0x60 @ 1
[    0.670271] initcall bpf_init+0x0/0x60 returned 0 after 8 usecs
[    0.670660] calling  secretmem_init+0x0/0x60 @ 1
[    0.670985] initcall secretmem_init+0x0/0x60 returned 0 after 12 usecs
[    0.671396] calling  init_fs_stat_sysctls+0x0/0x40 @ 1
[    0.671731] initcall init_fs_stat_sysctls+0x0/0x40 returned 0 after 7 usecs
[    0.672159] calling  init_fs_exec_sysctls+0x0/0x40 @ 1
[    0.672490] initcall init_fs_exec_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.672920] calling  init_pipe_fs+0x0/0x80 @ 1
[    0.673228] initcall init_pipe_fs+0x0/0x80 returned 0 after 10 usecs
[    0.673621] calling  init_fs_namei_sysctls+0x0/0x40 @ 1
[    0.673954] initcall init_fs_namei_sysctls+0x0/0x40 returned 0 after 1 usecs
[    0.674413] calling  init_fs_dcache_sysctls+0x0/0x60 @ 1
[    0.674765] initcall init_fs_dcache_sysctls+0x0/0x60 returned 0 after 4 usecs
[    0.675206] calling  init_fs_namespace_sysctls+0x0/0x40 @ 1
[    0.676069] initcall init_fs_namespace_sysctls+0x0/0x40 returned 0 after 0 usecs
[    0.676524] calling  cgroup_writeback_init+0x0/0x40 @ 1
[    0.676864] initcall cgroup_writeback_init+0x0/0x40 returned 0 after 2 usecs
[    0.677297] calling  inotify_user_setup+0x0/0x140 @ 1
[    0.677630] initcall inotify_user_setup+0x0/0x140 returned 0 after 9 usecs
[    0.678067] calling  eventpoll_init+0x0/0x190 @ 1
[    0.678402] initcall eventpoll_init+0x0/0x190 returned 0 after 17 usecs
[    0.678809] calling  anon_inode_init+0x0/0x70 @ 1
[    0.679119] initcall anon_inode_init+0x0/0x70 returned 0 after 7 usecs
[    0.679522] calling  init_dax_wait_table+0x0/0x50 @ 1
[    0.679882] initcall init_dax_wait_table+0x0/0x50 returned 0 after 35 usecs
[    0.680309] calling  proc_locks_init+0x0/0x40 @ 1
[    0.680614] initcall proc_locks_init+0x0/0x40 returned 0 after 1 usecs
[    0.681010] calling  backing_aio_init+0x0/0x90 @ 1
[    0.681287] initcall backing_aio_init+0x0/0x90 returned 0 after 2 usecs
[    0.681649] calling  init_fs_coredump_sysctls+0x0/0x40 @ 1
[    0.681958] initcall init_fs_coredump_sysctls+0x0/0x40 returned 0 after 2 usecs
[    0.682388] calling  init_vm_drop_caches_sysctls+0x0/0x40 @ 1
[    0.682741] initcall init_vm_drop_caches_sysctls+0x0/0x40 returned 0 after 1 usecs
[    0.683149] calling  iomap_dio_init+0x0/0x40 @ 1
[    0.683421] initcall iomap_dio_init+0x0/0x40 returned 0 after 8 usecs
[    0.683793] calling  iomap_ioend_init+0x0/0x30 @ 1
[    0.684118] initcall iomap_ioend_init+0x0/0x30 returned 0 after 13 usecs
[    0.684539] calling  dquot_init+0x0/0x190 @ 1
[    0.684896] VFS: Disk quotas dquot_6.6.0
[    0.685242] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.685688] initcall dquot_init+0x0/0x190 returned 0 after 791 usecs
[    0.686208] calling  quota_init+0x0/0x40 @ 1
[    0.686523] initcall quota_init+0x0/0x40 returned 0 after 9 usecs
[    0.686911] calling  proc_cmdline_init+0x0/0x50 @ 1
[    0.687237] initcall proc_cmdline_init+0x0/0x50 returned 0 after 2 usecs
[    0.687658] calling  proc_consoles_init+0x0/0x40 @ 1
[    0.687981] initcall proc_consoles_init+0x0/0x40 returned 0 after 0 usecs
[    0.688408] calling  proc_cpuinfo_init+0x0/0x30 @ 1
[    0.688734] initcall proc_cpuinfo_init+0x0/0x30 returned 0 after 2 usecs
[    0.689151] calling  proc_devices_init+0x0/0x40 @ 1
[    0.689467] initcall proc_devices_init+0x0/0x40 returned 0 after 0 usecs
[    0.689885] calling  proc_interrupts_init+0x0/0x40 @ 1
[    0.690217] initcall proc_interrupts_init+0x0/0x40 returned 0 after 0 usecs
[    0.690663] calling  proc_loadavg_init+0x0/0x40 @ 1
[    0.690967] initcall proc_loadavg_init+0x0/0x40 returned 0 after 0 usecs
[    0.691380] calling  proc_meminfo_init+0x0/0x40 @ 1
[    0.691701] initcall proc_meminfo_init+0x0/0x40 returned 0 after 0 usecs
[    0.692085] calling  proc_stat_init+0x0/0x30 @ 1
[    0.692351] initcall proc_stat_init+0x0/0x30 returned 0 after 1 usecs
[    0.692700] calling  proc_uptime_init+0x0/0x40 @ 1
[    0.692976] initcall proc_uptime_init+0x0/0x40 returned 0 after 0 usecs
[    0.693339] calling  proc_version_init+0x0/0x40 @ 1
[    0.693655] initcall proc_version_init+0x0/0x40 returned 0 after 0 usecs
[    0.694072] calling  proc_softirqs_init+0x0/0x40 @ 1
[    0.694423] initcall proc_softirqs_init+0x0/0x40 returned 0 after 0 usecs
[    0.694841] calling  proc_kcore_init+0x0/0x170 @ 1
[    0.695199] initcall proc_kcore_init+0x0/0x170 returned 0 after 40 usecs
[    0.695617] calling  vmcore_init+0x0/0x920 @ 1
[    0.695914] initcall vmcore_init+0x0/0x920 returned 0 after 2 usecs
[    0.696308] calling  proc_kmsg_init+0x0/0x30 @ 1
[    0.696611] initcall proc_kmsg_init+0x0/0x30 returned 0 after 2 usecs
[    0.696964] calling  proc_page_init+0x0/0x70 @ 1
[    0.697233] initcall proc_page_init+0x0/0x70 returned 0 after 4 usecs
[    0.697587] calling  init_ramfs_fs+0x0/0x20 @ 1
[    0.697850] initcall init_ramfs_fs+0x0/0x20 returned 0 after 5 usecs
[    0.698208] calling  init_hugetlbfs_fs+0x0/0x1c0 @ 1
[    0.698588] initcall init_hugetlbfs_fs+0x0/0x1c0 returned 0 after 46 usecs
[    0.699013] calling  aa_create_aafs+0x0/0x3c0 @ 1
[    0.699320] initcall aa_create_aafs+0x0/0x3c0 returned 0 after 2 usecs
[    0.699722] calling  dynamic_debug_init_control+0x0/0xa0 @ 1
[    0.700061] initcall dynamic_debug_init_control+0x0/0xa0 returned 0 after 9 usecs
[    0.700486] calling  acpi_event_init+0x0/0x50 @ 1
[    0.700806] initcall acpi_event_init+0x0/0x50 returned 0 after 4 usecs
[    0.701228] calling  pnp_system_init+0x0/0x20 @ 1
[    0.701661] initcall pnp_system_init+0x0/0x20 returned 0 after 34 usecs
[    0.702081] calling  pnpacpi_init+0x0/0x80 @ 1
[    0.702387] pnp: PnP ACPI init
[    0.702704] pnp 00:03: [dma 2]
[    0.703031] pnp: PnP ACPI: found 5 devices
[    0.703302] initcall pnpacpi_init+0x0/0x80 returned 0 after 915 usecs
[    0.703706] calling  chr_dev_init+0x0/0xb0 @ 1
[    0.705405] initcall chr_dev_init+0x0/0xb0 returned 0 after 1405 usecs
[    0.706021] calling  hwrng_modinit+0x0/0xc0 @ 1
[    0.706375] initcall hwrng_modinit+0x0/0xc0 returned 0 after 32 usecs
[    0.706788] calling  firmware_class_init+0x0/0x120 @ 1
[    0.707135] initcall firmware_class_init+0x0/0x120 returned 0 after 15 usecs
[    0.707572] calling  map_properties+0x0/0x670 @ 1
[    0.707881] initcall map_properties+0x0/0x670 returned 0 after 2 usecs
[    0.708289] calling  init_acpi_pm_clocksource+0x0/0x110 @ 1
[    0.713153] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.713625] initcall init_acpi_pm_clocksource+0x0/0x110 returned 0 after 4980 usecs
[    0.714037] calling  powercap_init+0x0/0x290 @ 1
[    0.714331] initcall powercap_init+0x0/0x290 returned 0 after 24 usecs
[    0.714751] calling  sysctl_core_init+0x0/0x40 @ 1
[    0.715077] initcall sysctl_core_init+0x0/0x40 returned 0 after 16 usecs
[    0.715494] calling  eth_offload_init+0x0/0x30 @ 1
[    0.715810] initcall eth_offload_init+0x0/0x30 returned 0 after 2 usecs
[    0.716222] calling  ipv4_offload_init+0x0/0xe0 @ 1
[    0.716544] initcall ipv4_offload_init+0x0/0xe0 returned 0 after 5 usecs
[    0.716907] calling  inet_init+0x0/0x360 @ 1
[    0.717215] NET: Registered PF_INET protocol family
[    0.717654] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.719350] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.719890] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.720360] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.720832] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.721411] TCP: Hash tables configured (established 65536 bind 65536)
[    0.721834] UDP hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.722288] UDP-Lite hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.722812] initcall inet_init+0x0/0x360 returned 0 after 5630 usecs
[    0.723164] calling  af_unix_init+0x0/0x120 @ 1
[    0.723440] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.723762] initcall af_unix_init+0x0/0x120 returned 0 after 324 usecs
[    0.724117] calling  ipv6_offload_init+0x0/0xf0 @ 1
[    0.724395] initcall ipv6_offload_init+0x0/0xf0 returned 0 after 1 usecs
[    0.724759] calling  vlan_offload_init+0x0/0x30 @ 1
[    0.725052] initcall vlan_offload_init+0x0/0x30 returned 0 after 0 usecs
[    0.725423] calling  xsk_init+0x0/0xa0 @ 1
[    0.725695] NET: Registered PF_XDP protocol family
[    0.726025] initcall xsk_init+0x0/0xa0 returned 0 after 332 usecs
[    0.726423] calling  pcibios_assign_resources+0x0/0xe0 @ 1
[    0.726760] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.727098] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.727434] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.727804] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfebfffff window]
[    0.728173] pci_bus 0000:00: resource 8 [mem 0x240000000-0x2bfffffff window]
[    0.728583] initcall pcibios_assign_resources+0x0/0xe0 returned 0 after 1838 usecs
[    0.728992] calling  pci_apply_final_quirks+0x0/0x160 @ 1
[    0.729298] pci 0000:00:00.0: calling  quirk_passive_release+0x0/0xb0 @ 1
[    0.729719] pci 0000:00:01.0: PIIX3: Enabling Passive Release
[    0.730044] pci 0000:00:00.0: quirk_passive_release+0x0/0xb0 took 325 usecs
[    0.730487] pci 0000:00:00.0: calling  quirk_natoma+0x0/0x40 @ 1
[    0.730876] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    0.731246] pci 0000:00:00.0: quirk_natoma+0x0/0x40 took 364 usecs
[    0.731637] pci 0000:00:04.0: calling  quirk_usb_early_handoff+0x0/0x6d0 @ 1
[    0.743436] ACPI: \_SB_.LNKD: Enabled at IRQ 11
[    0.755081] pci 0000:00:04.0: quirk_usb_early_handoff+0x0/0x6d0 took 22516 usecs
[    0.755586] PCI: CLS 0 bytes, default 64
[    0.755847] initcall pci_apply_final_quirks+0x0/0x160 returned 0 after 26552 usecs
[    0.756316] calling  acpi_reserve_resources+0x0/0x120 @ 1
[    0.756671] initcall acpi_reserve_resources+0x0/0x120 returned 0 after 3 usecs
[    0.757128] calling  p2sb_fs_init+0x0/0x160 @ 1
[    0.757454] initcall p2sb_fs_init+0x0/0x160 returned -2 after 29 usecs
[    0.757862] calling  populate_rootfs+0x0/0x60 @ 1
[    0.758245] Trying to unpack rootfs image as initramfs...
[    0.762330] initcall populate_rootfs+0x0/0x60 returned 0 after 4159 usecs
[    0.762786] calling  pci_iommu_init+0x0/0x50 @ 1
[    0.763098] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.763505] software IO TLB: mapped [mem 0x00000000af000000-0x00000000b3000000] (64MB)
[    0.763964] initcall pci_iommu_init+0x0/0x50 returned 0 after 869 usecs
[    0.764346] calling  ir_dev_scope_init+0x0/0x50 @ 1
[    0.764691] initcall ir_dev_scope_init+0x0/0x50 returned 0 after 2 usecs
[    0.765149] calling  snp_init_platform_device+0x0/0x50 @ 1
[    0.765857] initcall snp_init_platform_device+0x0/0x50 returned -19 after 3 usecs
[    0.766340] calling  ia32_binfmt_init+0x0/0x30 @ 1
[    0.766660] initcall ia32_binfmt_init+0x0/0x30 returned 0 after 4 usecs
[    0.767073] calling  amd_ibs_init+0x0/0x370 @ 1
[    0.767372] initcall amd_ibs_init+0x0/0x370 returned -19 after 1 usecs
[    0.767779] calling  amd_uncore_init+0x0/0x1c0 @ 1
[    0.768090] initcall amd_uncore_init+0x0/0x1c0 returned -19 after 0 usecs
[    0.768515] calling  amd_iommu_pc_init+0x0/0x280 @ 1
[    0.768834] initcall amd_iommu_pc_init+0x0/0x280 returned -19 after 2 usecs
[    0.769264] calling  msr_init+0x0/0x70 @ 1
[    0.769562] initcall msr_init+0x0/0x70 returned 0 after 26 usecs
[    0.769939] calling  intel_uncore_init+0x0/0x5b0 @ 1
[    0.770264] initcall intel_uncore_init+0x0/0x5b0 returned -19 after 2 usecs
[    0.770705] calling  register_kernel_offset_dumper+0x0/0x30 @ 1
[    0.771082] initcall register_kernel_offset_dumper+0x0/0x30 returned 0 after 1 usecs
[    0.771553] calling  i8259A_init_ops+0x0/0x40 @ 1
[    0.771925] initcall i8259A_init_ops+0x0/0x40 returned 0 after 64 usecs
[    0.772340] calling  init_tsc_clocksource+0x0/0xe0 @ 1
[    0.772673] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x28680fa287f, max_idle_ns: 440795281151 ns
[    0.773276] initcall init_tsc_clocksource+0x0/0xe0 returned 0 after 604 usecs
[    0.773723] calling  add_rtc_cmos+0x0/0xc0 @ 1
[    0.774021] initcall add_rtc_cmos+0x0/0xc0 returned 0 after 5 usecs
[    0.774436] calling  i8237A_init_ops+0x0/0x60 @ 1
[    0.774756] initcall i8237A_init_ops+0x0/0x60 returned 0 after 8 usecs
[    0.775169] calling  umwait_init+0x0/0xb0 @ 1
[    0.775458] initcall umwait_init+0x0/0xb0 returned -19 after 1 usecs
[    0.775856] calling  ioapic_init_ops+0x0/0x30 @ 1
[    0.776163] initcall ioapic_init_ops+0x0/0x30 returned 0 after 0 usecs
[    0.776566] calling  register_e820_pmem+0x0/0x90 @ 1
[    0.776892] initcall register_e820_pmem+0x0/0x90 returned 0 after 4 usecs
[    0.777315] calling  add_pcspkr+0x0/0x80 @ 1
[    0.777640] initcall add_pcspkr+0x0/0x80 returned 0 after 40 usecs
[    0.778035] calling  start_periodic_check_for_corruption+0x0/0x60 @ 1
[    0.778508] initcall start_periodic_check_for_corruption+0x0/0x60 returned 0 after 1 usecs
[    0.779010] calling  audit_classes_init+0x0/0xc0 @ 1
[    0.779330] initcall audit_classes_init+0x0/0xc0 returned 0 after 3 usecs
[    0.779749] calling  pt_dump_init+0x0/0x50 @ 1
[    0.780031] initcall pt_dump_init+0x0/0x50 returned 0 after 1 usecs
[    0.780420] calling  iosf_mbi_init+0x0/0xc0 @ 1
[    0.780775] initcall iosf_mbi_init+0x0/0xc0 returned 0 after 20 usecs
[    0.781180] calling  proc_execdomains_init+0x0/0x30 @ 1
[    0.781521] initcall proc_execdomains_init+0x0/0x30 returned 0 after 4 usecs
[    0.781956] calling  register_warn_debugfs+0x0/0x40 @ 1
[    0.782293] initcall register_warn_debugfs+0x0/0x40 returned 0 after 0 usecs
[    0.782750] calling  cpuhp_sysfs_init+0x0/0x100 @ 1
[    0.783078] initcall cpuhp_sysfs_init+0x0/0x100 returned 0 after 8 usecs
[    0.783492] calling  ioresources_init+0x0/0x60 @ 1
[    0.783805] initcall ioresources_init+0x0/0x60 returned 0 after 1 usecs
[    0.784218] calling  psi_proc_init+0x0/0x90 @ 1
[    0.784522] initcall psi_proc_init+0x0/0x90 returned 0 after 4 usecs
[    0.785061] calling  snapshot_device_init+0x0/0x20 @ 1
[    0.785496] initcall snapshot_device_init+0x0/0x20 returned 0 after 59 usecs
[    0.785962] calling  irq_gc_init_ops+0x0/0x30 @ 1
[    0.786285] initcall irq_gc_init_ops+0x0/0x30 returned 0 after 2 usecs
[    0.786714] calling  irq_pm_init_ops+0x0/0x30 @ 1
[    0.787021] initcall irq_pm_init_ops+0x0/0x30 returned 0 after 0 usecs
[    0.787428] calling  klp_init+0x0/0x40 @ 1
[    0.787710] initcall klp_init+0x0/0x40 returned 0 after 5 usecs
[    0.788087] calling  proc_modules_init+0x0/0x30 @ 1
[    0.788409] initcall proc_modules_init+0x0/0x30 returned 0 after 2 usecs
[    0.788830] calling  timer_sysctl_init+0x0/0x30 @ 1
[    0.789133] initcall timer_sysctl_init+0x0/0x30 returned 0 after 2 usecs
[    0.789533] calling  timekeeping_init_ops+0x0/0x30 @ 1
[    0.789865] initcall timekeeping_init_ops+0x0/0x30 returned 0 after 0 usecs
[    0.790303] calling  init_clocksource_sysfs+0x0/0x40 @ 1
[    0.790683] initcall init_clocksource_sysfs+0x0/0x40 returned 0 after 28 usecs
[    0.791131] calling  init_timer_list_procfs+0x0/0x40 @ 1
[    0.791472] initcall init_timer_list_procfs+0x0/0x40 returned 0 after 1 usecs
[    0.791911] calling  alarmtimer_init+0x0/0xf0 @ 1
[    0.792230] initcall alarmtimer_init+0x0/0xf0 returned 0 after 11 usecs
[    0.792606] calling  init_posix_timers+0x0/0x90 @ 1
[    0.792890] initcall init_posix_timers+0x0/0x90 returned 0 after 3 usecs
[    0.793253] calling  clockevents_init_sysfs+0x0/0xe0 @ 1
[    0.793584] initcall clockevents_init_sysfs+0x0/0xe0 returned 0 after 32 usecs
[    0.793982] calling  proc_dma_init+0x0/0x30 @ 1
[    0.794259] initcall proc_dma_init+0x0/0x30 returned 0 after 2 usecs
[    0.794815] calling  kallsyms_init+0x0/0x30 @ 1
[    0.795127] initcall kallsyms_init+0x0/0x30 returned 0 after 9 usecs
[    0.795947] calling  pid_namespaces_init+0x0/0xc0 @ 1
[    0.796288] initcall pid_namespaces_init+0x0/0xc0 returned 0 after 16 usecs
[    0.796737] calling  ikconfig_init+0x0/0x60 @ 1
[    0.797043] initcall ikconfig_init+0x0/0x60 returned 0 after 6 usecs
[    0.797444] calling  audit_watch_init+0x0/0x60 @ 1
[    0.797763] initcall audit_watch_init+0x0/0x60 returned 0 after 2 usecs
[    0.798179] calling  audit_fsnotify_init+0x0/0x60 @ 1
[    0.798543] initcall audit_fsnotify_init+0x0/0x60 returned 0 after 2 usecs
[    0.798984] calling  audit_tree_init+0x0/0xd0 @ 1
[    0.799291] initcall audit_tree_init+0x0/0xd0 returned 0 after 1 usecs
[    0.799700] calling  seccomp_sysctl_init+0x0/0x40 @ 1
[    0.800031] initcall seccomp_sysctl_init+0x0/0x40 returned 0 after 3 usecs
[    0.800467] calling  utsname_sysctl_init+0x0/0x30 @ 1
[    0.800781] initcall utsname_sysctl_init+0x0/0x30 returned 0 after 4 usecs
[    0.801157] calling  init_tracepoints+0x0/0x50 @ 1
[    0.801511] initcall init_tracepoints+0x0/0x50 returned 0 after 2 usecs
[    0.802069] calling  stack_trace_init+0x0/0xc0 @ 1
[    0.802415] initcall stack_trace_init+0x0/0xc0 returned 0 after 15 usecs
[    0.802827] calling  init_mmio_trace+0x0/0x20 @ 1
[    0.803134] initcall init_mmio_trace+0x0/0x20 returned 0 after 3 usecs
[    0.803537] calling  init_blk_tracer+0x0/0x70 @ 1
[    0.803854] initcall init_blk_tracer+0x0/0x70 returned 0 after 8 usecs
[    0.804262] calling  perf_event_sysfs_init+0x0/0xb0 @ 1
[    0.804689] initcall perf_event_sysfs_init+0x0/0xb0 returned 0 after 94 usecs
[    0.805137] calling  system_trusted_keyring_init+0x0/0x110 @ 1
[    0.805503] Initialise system trusted keyrings
[    0.805807] initcall system_trusted_keyring_init+0x0/0x110 returned 0 after 304 usecs
[    0.806284] calling  blacklist_init+0x0/0x100 @ 1
[    0.806621] Key type blacklist registered
[    0.806890] initcall blacklist_init+0x0/0x100 returned 0 after 271 usecs
[    0.807307] calling  kswapd_init+0x0/0xa0 @ 1
[    0.807706] initcall kswapd_init+0x0/0xa0 returned 0 after 125 usecs
[    0.808065] calling  extfrag_debug_init+0x0/0x70 @ 1
[    0.808356] initcall extfrag_debug_init+0x0/0x70 returned 0 after 4 usecs
[    0.808773] calling  mm_compute_batch_init+0x0/0x30 @ 1
[    0.809114] initcall mm_compute_batch_init+0x0/0x30 returned 0 after 4 usecs
[    0.809557] calling  slab_proc_init+0x0/0x30 @ 1
[    0.809864] initcall slab_proc_init+0x0/0x30 returned 0 after 5 usecs
[    0.810267] calling  workingset_init+0x0/0xd0 @ 1
[    0.810591] workingset: timestamp_bits=36 max_order=21 bucket_order=0
[    0.810993] initcall workingset_init+0x0/0xd0 returned 0 after 403 usecs
[    0.811405] calling  proc_vmalloc_init+0x0/0x50 @ 1
[    0.811722] initcall proc_vmalloc_init+0x0/0x50 returned 0 after 1 usecs
[    0.812137] calling  slab_debugfs_init+0x0/0x70 @ 1
[    0.812463] initcall slab_debugfs_init+0x0/0x70 returned 0 after 9 usecs
[    0.812880] calling  procswaps_init+0x0/0x30 @ 1
[    0.813186] initcall procswaps_init+0x0/0x30 returned 0 after 3 usecs
[    0.813590] calling  zs_init+0x0/0x30 @ 1
[    0.813864] initcall zs_init+0x0/0x30 returned 0 after 4 usecs
[    0.814230] calling  ptdump_debugfs_init+0x0/0x40 @ 1
[    0.814627] initcall ptdump_debugfs_init+0x0/0x40 returned 0 after 8 usecs
[    0.815137] calling  fcntl_init+0x0/0x80 @ 1
[    0.815546] initcall fcntl_init+0x0/0x80 returned 0 after 5 usecs
[    0.816102] calling  proc_filesystems_init+0x0/0x30 @ 1
[    0.816616] initcall proc_filesystems_init+0x0/0x30 returned 0 after 2 usecs
[    0.817233] calling  start_dirtytime_writeback+0x0/0x60 @ 1
[    0.817718] initcall start_dirtytime_writeback+0x0/0x60 returned 0 after 6 usecs
[    0.818441] calling  dio_init+0x0/0x90 @ 1
[    0.818854] initcall dio_init+0x0/0x90 returned 0 after 3 usecs
[    0.819422] calling  dnotify_init+0x0/0x120 @ 1
[    0.819834] initcall dnotify_init+0x0/0x120 returned 0 after 19 usecs
[    0.820237] calling  fanotify_user_setup+0x0/0x250 @ 1
[    0.820576] initcall fanotify_user_setup+0x0/0x250 returned 0 after 4 usecs
[    0.821009] calling  userfaultfd_init+0x0/0xc0 @ 1
[    0.821378] initcall userfaultfd_init+0x0/0xc0 returned 0 after 56 usecs
[    0.821803] calling  aio_setup+0x0/0x120 @ 1
[    0.822105] initcall aio_setup+0x0/0x120 returned 0 after 17 usecs
[    0.822527] calling  mbcache_init+0x0/0x90 @ 1
[    0.822832] initcall mbcache_init+0x0/0x90 returned 0 after 3 usecs
[    0.823229] calling  init_devpts_fs+0x0/0x50 @ 1
[    0.823539] initcall init_devpts_fs+0x0/0x50 returned 0 after 7 usecs
[    0.823946] calling  ext4_init_fs+0x0/0x210 @ 1
[    0.824314] initcall ext4_init_fs+0x0/0x210 returned 0 after 62 usecs
[    0.824726] calling  journal_init+0x0/0x1f0 @ 1
[    0.825039] initcall journal_init+0x0/0x1f0 returned 0 after 12 usecs
[    0.825873] calling  init_squashfs_fs+0x0/0xd0 @ 1
[    0.826347] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.826866] initcall init_squashfs_fs+0x0/0xd0 returned 0 after 529 usecs
[    0.827458] calling  init_fat_fs+0x0/0xb0 @ 1
[    0.827869] initcall init_fat_fs+0x0/0xb0 returned 0 after 7 usecs
[    0.828461] calling  init_vfat_fs+0x0/0x20 @ 1
[    0.828939] initcall init_vfat_fs+0x0/0x20 returned 0 after 4 usecs
[    0.829567] calling  ecryptfs_init+0x0/0x230 @ 1
[    0.830282] initcall ecryptfs_init+0x0/0x230 returned 0 after 243 usecs
[    0.830968] calling  init_nls_cp437+0x0/0x30 @ 1
[    0.831421] initcall init_nls_cp437+0x0/0x30 returned 0 after 4 usecs
[    0.831930] calling  fuse_init+0x0/0x250 @ 1
[    0.832278] fuse: init (API version 7.43)
[    0.832695] initcall fuse_init+0x0/0x250 returned 0 after 417 usecs
[    0.833260] calling  efivarfs_init+0x0/0x20 @ 1
[    0.833701] initcall efivarfs_init+0x0/0x20 returned 0 after 1 usecs
[    0.834411] calling  ipc_init+0x0/0x40 @ 1
[    0.834895] initcall ipc_init+0x0/0x40 returned 0 after 13 usecs
[    0.835491] calling  ipc_sysctl_init+0x0/0x40 @ 1
[    0.835963] initcall ipc_sysctl_init+0x0/0x40 returned 0 after 16 usecs
[    0.836584] calling  init_mqueue_fs+0x0/0x160 @ 1
[    0.837075] initcall init_mqueue_fs+0x0/0x160 returned 0 after 33 usecs
[    0.837645] calling  key_proc_init+0x0/0x80 @ 1
[    0.838066] initcall key_proc_init+0x0/0x80 returned 0 after 3 usecs
[    0.838641] calling  selinux_nf_ip_init+0x0/0x60 @ 1
[    0.839123] initcall selinux_nf_ip_init+0x0/0x60 returned 0 after 4 usecs
[    0.839714] calling  init_sel_fs+0x0/0x140 @ 1
[    0.840122] initcall init_sel_fs+0x0/0x140 returned 0 after 0 usecs
[    0.840682] calling  selnl_init+0x0/0xa0 @ 1
[    0.841048] initcall selnl_init+0x0/0xa0 returned 0 after 8 usecs
[    0.841532] calling  sel_netif_init+0x0/0x50 @ 1
[    0.841907] initcall sel_netif_init+0x0/0x50 returned 0 after 0 usecs
[    0.842432] calling  sel_netnode_init+0x0/0x40 @ 1
[    0.842869] initcall sel_netnode_init+0x0/0x40 returned 0 after 0 usecs
[    0.843399] calling  sel_netport_init+0x0/0x40 @ 1
[    0.843774] initcall sel_netport_init+0x0/0x40 returned 0 after 0 usecs
[    0.844308] calling  aurule_init+0x0/0x40 @ 1
[    0.844721] initcall aurule_init+0x0/0x40 returned 0 after 8 usecs
[    0.845270] calling  apparmor_nf_ip_init+0x0/0x50 @ 1
[    0.845776] initcall apparmor_nf_ip_init+0x0/0x50 returned 0 after 0 usecs
[    0.846388] calling  bpf_crypto_skcipher_init+0x0/0x20 @ 1
[    0.846884] initcall bpf_crypto_skcipher_init+0x0/0x20 returned 0 after 6 usecs
[    0.847534] calling  crypto_hkdf_module_init+0x0/0x20 @ 1
[    0.848055] initcall crypto_hkdf_module_init+0x0/0x20 returned 0 after 0 usecs
[    0.848732] calling  jent_mod_init+0x0/0xf0 @ 1
[    0.855966] initcall jent_mod_init+0x0/0xf0 returned 0 after 6806 usecs
[    0.856412] calling  asymmetric_key_init+0x0/0x20 @ 1
[    0.856736] Key type asymmetric registered
[    0.857005] initcall asymmetric_key_init+0x0/0x20 returned 0 after 270 usecs
[    0.857470] calling  x509_key_init+0x0/0x20 @ 1
[    0.857741] Freeing initrd memory: 72972K
[    0.857766] Asymmetric key parser 'x509' registered
[    0.858381] initcall x509_key_init+0x0/0x20 returned 0 after 616 usecs
[    0.858788] calling  crypto_kdf108_init+0x0/0x20 @ 1
[    0.859112] initcall crypto_kdf108_init+0x0/0x20 returned 0 after 0 usecs
[    0.859536] calling  blkdev_init+0x0/0x30 @ 1
[    0.859817] initcall blkdev_init+0x0/0x30 returned 0 after 14 usecs
[    0.860162] calling  proc_genhd_init+0x0/0x50 @ 1
[    0.860435] initcall proc_genhd_init+0x0/0x50 returned 0 after 3 usecs
[    0.860798] calling  bsg_init+0x0/0xa0 @ 1
[    0.861046] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    0.861446] initcall bsg_init+0x0/0xa0 returned 0 after 409 usecs
[    0.861782] calling  throtl_init+0x0/0x50 @ 1
[    0.862202] initcall throtl_init+0x0/0x50 returned 0 after 167 usecs
[    0.862602] calling  ioc_init+0x0/0x20 @ 1
[    0.862864] initcall ioc_init+0x0/0x20 returned 0 after 4 usecs
[    0.863198] calling  deadline_init+0x0/0x20 @ 1
[    0.863468] io scheduler mq-deadline registered
[    0.863730] initcall deadline_init+0x0/0x20 returned 0 after 263 usecs
[    0.864089] calling  bfq_init+0x0/0xf0 @ 1
[    0.864341] io scheduler bfq registered
[    0.864567] initcall bfq_init+0x0/0xf0 returned 0 after 240 usecs
[    0.864907] calling  io_uring_init+0x0/0xe0 @ 1
[    0.865183] initcall io_uring_init+0x0/0xe0 returned 0 after 12 usecs
[    0.865538] calling  blake2s_mod_init+0x0/0x20 @ 1
[    0.865814] initcall blake2s_mod_init+0x0/0x20 returned 0 after 0 usecs
[    0.866176] calling  btree_module_init+0x0/0x80 @ 1
[    0.866487] initcall btree_module_init+0x0/0x80 returned 0 after 1 usecs
[    0.866904] calling  percpu_counter_startup+0x0/0x70 @ 1
[    0.867385] initcall percpu_counter_startup+0x0/0x70 returned 0 after 136 usecs
[    0.867791] calling  digsig_init+0x0/0x50 @ 1
[    0.868050] initcall digsig_init+0x0/0x50 returned 0 after 5 usecs
[    0.868426] calling  phy_core_init+0x0/0x60 @ 1
[    0.868875] initcall phy_core_init+0x0/0x60 returned 0 after 17 usecs
[    0.869364] calling  amd_gpio_driver_init+0x0/0x30 @ 1
[    0.869708] initcall amd_gpio_driver_init+0x0/0x30 returned 0 after 14 usecs
[    0.870142] calling  crystalcove_pwm_driver_init+0x0/0x30 @ 1
[    0.870521] initcall crystalcove_pwm_driver_init+0x0/0x30 returned 0 after 4 usecs
[    0.870982] calling  pwm_lpss_driver_pci_init+0x0/0x30 @ 1
[    0.871340] initcall pwm_lpss_driver_pci_init+0x0/0x30 returned 0 after 10 usecs
[    0.871787] calling  pwm_lpss_driver_platform_init+0x0/0x30 @ 1
[    0.872158] initcall pwm_lpss_driver_platform_init+0x0/0x30 returned 0 after 2 usecs
[    0.872624] calling  ledtrig_disk_init+0x0/0x50 @ 1
[    0.872939] initcall ledtrig_disk_init+0x0/0x50 returned 0 after 1 usecs
[    0.873355] calling  ledtrig_mtd_init+0x0/0x40 @ 1
[    0.873668] initcall ledtrig_mtd_init+0x0/0x40 returned 0 after 0 usecs
[    0.874077] calling  ledtrig_cpu_init+0x0/0x100 @ 1
[    0.874574] ledtrig-cpu: registered to indicate activity on CPUs
[    0.874952] initcall ledtrig_cpu_init+0x0/0x100 returned 0 after 550 usecs
[    0.875337] calling  ledtrig_panic_init+0x0/0x60 @ 1
[    0.875623] initcall ledtrig_panic_init+0x0/0x60 returned 0 after 1 usecs
[    0.876009] calling  pcie_portdrv_init+0x0/0x60 @ 1
[    0.876303] initcall pcie_portdrv_init+0x0/0x60 returned 0 after 18 usecs
[    0.876722] calling  pci_proc_init+0x0/0x80 @ 1
[    0.877027] initcall pci_proc_init+0x0/0x80 returned 0 after 10 usecs
[    0.877444] calling  pci_hotplug_init+0x0/0x50 @ 1
[    0.877756] initcall pci_hotplug_init+0x0/0x50 returned 0 after 0 usecs
[    0.878165] calling  shpcd_init+0x0/0x30 @ 1
[    0.878472] initcall shpcd_init+0x0/0x30 returned 0 after 6 usecs
[    0.878854] calling  pci_ep_cfs_init+0x0/0x100 @ 1
[    0.879192] initcall pci_ep_cfs_init+0x0/0x100 returned 0 after 27 usecs
[    0.879576] calling  pci_epc_init+0x0/0x20 @ 1
[    0.879833] initcall pci_epc_init+0x0/0x20 returned 0 after 1 usecs
[    0.880177] calling  pci_epf_init+0x0/0x50 @ 1
[    0.880468] initcall pci_epf_init+0x0/0x50 returned 0 after 7 usecs
[    0.880867] calling  dw_plat_pcie_driver_init+0x0/0x30 @ 1
[    0.881216] initcall dw_plat_pcie_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.881663] calling  imsttfb_init+0x0/0x150 @ 1
[    0.881969] initcall imsttfb_init+0x0/0x150 returned 0 after 10 usecs
[    0.882395] calling  asiliantfb_init+0x0/0x60 @ 1
[    0.882683] initcall asiliantfb_init+0x0/0x60 returned 0 after 5 usecs
[    0.883048] calling  vesafb_driver_init+0x0/0x30 @ 1
[    0.883328] initcall vesafb_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.883706] calling  efifb_driver_init+0x0/0x30 @ 1
[    0.884027] initcall efifb_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.884478] calling  simplefb_driver_init+0x0/0x30 @ 1
[    0.884919] initcall simplefb_driver_init+0x0/0x30 returned 0 after 7 usecs
[    0.885652] calling  intel_idle_init+0x0/0xd90 @ 1
[    0.885972] initcall intel_idle_init+0x0/0xd90 returned -19 after 6 usecs
[    0.886406] calling  ged_driver_init+0x0/0x30 @ 1
[    0.886715] initcall ged_driver_init+0x0/0x30 returned 0 after 6 usecs
[    0.887119] calling  acpi_ac_init+0x0/0x60 @ 1
[    0.887432] initcall acpi_ac_init+0x0/0x60 returned 0 after 23 usecs
[    0.887842] calling  acpi_button_driver_init+0x0/0x70 @ 1
[    0.888243] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    0.888746] ACPI: button: Power Button [PWRF]
[    0.889038] probe of LNXPWRBN:00 returned 0 after 845 usecs
[    0.889395] initcall acpi_button_driver_init+0x0/0x70 returned 0 after 1209 usecs
[    0.889810] calling  acpi_fan_driver_init+0x0/0x30 @ 1
[    0.890099] initcall acpi_fan_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.890512] calling  acpi_processor_driver_init+0x0/0xd0 @ 1
[    0.890856] probe of cpu0 returned 0 after 11 usecs
[    0.891140] probe of cpu1 returned 0 after 7 usecs
[    0.891420] probe of cpu2 returned 0 after 7 usecs
[    0.891708] probe of cpu3 returned 0 after 7 usecs
[    0.892346] initcall acpi_processor_driver_init+0x0/0xd0 returned 0 after 1506 usecs
[    0.892761] calling  acpi_thermal_init+0x0/0xa0 @ 1
[    0.893227] initcall acpi_thermal_init+0x0/0xa0 returned 0 after 183 usecs
[    0.893652] calling  acpi_battery_init+0x0/0x60 @ 1
[    0.893975] initcall acpi_battery_init+0x0/0x60 returned 0 after 11 usecs
[    0.894408] calling  bgrt_init+0x0/0xe0 @ 1
[    0.894688] initcall bgrt_init+0x0/0xe0 returned -19 after 1 usecs
[    0.895040] calling  acpi_aml_init+0x0/0xe0 @ 1
[    0.895315] initcall acpi_aml_init+0x0/0xe0 returned 0 after 9 usecs
[    0.895714] calling  erst_init+0x0/0x350 @ 1
[    0.896003] initcall erst_init+0x0/0x350 returned 0 after 0 usecs
[    0.896361] calling  gpio_clk_driver_init+0x0/0x30 @ 1
[    0.896694] initcall gpio_clk_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.897125] calling  gated_fixed_clk_driver_init+0x0/0x30 @ 1
[    0.897496] initcall gated_fixed_clk_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.897966] calling  fch_clk_driver_init+0x0/0x30 @ 1
[    0.898296] initcall fch_clk_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.898731] calling  plt_clk_driver_init+0x0/0x30 @ 1
[    0.899049] initcall plt_clk_driver_init+0x0/0x30 returned 0 after 1 usecs
[    0.899427] calling  virtio_mmio_init+0x0/0x30 @ 1
[    0.899706] initcall virtio_mmio_init+0x0/0x30 returned 0 after 3 usecs
[    0.900065] calling  virtio_pci_driver_init+0x0/0x30 @ 1
[    0.911049] ACPI: \_SB_.LNKC: Enabled at IRQ 10
[    0.911921] probe of 0000:00:03.0 returned 0 after 11538 usecs
[    0.923004] ACPI: \_SB_.LNKB: Enabled at IRQ 10
[    0.923893] probe of 0000:00:06.0 returned 0 after 11610 usecs
[    0.935396] probe of 0000:00:07.0 returned 0 after 11134 usecs
[    0.946789] probe of 0000:00:08.0 returned 0 after 11003 usecs
[    0.947144] initcall virtio_pci_driver_init+0x0/0x30 returned 0 after 46765 usecs
[    0.947561] calling  virtio_balloon_driver_init+0x0/0x30 @ 1
[    0.948442] probe of virtio3 returned 0 after 542 usecs
[    0.948744] initcall virtio_balloon_driver_init+0x0/0x30 returned 0 after 846 usecs
[    0.949164] calling  xenbus_probe_initcall+0x0/0xb0 @ 1
[    0.949462] initcall xenbus_probe_initcall+0x0/0xb0 returned -19 after 0 usecs
[    0.949900] calling  xenbus_init+0x0/0x60 @ 1
[    0.950192] initcall xenbus_init+0x0/0x60 returned -19 after 0 usecs
[    0.950611] calling  xenbus_backend_init+0x0/0x60 @ 1
[    0.950914] initcall xenbus_backend_init+0x0/0x60 returned -19 after 0 usecs
[    0.951318] calling  hyper_sysfs_init+0x0/0x250 @ 1
[    0.951750] initcall hyper_sysfs_init+0x0/0x250 returned -19 after 0 usecs
[    0.952203] calling  hypervisor_subsys_init+0x0/0x40 @ 1
[    0.952517] initcall hypervisor_subsys_init+0x0/0x40 returned -19 after 0 usecs
[    0.952917] calling  platform_driver_init+0x0/0x30 @ 1
[    0.953270] initcall platform_driver_init+0x0/0x30 returned 0 after 23 usecs
[    0.953702] calling  xen_late_init_mcelog+0x0/0x90 @ 1
[    0.954031] initcall xen_late_init_mcelog+0x0/0x90 returned -19 after 0 usecs
[    0.954490] calling  xen_acpi_processor_init+0x0/0x200 @ 1
[    0.954846] initcall xen_acpi_processor_init+0x0/0x200 returned -19 after 0 usecs
[    0.955320] calling  n_null_init+0x0/0x30 @ 1
[    0.955599] initcall n_null_init+0x0/0x30 returned 0 after 2 usecs
[    0.955944] calling  pty_init+0x0/0x400 @ 1
[    0.956240] initcall pty_init+0x0/0x400 returned 0 after 50 usecs
[    0.956594] calling  sysrq_init+0x0/0x90 @ 1
[    0.956847] initcall sysrq_init+0x0/0x90 returned 0 after 2 usecs
[    0.957185] calling  xen_hvc_init+0x0/0x200 @ 1
[    0.957447] initcall xen_hvc_init+0x0/0x200 returned -19 after 0 usecs
[    0.957806] calling  serial8250_init+0x0/0x130 @ 1
[    0.958110] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.958542] probe of 00:00:0 returned 0 after 2 usecs
[    0.958845] probe of 00:00:0.0 returned 0 after 1 usecs
[    0.959286] 00:00: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.959759] probe of 00:00 returned 0 after 1239 usecs
[    0.960131] probe of serial8250:0 returned 0 after 1 usecs
[    0.960489] probe of serial8250:0.1 returned 0 after 1 usecs
[    0.960860] probe of serial8250:0.2 returned 0 after 1 usecs
[    0.961222] probe of serial8250:0.3 returned 0 after 1 usecs
[    0.961612] probe of serial8250:0.4 returned 0 after 1 usecs
[    0.962001] probe of serial8250:0.5 returned 0 after 1 usecs
[    0.962588] probe of serial8250:0.6 returned 0 after 2 usecs
[    0.962957] probe of serial8250:0.7 returned 0 after 1 usecs
[    0.963303] probe of serial8250:0.8 returned 0 after 1 usecs
[    0.963654] probe of serial8250:0.9 returned 0 after 1 usecs
[    0.963996] probe of serial8250:0.10 returned 0 after 1 usecs
[    0.964362] probe of serial8250:0.11 returned 0 after 1 usecs
[    0.964715] probe of serial8250:0.12 returned 0 after 1 usecs
[    0.965066] probe of serial8250:0.13 returned 0 after 1 usecs
[    0.965420] probe of serial8250:0.14 returned 0 after 1 usecs
[    0.965773] probe of serial8250:0.15 returned 0 after 2 usecs
[    0.966124] probe of serial8250:0.16 returned 0 after 1 usecs
[    0.966514] probe of serial8250:0.17 returned 0 after 1 usecs
[    0.966881] probe of serial8250:0.18 returned 0 after 1 usecs
[    0.967259] probe of serial8250:0.19 returned 0 after 1 usecs
[    0.967660] probe of serial8250:0.20 returned 0 after 1 usecs
[    0.968075] probe of serial8250:0.21 returned 0 after 2 usecs
[    0.968663] probe of serial8250:0.22 returned 0 after 2 usecs
[    0.969068] probe of serial8250:0.23 returned 0 after 1 usecs
[    0.969469] probe of serial8250:0.24 returned 0 after 1 usecs
[    0.969868] probe of serial8250:0.25 returned 0 after 1 usecs
[    0.970270] probe of serial8250:0.26 returned 0 after 2 usecs
[    0.970714] probe of serial8250:0.27 returned 0 after 2 usecs
[    0.971113] probe of serial8250:0.28 returned 0 after 2 usecs
[    0.971481] probe of serial8250:0.29 returned 0 after 1 usecs
[    0.971831] probe of serial8250:0.30 returned 0 after 1 usecs
[    0.972182] probe of serial8250:0.31 returned 0 after 1 usecs
[    0.972539] probe of serial8250 returned 0 after 5 usecs
[    0.972886] initcall serial8250_init+0x0/0x130 returned 0 after 14776 usecs
[    0.973264] calling  serial_pci_driver_init+0x0/0x30 @ 1
[    0.973581] initcall serial_pci_driver_init+0x0/0x30 returned 0 after 17 usecs
[    0.973970] calling  pericom8250_pci_driver_init+0x0/0x30 @ 1
[    0.974295] initcall pericom8250_pci_driver_init+0x0/0x30 returned 0 after 6 usecs
[    0.974762] calling  max310x_uart_init+0x0/0x80 @ 1
[    0.975090] initcall max310x_uart_init+0x0/0x80 returned 0 after 11 usecs
[    0.975848] calling  sccnxp_uart_driver_init+0x0/0x30 @ 1
[    0.976156] initcall sccnxp_uart_driver_init+0x0/0x30 returned 0 after 3 usecs
[    0.976549] calling  init_kgdboc+0x0/0x90 @ 1
[    0.976823] probe of kgdboc returned 0 after 4 usecs
[    0.977109] initcall init_kgdboc+0x0/0x90 returned 0 after 303 usecs
[    0.977463] calling  random_sysctls_init+0x0/0x40 @ 1
[    0.977759] initcall random_sysctls_init+0x0/0x40 returned 0 after 5 usecs
[    0.978146] calling  ttyprintk_init+0x0/0x140 @ 1
[    0.978507] initcall ttyprintk_init+0x0/0x140 returned 0 after 34 usecs
[    0.978913] calling  virtio_console_init+0x0/0xf0 @ 1
[    0.983880] probe of virtio2 returned 0 after 4675 usecs
[    0.984243] initcall virtio_console_init+0x0/0xf0 returned 0 after 5047 usecs
[    0.984734] calling  hpet_init+0x0/0xa0 @ 1
[    0.985186] initcall hpet_init+0x0/0xa0 returned 0 after 60 usecs
[    0.985584] calling  agp_init+0x0/0x40 @ 1
[    0.985859] Linux agpgart interface v0.103
[    0.986136] initcall agp_init+0x0/0x40 returned 0 after 277 usecs
[    0.986727] calling  agp_amd64_mod_init+0x0/0x40 @ 1
[    0.987094] initcall agp_amd64_mod_init+0x0/0x40 returned -19 after 35 usecs
[    0.987536] calling  agp_intel_init+0x0/0x40 @ 1
[    0.987887] probe of 0000:00:00.0 returned 19 after 36 usecs
[    0.988258] initcall agp_intel_init+0x0/0x40 returned 0 after 409 usecs
[    0.988673] calling  agp_via_init+0x0/0x40 @ 1
[    0.988972] initcall agp_via_init+0x0/0x40 returned 0 after 4 usecs
[    0.989365] calling  init_tis+0x0/0xf0 @ 1
[    0.989651] initcall init_tis+0x0/0xf0 returned 0 after 12 usecs
[    0.990028] calling  crb_acpi_driver_init+0x0/0x30 @ 1
[    0.990382] initcall crb_acpi_driver_init+0x0/0x30 returned 0 after 10 usecs
[    0.990822] calling  cn_proc_init+0x0/0x60 @ 1
[    0.991117] initcall cn_proc_init+0x0/0x60 returned 0 after 0 usecs
[    0.991509] calling  topology_sysfs_init+0x0/0x40 @ 1
[    0.991858] initcall topology_sysfs_init+0x0/0x40 returned 0 after 18 usecs
[    0.992292] calling  cacheinfo_sysfs_init+0x0/0x40 @ 1
[    0.992852] initcall cacheinfo_sysfs_init+0x0/0x40 returned 0 after 227 usecs
[    0.993294] calling  devcoredump_init+0x0/0x20 @ 1
[    0.993609] initcall devcoredump_init+0x0/0x20 returned 0 after 4 usecs
[    0.994020] calling  loop_init+0x0/0x100 @ 1
[    0.995443] loop: module loaded
[    0.995673] initcall loop_init+0x0/0x100 returned 0 after 1361 usecs
[    0.996081] calling  xlblk_init+0x0/0x190 @ 1
[    0.996375] initcall xlblk_init+0x0/0x190 returned -19 after 0 usecs
[    0.996779] calling  tps65912_i2c_driver_init+0x0/0x30 @ 1
[    0.997144] initcall tps65912_i2c_driver_init+0x0/0x30 returned 0 after 8 usecs
[    0.997599] calling  tps65912_spi_driver_init+0x0/0x30 @ 1
[    0.997956] initcall tps65912_spi_driver_init+0x0/0x30 returned 0 after 4 usecs
[    0.998420] calling  twl_driver_init+0x0/0x30 @ 1
[    0.998730] initcall twl_driver_init+0x0/0x30 returned 0 after 2 usecs
[    0.999137] calling  twl4030_audio_driver_init+0x0/0x30 @ 1
[    0.999496] initcall twl4030_audio_driver_init+0x0/0x30 returned 0 after 6 usecs
[    0.999922] calling  twl6040_driver_init+0x0/0x30 @ 1
[    1.000213] initcall twl6040_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.000629] calling  da9063_i2c_driver_init+0x0/0x30 @ 1
[    1.000978] initcall da9063_i2c_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.001449] calling  max14577_i2c_init+0x0/0x30 @ 1
[    1.001795] initcall max14577_i2c_init+0x0/0x30 returned 0 after 4 usecs
[    1.002212] calling  max77693_i2c_driver_init+0x0/0x30 @ 1
[    1.002583] initcall max77693_i2c_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.003021] calling  adp5520_driver_init+0x0/0x30 @ 1
[    1.003310] initcall adp5520_driver_init+0x0/0x30 returned 0 after 1 usecs
[    1.003683] calling  crystal_cove_i2c_driver_init+0x0/0x30 @ 1
[    1.004052] initcall crystal_cove_i2c_driver_init+0x0/0x30 returned 0 after 3 usecs
[    1.004513] calling  cht_wc_driver_init+0x0/0x30 @ 1
[    1.004799] initcall cht_wc_driver_init+0x0/0x30 returned 0 after 2 usecs
[    1.005167] calling  e820_pmem_driver_init+0x0/0x30 @ 1
[    1.005845] initcall e820_pmem_driver_init+0x0/0x30 returned 0 after 11 usecs
[    1.006293] calling  hmem_init+0x0/0x40 @ 1
[    1.006596] initcall hmem_init+0x0/0x40 returned 0 after 2 usecs
[    1.006983] calling  udmabuf_dev_init+0x0/0xc0 @ 1
[    1.007432] initcall udmabuf_dev_init+0x0/0xc0 returned 0 after 135 usecs
[    1.007855] calling  init_sd+0x0/0x140 @ 1
[    1.008137] initcall init_sd+0x0/0x140 returned 0 after 10 usecs
[    1.008520] calling  init_sr+0x0/0x60 @ 1
[    1.008791] initcall init_sr+0x0/0x60 returned 0 after 2 usecs
[    1.009157] calling  init_sg+0x0/0x200 @ 1
[    1.009403] initcall init_sg+0x0/0x200 returned 0 after 6 usecs
[    1.009730] calling  piix_init+0x0/0x40 @ 1
[    1.010014] ata_piix 0000:00:01.1: version 2.13
[    1.010959] scsi host0: ata_piix
[    1.011379] scsi host1: ata_piix
[    1.011604] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc5a0 irq 14 lpm-pol 0
[    1.012024] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc5a8 irq 15 lpm-pol 0
[    1.012470] probe of 0000:00:01.1 returned 0 after 2485 usecs
[    1.012978] initcall piix_init+0x0/0x40 returned 0 after 2996 usecs
[    1.013373] calling  sis_pci_driver_init+0x0/0x30 @ 1
[    1.013715] initcall sis_pci_driver_init+0x0/0x30 returned 0 after 12 usecs
[    1.014145] calling  ata_generic_pci_driver_init+0x0/0x30 @ 1
[    1.014537] initcall ata_generic_pci_driver_init+0x0/0x30 returned 0 after 9 usecs
[    1.015008] calling  blackhole_netdev_init+0x0/0x80 @ 1
[    1.015358] initcall blackhole_netdev_init+0x0/0x80 returned 0 after 13 usecs
[    1.015801] calling  fixed_mdio_bus_init+0x0/0xe0 @ 1
[    1.016141] probe of Fixed MDIO bus returned 0 after 3 usecs
[    1.016549] initcall fixed_mdio_bus_init+0x0/0xe0 returned 0 after 419 usecs
[    1.016934] calling  tun_init+0x0/0xd0 @ 1
[    1.017202] tun: Universal TUN/TAP device driver, 1.6
[    1.017643] initcall tun_init+0x0/0xd0 returned 0 after 440 usecs
[    1.018082] calling  ppp_init+0x0/0x120 @ 1
[    1.018495] PPP generic driver version 2.4.2
[    1.018844] initcall ppp_init+0x0/0x120 returned 0 after 348 usecs
[    1.019233] calling  netif_init+0x0/0x80 @ 1
[    1.019514] initcall netif_init+0x0/0x80 returned -19 after 0 usecs
[    1.019928] calling  vfio_init+0x0/0xa0 @ 1
[    1.020324] VFIO - User Level meta-driver version: 0.3
[    1.020658] initcall vfio_init+0x0/0xa0 returned 0 after 426 usecs
[    1.021058] calling  vfio_iommu_type1_init+0x0/0x20 @ 1
[    1.021393] initcall vfio_iommu_type1_init+0x0/0x20 returned 0 after 0 usecs
[    1.021831] calling  vfio_pci_core_init+0x0/0x20 @ 1
[    1.022158] initcall vfio_pci_core_init+0x0/0x20 returned 0 after 3 usecs
[    1.022573] calling  vfio_pci_init+0x0/0x1c0 @ 1
[    1.022884] initcall vfio_pci_init+0x0/0x1c0 returned 0 after 12 usecs
[    1.023288] calling  cdrom_init+0x0/0x20 @ 1
[    1.023553] initcall cdrom_init+0x0/0x20 returned 0 after 5 usecs
[    1.023887] calling  dwc2_platform_driver_init+0x0/0x30 @ 1
[    1.024202] initcall dwc2_platform_driver_init+0x0/0x30 returned 0 after 8 usecs
[    1.024601] calling  ehci_hcd_init+0x0/0x100 @ 1
[    1.024867] initcall ehci_hcd_init+0x0/0x100 returned 0 after 4 usecs
[    1.025232] calling  ehci_pci_init+0x0/0x70 @ 1
[    1.025500] initcall ehci_pci_init+0x0/0x70 returned 0 after 10 usecs
[    1.025855] calling  ehci_platform_init+0x0/0x50 @ 1
[    1.026142] initcall ehci_platform_init+0x0/0x50 returned 0 after 2 usecs
[    1.026587] calling  ohci_hcd_mod_init+0x0/0x80 @ 1
[    1.026906] initcall ohci_hcd_mod_init+0x0/0x80 returned 0 after 1 usecs
[    1.027328] calling  ohci_pci_init+0x0/0x70 @ 1
[    1.027644] initcall ohci_pci_init+0x0/0x70 returned 0 after 8 usecs
[    1.028044] calling  ohci_platform_init+0x0/0x50 @ 1
[    1.028398] initcall ohci_platform_init+0x0/0x50 returned 0 after 7 usecs
[    1.028832] calling  uhci_hcd_init+0x0/0x140 @ 1
[    1.029150] initcall uhci_hcd_init+0x0/0x140 returned 0 after 11 usecs
[    1.029617] calling  xhci_hcd_init+0x0/0x40 @ 1
[    1.029919] initcall xhci_hcd_init+0x0/0x40 returned 0 after 7 usecs
[    1.030330] calling  xhci_pci_init+0x0/0x80 @ 1
[    1.041991] xhci_hcd 0000:00:04.0: xHCI Host Controller
[    1.042375] xhci_hcd 0000:00:04.0: new USB bus registered, assigned bus number 1
[    1.042954] xhci_hcd 0000:00:04.0: hcc params 0x00087001 hci version 0x100 quirks 0x0000000000000010
[    1.043805] xhci_hcd 0000:00:04.0: xHCI Host Controller
[    1.044121] xhci_hcd 0000:00:04.0: new USB bus registered, assigned bus number 2
[    1.044530] xhci_hcd 0000:00:04.0: Host supports USB 3.0 SuperSpeed
[    1.044983] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.15
[    1.045497] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.045946] usb usb1: Product: xHCI Host Controller
[    1.046263] usb usb1: Manufacturer: Linux 6.15.0-rc5+ xhci-hcd
[    1.046647] usb usb1: SerialNumber: 0000:00:04.0
[    1.047061] hub 1-0:1.0: USB hub found
[    1.047347] hub 1-0:1.0: 15 ports detected
[    1.047842] probe of 1-0:1.0 returned 0 after 783 usecs
[    1.048152] probe of usb1 returned 0 after 1113 usecs
[    1.048451] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.048935] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.15
[    1.049435] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.049876] usb usb2: Product: xHCI Host Controller
[    1.050189] usb usb2: Manufacturer: Linux 6.15.0-rc5+ xhci-hcd
[    1.050584] usb usb2: SerialNumber: 0000:00:04.0
[    1.050947] hub 2-0:1.0: USB hub found
[    1.051293] hub 2-0:1.0: 15 ports detected
[    1.052120] probe of 2-0:1.0 returned 0 after 1174 usecs
[    1.052471] probe of usb2 returned 0 after 1538 usecs
[    1.052771] probe of 0000:00:04.0 returned 0 after 22135 usecs
[    1.053110] initcall xhci_pci_init+0x0/0x80 returned 0 after 22481 usecs
[    1.053484] calling  kgdbdbgp_start_thread+0x0/0x70 @ 1
[    1.053785] initcall kgdbdbgp_start_thread+0x0/0x70 returned 0 after 2 usecs
[    1.054173] calling  i8042_init+0x0/0x750 @ 1
[    1.054525] probe of 00:01 returned 0 after 9 usecs
[    1.054810] probe of 00:02 returned 0 after 2 usecs
[    1.055088] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[    1.055942] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.056229] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.056553] probe of i8042 returned 0 after 1016 usecs
[    1.056847] initcall i8042_init+0x0/0x750 returned 0 after 2356 usecs
[    1.057220] calling  mousedev_init+0x0/0xa0 @ 1
[    1.057540] mousedev: PS/2 mouse device common for all mice
[    1.057857] initcall mousedev_init+0x0/0xa0 returned 0 after 376 usecs
[    1.058221] calling  evdev_init+0x0/0x20 @ 1
[    1.058547] initcall evdev_init+0x0/0x20 returned 0 after 29 usecs
[    1.058944] calling  atkbd_init+0x0/0x40 @ 1
[    1.059242] initcall atkbd_init+0x0/0x40 returned 0 after 10 usecs
[    1.059628] calling  elants_i2c_driver_init+0x0/0x30 @ 1
[    1.060185] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    1.060730] initcall elants_i2c_driver_init+0x0/0x30 returned 0 after 760 usecs
[    1.061130] calling  uinput_misc_init+0x0/0x20 @ 1
[    1.061410] probe of serio0 returned 0 after 1436 usecs
[    1.061847] probe of serio1 returned 19 after 124 usecs
[    1.062185] initcall uinput_misc_init+0x0/0x20 returned 0 after 781 usecs
[    1.062606] calling  cmos_init+0x0/0x90 @ 1
[    1.062875] rtc_cmos 00:04: RTC can wake from S4
[    1.063372] probe of alarmtimer.0.auto returned 0 after 2 usecs
[    1.063715] rtc_cmos 00:04: registered as rtc0
[    1.064005] rtc_cmos 00:04: setting system clock to 2025-07-03T01:18:13 UTC (1751505493)
[    1.064474] rtc_cmos 00:04: alarms up to one day, y3k, 242 bytes nvram
[    1.064837] probe of 00:04 returned 0 after 1967 usecs
[    1.065139] initcall cmos_init+0x0/0x90 returned 0 after 2272 usecs
[    1.065869] calling  i2c_dev_init+0x0/0xc0 @ 1
[    1.066161] i2c_dev: i2c /dev entries driver
[    1.066520] initcall i2c_dev_init+0x0/0xc0 returned 0 after 359 usecs
[    1.066882] calling  restart_poweroff_driver_init+0x0/0x30 @ 1
[    1.067235] initcall restart_poweroff_driver_init+0x0/0x30 returned 0 after 6 usecs
[    1.067684] calling  thermal_throttle_init_device+0x0/0x60 @ 1
[    1.068008] initcall thermal_throttle_init_device+0x0/0x60 returned 0 after 0 usecs
[    1.068587] calling  watchdog_gov_noop_register+0x0/0x20 @ 1
[    1.068998] initcall watchdog_gov_noop_register+0x0/0x20 returned 0 after 4 usecs
[    1.069484] calling  dm_init+0x0/0x90 @ 1
[    1.069755] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    1.070505] device-mapper: uevent: version 1.0.3
[    1.070878] device-mapper: ioctl: 4.49.0-ioctl (2025-01-17) initialised: dm-devel@lists.linux.dev
[    1.071427] initcall dm_init+0x0/0x90 returned 0 after 1673 usecs
[    1.071815] calling  ghes_edac_init+0x0/0x470 @ 1
[    1.072122] initcall ghes_edac_init+0x0/0x470 returned -19 after 4 usecs
[    1.072501] calling  amd_pstate_init+0x0/0x330 @ 1
[    1.072811] initcall amd_pstate_init+0x0/0x330 returned -19 after 1 usecs
[    1.073235] calling  intel_pstate_init+0x0/0x8e0 @ 1
[    1.073558] intel_pstate: CPU model not supported
[    1.073866] initcall intel_pstate_init+0x0/0x8e0 returned -19 after 308 usecs
[    1.074312] calling  sysfb_init+0x0/0x110 @ 1
[    1.074826] vesafb: mode is 640x480x32, linelength=2560, pages=0
[    1.075211] vesafb: scrolling: redraw
[    1.075459] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.075831] vesafb: framebuffer at 0xf4000000, mapped to 0x00000000337eb07b, using 1216k, total 1216k
[    1.076841] Console: switching to colour frame buffer device 80x30
[    1.077284] fb0: VESA VGA frame buffer device
[    1.077547] probe of vesa-framebuffer.0 returned 0 after 2728 usecs
[    1.077945] initcall sysfb_init+0x0/0x110 returned 0 after 3166 usecs
[    1.078374] calling  esrt_sysfs_init+0x0/0x330 @ 1
[    1.078692] initcall esrt_sysfs_init+0x0/0x330 returned -38 after 0 usecs
[    1.079120] calling  pmc_atom_init+0x0/0x2b0 @ 1
[    1.079399] initcall pmc_atom_init+0x0/0x2b0 returned -19 after 3 usecs
[    1.079766] calling  rproc_virtio_driver_init+0x0/0x30 @ 1
[    1.080087] initcall rproc_virtio_driver_init+0x0/0x30 returned 0 after 9 usecs
[    1.080484] calling  vmgenid_plaform_driver_init+0x0/0x30 @ 1
[    1.080807] initcall vmgenid_plaform_driver_init+0x0/0x30 returned 0 after 3 usecs
[    1.081212] calling  extcon_class_init+0x0/0x60 @ 1
[    1.081501] initcall extcon_class_init+0x0/0x60 returned 0 after 3 usecs
[    1.081870] calling  binder_init+0x0/0x280 @ 1
[    1.082209] initcall binder_init+0x0/0x280 returned 0 after 80 usecs
[    1.082636] calling  sock_diag_init+0x0/0x40 @ 1
[    1.082930] initcall sock_diag_init+0x0/0x40 returned 0 after 11 usecs
[    1.083296] calling  init_net_drop_monitor+0x0/0x120 @ 1
[    1.083598] drop_monitor: Initializing network drop monitor service
[    1.083959] initcall init_net_drop_monitor+0x0/0x120 returned 0 after 361 usecs
[    1.084353] calling  blackhole_init+0x0/0x20 @ 1
[    1.084617] initcall blackhole_init+0x0/0x20 returned 0 after 1 usecs
[    1.085004] calling  gre_offload_init+0x0/0x70 @ 1
[    1.085447] initcall gre_offload_init+0x0/0x70 returned 0 after 0 usecs
[    1.085894] calling  sysctl_ipv4_init+0x0/0x80 @ 1
[    1.086251] initcall sysctl_ipv4_init+0x0/0x80 returned 0 after 44 usecs
[    1.086686] calling  cubictcp_register+0x0/0x90 @ 1
[    1.087014] initcall cubictcp_register+0x0/0x90 returned 0 after 9 usecs
[    1.087427] calling  inet6_init+0x0/0x3f0 @ 1
[    1.087737] NET: Registered PF_INET6 protocol family
[    1.092128] Segment Routing with IPv6
[    1.092402] In-situ OAM (IOAM) with IPv6
[    1.092676] initcall inet6_init+0x0/0x3f0 returned 0 after 4966 usecs
[    1.093031] calling  packet_init+0x0/0xa0 @ 1
[    1.093286] NET: Registered PF_PACKET protocol family
[    1.093570] initcall packet_init+0x0/0xa0 returned 0 after 288 usecs
[    1.093921] calling  strp_dev_init+0x0/0x40 @ 1
[    1.094365] initcall strp_dev_init+0x0/0x40 returned 0 after 181 usecs
[    1.094776] calling  dcbnl_init+0x0/0x40 @ 1
[    1.095062] initcall dcbnl_init+0x0/0x40 returned 0 after 3 usecs
[    1.096084] calling  init_dns_resolver+0x0/0x100 @ 1
[    1.096412] Key type dns_resolver registered
[    1.096700] initcall init_dns_resolver+0x0/0x100 returned 0 after 293 usecs
[    1.097143] calling  handshake_init+0x0/0xb0 @ 1
[    1.097462] initcall handshake_init+0x0/0xb0 returned 0 after 13 usecs
[    1.097871] calling  pm_check_save_msr+0x0/0xd0 @ 1
[    1.098201] initcall pm_check_save_msr+0x0/0xd0 returned 0 after 8 usecs
[    1.098641] calling  mcheck_init_device+0x0/0x160 @ 1
[    1.099228] initcall mcheck_init_device+0x0/0x160 returned 0 after 254 usecs
[    1.099638] calling  dev_mcelog_init_device+0x0/0x100 @ 1
[    1.099987] initcall dev_mcelog_init_device+0x0/0x100 returned 0 after 38 usecs
[    1.100439] calling  kernel_do_mounts_initrd_sysctls_init+0x0/0x40 @ 1
[    1.100817] initcall kernel_do_mounts_initrd_sysctls_init+0x0/0x40 returned 0 after 2 usecs
[    1.101274] calling  tboot_late_init+0x0/0x330 @ 1
[    1.101579] initcall tboot_late_init+0x0/0x330 returned 0 after 0 usecs
[    1.102053] calling  intel_epb_init+0x0/0xa0 @ 1
[    1.102442] initcall intel_epb_init+0x0/0xa0 returned -19 after 0 usecs
[    1.102858] calling  mcheck_late_init+0x0/0x90 @ 1
[    1.103175] initcall mcheck_late_init+0x0/0x90 returned 0 after 5 usecs
[    1.103610] calling  severities_debugfs_init+0x0/0x40 @ 1
[    1.103959] initcall severities_debugfs_init+0x0/0x40 returned 0 after 0 usecs
[    1.104426] calling  microcode_init+0x0/0x1f0 @ 1
[    1.104751] initcall microcode_init+0x0/0x1f0 returned -22 after 1 usecs
[    1.105162] calling  resctrl_arch_late_init+0x0/0x5c0 @ 1
[    1.105506] initcall resctrl_arch_late_init+0x0/0x5c0 returned -19 after 3 usecs
[    1.105955] calling  cpu_init_debugfs+0x0/0xf0 @ 1
[    1.106280] initcall cpu_init_debugfs+0x0/0xf0 returned 0 after 11 usecs
[    1.106719] calling  sld_mitigate_sysctl_init+0x0/0x40 @ 1
[    1.107073] initcall sld_mitigate_sysctl_init+0x0/0x40 returned 0 after 2 usecs
[    1.107528] calling  hpet_insert_resource+0x0/0x40 @ 1
[    1.107857] initcall hpet_insert_resource+0x0/0x40 returned 1 after 2 usecs
[    1.108283] calling  start_sync_check_timer+0x0/0x70 @ 1
[    1.108621] initcall start_sync_check_timer+0x0/0x70 returned 0 after 1 usecs
[    1.109060] calling  update_mp_table+0x0/0x610 @ 1
[    1.109367] initcall update_mp_table+0x0/0x610 returned 0 after 0 usecs
[    1.109776] calling  lapic_insert_resource+0x0/0x60 @ 1
[    1.110113] initcall lapic_insert_resource+0x0/0x60 returned 0 after 1 usecs
[    1.110556] calling  print_ipi_mode+0x0/0x40 @ 1
[    1.110856] IPI shorthand broadcast: enabled
[    1.111106] initcall print_ipi_mode+0x0/0x40 returned 0 after 251 usecs
[    1.111464] calling  print_ICs+0x0/0x1e0 @ 1
[    1.111732] initcall print_ICs+0x0/0x1e0 returned 0 after 1 usecs
[    1.112136] calling  setup_efi_kvm_sev_migration+0x0/0x1c0 @ 1
[    1.112507] initcall setup_efi_kvm_sev_migration+0x0/0x1c0 returned 0 after 0 usecs
[    1.112975] calling  create_tlb_single_page_flush_ceiling+0x0/0x40 @ 1
[    1.113384] initcall create_tlb_single_page_flush_ceiling+0x0/0x40 returned 0 after 3 usecs
[    1.113893] calling  pat_memtype_list_init+0x0/0x50 @ 1
[    1.114230] initcall pat_memtype_list_init+0x0/0x50 returned 0 after 0 usecs
[    1.114646] calling  create_init_pkru_value+0x0/0x50 @ 1
[    1.114947] initcall create_init_pkru_value+0x0/0x50 returned 0 after 2 usecs
[    1.115334] calling  kernel_panic_sysctls_init+0x0/0x40 @ 1
[    1.115647] initcall kernel_panic_sysctls_init+0x0/0x40 returned 0 after 2 usecs
[    1.116047] calling  kernel_panic_sysfs_init+0x0/0x30 @ 1
[    1.116352] initcall kernel_panic_sysfs_init+0x0/0x30 returned 0 after 2 usecs
[    1.116744] calling  kernel_exit_sysctls_init+0x0/0x40 @ 1
[    1.117060] initcall kernel_exit_sysctls_init+0x0/0x40 returned 0 after 0 usecs
[    1.117521] calling  kernel_exit_sysfs_init+0x0/0x30 @ 1
[    1.117864] initcall kernel_exit_sysfs_init+0x0/0x30 returned 0 after 1 usecs
[    1.118313] calling  param_sysfs_builtin_init+0x0/0x200 @ 1
[    1.119895] initcall param_sysfs_builtin_init+0x0/0x200 returned 0 after 1080 usecs
[    1.120336] calling  reboot_ksysfs_init+0x0/0x90 @ 1
[    1.120634] initcall reboot_ksysfs_init+0x0/0x90 returned 0 after 7 usecs
[    1.121013] calling  sched_core_sysctl_init+0x0/0x40 @ 1
[    1.121318] initcall sched_core_sysctl_init+0x0/0x40 returned 0 after 2 usecs
[    1.121713] calling  sched_fair_sysctl_init+0x0/0x40 @ 1
[    1.122053] initcall sched_fair_sysctl_init+0x0/0x40 returned 0 after 1 usecs
[    1.122507] calling  sched_rt_sysctl_init+0x0/0x40 @ 1
[    1.122844] initcall sched_rt_sysctl_init+0x0/0x40 returned 0 after 1 usecs
[    1.123279] calling  sched_dl_sysctl_init+0x0/0x40 @ 1
[    1.123581] initcall sched_dl_sysctl_init+0x0/0x40 returned 0 after 0 usecs
[    1.123960] calling  sched_clock_init_late+0x0/0xb0 @ 1
[    1.124276] sched_clock: Marking stable (1056184827, 66317418)->(1227386922, -104884677)
[    1.124857] initcall sched_clock_init_late+0x0/0xb0 returned 0 after 581 usecs
[    1.125306] calling  sched_init_debug+0x0/0x330 @ 1
[    1.126054] initcall sched_init_debug+0x0/0x330 returned 0 after 24 usecs
[    1.126492] calling  cpu_latency_qos_init+0x0/0x60 @ 1
[    1.126892] initcall cpu_latency_qos_init+0x0/0x60 returned 0 after 66 usecs
[    1.127332] calling  pm_debugfs_init+0x0/0x40 @ 1
[    1.127622] initcall pm_debugfs_init+0x0/0x40 returned 0 after 0 usecs
[    1.127983] calling  printk_late_init+0x0/0x180 @ 1
[    1.128284] initcall printk_late_init+0x0/0x180 returned 0 after 5 usecs
[    1.128671] calling  init_srcu_module_notifier+0x0/0x50 @ 1
[    1.128983] initcall init_srcu_module_notifier+0x0/0x50 returned 0 after 1 usecs
[    1.129393] calling  swiotlb_create_default_debugfs+0x0/0xb0 @ 1
[    1.129744] initcall swiotlb_create_default_debugfs+0x0/0xb0 returned 0 after 2 usecs
[    1.130226] calling  tk_debug_sleep_time_init+0x0/0x40 @ 1
[    1.130567] initcall tk_debug_sleep_time_init+0x0/0x40 returned 0 after 0 usecs
[    1.130980] calling  bpf_ksym_iter_register+0x0/0x30 @ 1
[    1.131276] initcall bpf_ksym_iter_register+0x0/0x30 returned 0 after 0 usecs
[    1.131659] calling  kernel_acct_sysctls_init+0x0/0x40 @ 1
[    1.131980] initcall kernel_acct_sysctls_init+0x0/0x40 returned 0 after 2 usecs
[    1.132371] calling  kexec_core_sysctl_init+0x0/0x40 @ 1
[    1.132669] initcall kexec_core_sysctl_init+0x0/0x40 returned 0 after 2 usecs
[    1.133052] calling  bpf_rstat_kfunc_init+0x0/0x30 @ 1
[    1.133348] initcall bpf_rstat_kfunc_init+0x0/0x30 returned 0 after 1 usecs
[    1.133756] calling  debugfs_kprobe_init+0x0/0x90 @ 1
[    1.134081] initcall debugfs_kprobe_init+0x0/0x90 returned 0 after 2 usecs
[    1.134526] calling  kernel_delayacct_sysctls_init+0x0/0x40 @ 1
[    1.135032] initcall kernel_delayacct_sysctls_init+0x0/0x40 returned 0 after 135 usecs
[    1.135651] calling  taskstats_init+0x0/0x50 @ 1
[    1.135978] registered taskstats version 1
[    1.136252] initcall taskstats_init+0x0/0x50 returned 0 after 282 usecs
[    1.136659] calling  ftrace_sysctl_init+0x0/0x30 @ 1
[    1.136982] initcall ftrace_sysctl_init+0x0/0x30 returned 0 after 2 usecs
[    1.137403] calling  init_hwlat_tracer+0x0/0x130 @ 1
[    1.137966] initcall init_hwlat_tracer+0x0/0x130 returned 0 after 243 usecs
[    1.138437] calling  bpf_key_sig_kfuncs_init+0x0/0x20 @ 1
[    1.138787] initcall bpf_key_sig_kfuncs_init+0x0/0x20 returned 0 after 3 usecs
[    1.139240] calling  bpf_kprobe_multi_kfuncs_init+0x0/0x20 @ 1
[    1.139622] initcall bpf_kprobe_multi_kfuncs_init+0x0/0x20 returned 0 after 1 usecs
[    1.140057] calling  kdb_ftrace_register+0x0/0x20 @ 1
[    1.140346] initcall kdb_ftrace_register+0x0/0x20 returned 0 after 3 usecs
[    1.140717] calling  bpf_global_ma_init+0x0/0x30 @ 1
[    1.141019] initcall bpf_global_ma_init+0x0/0x30 returned 0 after 23 usecs
[    1.141393] calling  bpf_syscall_sysctl_init+0x0/0x40 @ 1
[    1.141695] initcall bpf_syscall_sysctl_init+0x0/0x40 returned 0 after 2 usecs
[    1.142083] calling  unbound_reg_init+0x0/0x30 @ 1
[    1.142370] initcall unbound_reg_init+0x0/0x30 returned 0 after 3 usecs
[    1.142779] calling  kfunc_init+0x0/0x100 @ 1
[    1.143063] initcall kfunc_init+0x0/0x100 returned 0 after 1 usecs
[    1.143401] calling  bpf_map_iter_init+0x0/0x50 @ 1
[    1.143676] initcall bpf_map_iter_init+0x0/0x50 returned 0 after 0 usecs
[    1.144038] calling  init_subsystem+0x0/0x30 @ 1
[    1.144311] initcall init_subsystem+0x0/0x30 returned 0 after 1 usecs
[    1.144660] calling  task_iter_init+0x0/0xe0 @ 1
[    1.144924] initcall task_iter_init+0x0/0xe0 returned 0 after 1 usecs
[    1.145274] calling  bpf_prog_iter_init+0x0/0x30 @ 1
[    1.145556] initcall bpf_prog_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.145923] calling  bpf_link_iter_init+0x0/0x30 @ 1
[    1.146204] initcall bpf_link_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.146609] calling  init_trampolines+0x0/0x30 @ 1
[    1.146918] initcall init_trampolines+0x0/0x30 returned 0 after 2 usecs
[    1.147329] calling  rqspinlock_register_kfuncs+0x0/0x30 @ 1
[    1.147695] initcall rqspinlock_register_kfuncs+0x0/0x30 returned 0 after 0 usecs
[    1.148150] calling  kfunc_init+0x0/0x30 @ 1
[    1.148432] initcall kfunc_init+0x0/0x30 returned 0 after 0 usecs
[    1.148810] calling  bpf_cgroup_iter_init+0x0/0x30 @ 1
[    1.149137] initcall bpf_cgroup_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.149570] calling  cpumask_kfunc_init+0x0/0xb0 @ 1
[    1.149852] initcall cpumask_kfunc_init+0x0/0xb0 returned 0 after 2 usecs
[    1.150219] calling  crypto_kfunc_init+0x0/0xb0 @ 1
[    1.150531] initcall crypto_kfunc_init+0x0/0xb0 returned 0 after 0 usecs
[    1.150948] calling  bpf_kmem_cache_iter_init+0x0/0x30 @ 1
[    1.151272] initcall bpf_kmem_cache_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.151668] calling  load_system_certificate_list+0x0/0x40 @ 1
[    1.152133] Loading compiled-in X.509 certificates
[    1.152980] Loaded X.509 cert 'Build time autogenerated kernel key: 63dcfa1705afed8feebbcaee12f1a32f27ca64ce'
[    1.153510] initcall load_system_certificate_list+0x0/0x40 returned 0 after 1377 usecs
[    1.153986] calling  vmstat_late_init+0x0/0x30 @ 1
[    1.154352] initcall vmstat_late_init+0x0/0x30 returned 0 after 0 usecs
[    1.154773] calling  fault_around_debugfs+0x0/0x40 @ 1
[    1.155131] initcall fault_around_debugfs+0x0/0x40 returned 0 after 27 usecs
[    1.155918] calling  slab_sysfs_init+0x0/0x110 @ 1
[    1.157231] initcall slab_sysfs_init+0x0/0x110 returned 0 after 1041 usecs
[    1.157657] calling  max_swapfiles_check+0x0/0x20 @ 1
[    1.157981] initcall max_swapfiles_check+0x0/0x20 returned 0 after 0 usecs
[    1.158430] calling  zswap_init+0x0/0x30 @ 1
[    1.158732] initcall zswap_init+0x0/0x30 returned 0 after 0 usecs
[    1.159115] calling  hugetlb_vmemmap_init+0x0/0x90 @ 1
[    1.159458] initcall hugetlb_vmemmap_init+0x0/0x90 returned 0 after 9 usecs
[    1.159887] calling  mempolicy_sysfs_init+0x0/0x2b0 @ 1
[    1.160240] initcall mempolicy_sysfs_init+0x0/0x2b0 returned 0 after 3 usecs
[    1.160649] calling  memory_tier_late_init+0x0/0xc0 @ 1
[    1.160972] Demotion targets for Node 0: null
[    1.161225] initcall memory_tier_late_init+0x0/0xc0 returned 0 after 280 usecs
[    1.161621] calling  split_huge_pages_debugfs+0x0/0x40 @ 1
[    1.161927] initcall split_huge_pages_debugfs+0x0/0x40 returned 0 after 2 usecs
[    1.162331] calling  check_early_ioremap_leak+0x0/0x60 @ 1
[    1.162682] initcall check_early_ioremap_leak+0x0/0x60 returned 0 after 2 usecs
[    1.163129] calling  set_hardened_usercopy+0x0/0x40 @ 1
[    1.163465] initcall set_hardened_usercopy+0x0/0x40 returned 1 after 2 usecs
[    1.163872] calling  mg_debugfs_init+0x0/0x40 @ 1
[    1.164143] initcall mg_debugfs_init+0x0/0x40 returned 0 after 1 usecs
[    1.164502] calling  fscrypt_init+0x0/0xf0 @ 1
[    1.164974] Key type .fscrypt registered
[    1.165213] Key type fscrypt-provisioning registered
[    1.165536] initcall fscrypt_init+0x0/0xf0 returned 0 after 777 usecs
[    1.165944] calling  pstore_init+0x0/0x40 @ 1
[    1.166234] initcall pstore_init+0x0/0x40 returned 0 after 5 usecs
[    1.166620] calling  init_root_keyring+0x0/0x20 @ 1
[    1.166911] initcall init_root_keyring+0x0/0x20 returned 0 after 7 usecs
[    1.167281] calling  init_trusted+0x0/0x1c0 @ 1
[    1.167548] initcall init_trusted+0x0/0x1c0 returned 0 after 5 usecs
[    1.167897] calling  init_encrypted+0x0/0x100 @ 1
[    1.170835] ata1.00: ATA-7: QEMU HARDDISK, 2.5+, max UDMA/100
[    1.171202] ata1.00: 83886080 sectors, multi 16: LBA48 
[    1.171538] ata1.01: ATA-7: QEMU HARDDISK, 2.5+, max UDMA/100
[    1.171916] ata1.01: 104857600 sectors, multi 16: LBA48 
[    1.172939] scsi 0:0:0:0: Direct-Access     ATA      QEMU HARDDISK    2.5+ PQ: 0 ANSI: 5
[    1.172952] calling  cryptd_init+0x0/0xff0 [cryptd] @ 103
[    1.173519] probe of 0:0:0:0 returned 19 after 6 usecs
[    1.174191] cryptd: max_cpu_qlen set to 1000
[    1.174205] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.174502] initcall cryptd_init+0x0/0xff0 [cryptd] returned 0 after 709 usecs
[    1.174877] sd 0:0:0:0: [sda] 83886080 512-byte logical blocks: (42.9 GB/40.0 GiB)
[    1.175780] sd 0:0:0:0: [sda] Write Protect is off
[    1.176093] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.176442] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.176934] scsi 0:0:1:0: Direct-Access     ATA      QEMU HARDDISK    2.5+ PQ: 0 ANSI: 5
[    1.177382] sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[    1.177819] probe of 0:0:1:0 returned 19 after 2 usecs
[    1.178256] sd 0:0:1:0: [sdb] 104857600 512-byte logical blocks: (53.7 GB/50.0 GiB)
[    1.178267] sd 0:0:1:0: Attached scsi generic sg1 type 0
[    1.178776] sd 0:0:1:0: [sdb] Write Protect is off
[    1.179407] sd 0:0:1:0: [sdb] Mode Sense: 00 3a 00 00
[    1.179956] sd 0:0:1:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.180455] sd 0:0:1:0: [sdb] Preferred minimum I/O size 512 bytes
[    1.202968]  sda: sda1 sda2
[    1.204067] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.204890] probe of 0:0:0:0 returned 0 after 30717 usecs
[    1.208114] sd 0:0:1:0: [sdb] Attached SCSI disk
[    1.208938] probe of 0:0:1:0 returned 0 after 30731 usecs
[    1.214711] calling  aesni_init+0x0/0xff0 [aesni_intel] @ 103
[    1.216324] initcall aesni_init+0x0/0xff0 [aesni_intel] returned 0 after 122 usecs
[    1.231674] Key type encrypted registered
[    1.232180] initcall init_encrypted+0x0/0x100 returned 0 after 15979 usecs
[    1.232931] calling  init_profile_hash+0x0/0xa0 @ 1
[    1.233387] initcall init_profile_hash+0x0/0xa0 returned 0 after 0 usecs
[    1.233983] calling  integrity_fs_init+0x0/0x70 @ 1
[    1.234468] initcall integrity_fs_init+0x0/0x70 returned 0 after 5 usecs
[    1.235129] calling  init_ima+0x0/0xf0 @ 1
[    1.235533] ima: No TPM chip found, activating TPM-bypass!
[    1.236124] ima: Allocated hash algorithm: sha1
[    1.236682] ima: No architecture policies found
[    1.237250] initcall init_ima+0x0/0xf0 returned 0 after 1730 usecs
[    1.237960] calling  init_evm+0x0/0x140 @ 1
[    1.238496] evm: Initialising EVM extended attributes:
[    1.239360] evm: security.selinux
[    1.239897] evm: security.SMACK64 (disabled)
[    1.240574] evm: security.SMACK64EXEC (disabled)
[    1.241282] evm: security.SMACK64TRANSMUTE (disabled)
[    1.241971] evm: security.SMACK64MMAP (disabled)
[    1.242592] evm: security.apparmor
[    1.243061] evm: security.ima
[    1.243483] evm: security.capability
[    1.243965] evm: HMAC attrs: 0x1
[    1.244417] initcall init_evm+0x0/0x140 returned 0 after 5921 usecs
[    1.245048] calling  crypto_algapi_init+0x0/0x20 @ 1
[    1.246029] initcall crypto_algapi_init+0x0/0x20 returned 0 after 6 usecs
[    1.246692] calling  blk_timeout_init+0x0/0x20 @ 1
[    1.247177] initcall blk_timeout_init+0x0/0x20 returned 0 after 0 usecs
[    1.247798] calling  sed_opal_init+0x0/0xa0 @ 1
[    1.248170] initcall sed_opal_init+0x0/0xa0 returned 0 after 10 usecs
[    1.248667] calling  init_error_injection+0x0/0x80 @ 1
[    1.249287] initcall init_error_injection+0x0/0x80 returned 0 after 213 usecs
[    1.249833] calling  depot_debugfs_init+0x0/0x50 @ 1
[    1.250239] initcall depot_debugfs_init+0x0/0x50 returned 0 after 2 usecs
[    1.250761] calling  pci_resource_alignment_sysfs_init+0x0/0x30 @ 1
[    1.251160] initcall pci_resource_alignment_sysfs_init+0x0/0x30 returned 0 after 4 usecs
[    1.251692] calling  pci_sysfs_init+0x0/0xb0 @ 1
[    1.252072] initcall pci_sysfs_init+0x0/0xb0 returned 0 after 57 usecs
[    1.252484] calling  bert_init+0x0/0x2c0 @ 1
[    1.252772] initcall bert_init+0x0/0x2c0 returned 0 after 3 usecs
[    1.253158] calling  clk_debug_init+0x0/0x130 @ 1
[    1.253470] initcall clk_debug_init+0x0/0x130 returned 0 after 5 usecs
[    1.253876] calling  genpd_debug_init+0x0/0x80 @ 1
[    1.254188] initcall genpd_debug_init+0x0/0x80 returned 0 after 1 usecs
[    1.254610] calling  setup_vcpu_hotplug_event+0x0/0x40 @ 1
[    1.254968] initcall setup_vcpu_hotplug_event+0x0/0x40 returned -19 after 0 usecs
[    1.255423] calling  boot_wait_for_devices+0x0/0x40 @ 1
[    1.255757] initcall boot_wait_for_devices+0x0/0x40 returned -19 after 2 usecs
[    1.256197] calling  dmar_free_unused_resources+0x0/0xd0 @ 1
[    1.256557] initcall dmar_free_unused_resources+0x0/0xd0 returned 0 after 3 usecs
[    1.257012] calling  sync_state_resume_initcall+0x0/0x20 @ 1
[    1.257370] initcall sync_state_resume_initcall+0x0/0x20 returned 0 after 0 usecs
[    1.257825] calling  deferred_probe_initcall+0x0/0xa0 @ 1
[    1.258179] initcall deferred_probe_initcall+0x0/0xa0 returned 0 after 11 usecs
[    1.258646] calling  late_resume_init+0x0/0x1b0 @ 1
[    1.258961] PM:   Magic number: 1:604:305
[    1.259265] tty tty34: hash matches
[    1.259530] initcall late_resume_init+0x0/0x1b0 returned 0 after 568 usecs
[    1.259953] calling  sync_debugfs_init+0x0/0x70 @ 1
[    1.260278] initcall sync_debugfs_init+0x0/0x70 returned 0 after 7 usecs
[    1.260692] calling  charger_manager_init+0x0/0xb0 @ 1
[    1.261225] initcall charger_manager_init+0x0/0xb0 returned 0 after 243 usecs
[    1.261674] calling  dm_init_init+0x0/0x780 @ 1
[    1.261971] initcall dm_init_init+0x0/0x780 returned 0 after 0 usecs
[    1.262392] calling  acpi_cpufreq_init+0x0/0x30 @ 1
[    1.262737] initcall acpi_cpufreq_init+0x0/0x30 returned -19 after 10 usecs
[    1.263197] calling  powernowk8_init+0x0/0x1e0 @ 1
[    1.263523] initcall powernowk8_init+0x0/0x1e0 returned -19 after 2 usecs
[    1.263950] calling  pcc_cpufreq_init+0x0/0x30 @ 1
[    1.264264] initcall pcc_cpufreq_init+0x0/0x30 returned -19 after 5 usecs
[    1.264686] calling  centrino_init+0x0/0x40 @ 1
[    1.264983] initcall centrino_init+0x0/0x40 returned -19 after 0 usecs
[    1.265393] calling  edd_init+0x0/0x320 @ 1
[    1.265674] initcall edd_init+0x0/0x320 returned -19 after 1 usecs
[    1.266063] calling  firmware_memmap_init+0x0/0x50 @ 1
[    1.266446] initcall firmware_memmap_init+0x0/0x50 returned 0 after 16 usecs
[    1.266907] calling  register_update_efi_random_seed+0x0/0x30 @ 1
[    1.267288] initcall register_update_efi_random_seed+0x0/0x30 returned 0 after 0 usecs
[    1.267725] calling  efi_shutdown_init+0x0/0x60 @ 1
[    1.268008] initcall efi_shutdown_init+0x0/0x60 returned -19 after 1 usecs
[    1.268475] calling  efi_rci2_sysfs_init+0x0/0x2c0 @ 1
[    1.268807] initcall efi_rci2_sysfs_init+0x0/0x2c0 returned 0 after 0 usecs
[    1.269238] calling  efi_earlycon_unmap_fb+0x0/0x50 @ 1
[    1.269578] initcall efi_earlycon_unmap_fb+0x0/0x50 returned 0 after 0 usecs
[    1.270014] calling  itmt_legacy_init+0x0/0x60 @ 1
[    1.270337] initcall itmt_legacy_init+0x0/0x60 returned -19 after 0 usecs
[    1.270762] calling  cec_init+0x0/0x1e0 @ 1
[    1.271047] RAS: Correctable Errors collector initialized.
[    1.271398] initcall cec_init+0x0/0x1e0 returned 0 after 359 usecs
[    1.271791] calling  bpf_kfunc_init+0x0/0x170 @ 1
[    1.272118] initcall bpf_kfunc_init+0x0/0x170 returned 0 after 3 usecs
[    1.272531] calling  init_subsystem+0x0/0x30 @ 1
[    1.272844] initcall init_subsystem+0x0/0x30 returned 0 after 2 usecs
[    1.273251] calling  xdp_metadata_init+0x0/0x30 @ 1
[    1.273573] initcall xdp_metadata_init+0x0/0x30 returned 0 after 0 usecs
[    1.273995] calling  bpf_sockmap_iter_init+0x0/0x30 @ 1
[    1.274347] initcall bpf_sockmap_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.274797] calling  bpf_sk_storage_map_iter_init+0x0/0x30 @ 1
[    1.275168] initcall bpf_sk_storage_map_iter_init+0x0/0x30 returned 0 after 0 usecs
[    1.275931] calling  bpf_prog_test_run_init+0x0/0xb0 @ 1
[    1.276276] initcall bpf_prog_test_run_init+0x0/0xb0 returned 0 after 0 usecs
[    1.276721] calling  bpf_dummy_struct_ops_init+0x0/0x20 @ 1
[    1.277083] initcall bpf_dummy_struct_ops_init+0x0/0x20 returned 0 after 0 usecs
[    1.277545] calling  tcp_congestion_default+0x0/0x30 @ 1
[    1.277894] initcall tcp_congestion_default+0x0/0x30 returned 0 after 5 usecs
[    1.278369] calling  inet_blackhole_dev_init+0x0/0x40 @ 1
[    1.278927] initcall inet_blackhole_dev_init+0x0/0x40 returned 0 after 4 usecs
[    1.279436] calling  tcp_bpf_v4_build_proto+0x0/0xa0 @ 1
[    1.279781] initcall tcp_bpf_v4_build_proto+0x0/0xa0 returned 0 after 2 usecs
[    1.280224] calling  udp_bpf_v4_build_proto+0x0/0x50 @ 1
[    1.280565] initcall udp_bpf_v4_build_proto+0x0/0x50 returned 0 after 0 usecs
[    1.281010] calling  bpf_tcp_ca_kfunc_init+0x0/0x40 @ 1
[    1.281346] initcall bpf_tcp_ca_kfunc_init+0x0/0x40 returned 0 after 0 usecs
[    1.281783] calling  pci_mmcfg_late_insert_resources+0x0/0xd0 @ 1
[    1.282169] initcall pci_mmcfg_late_insert_resources+0x0/0xd0 returned 0 after 0 usecs
[    1.282689] calling  software_resume_initcall+0x0/0x190 @ 1
[    1.283053] initcall software_resume_initcall+0x0/0x190 returned -2 after 3 usecs
[    1.283518] calling  lockup_detector_check+0x0/0x80 @ 1
[    1.283877] initcall lockup_detector_check+0x0/0x80 returned 0 after 9 usecs
[    1.284317] calling  ftrace_check_sync+0x0/0x30 @ 1
[    1.284612] initcall ftrace_check_sync+0x0/0x30 returned 0 after 8 usecs
[    1.285146] calling  latency_fsnotify_init+0x0/0x50 @ 1
[    1.285513] initcall latency_fsnotify_init+0x0/0x50 returned 0 after 9 usecs
[    1.285957] calling  trace_eval_sync+0x0/0x30 @ 1
[    1.286283] initcall trace_eval_sync+0x0/0x30 returned 0 after 6 usecs
[    1.286720] calling  late_trace_init+0x0/0xe0 @ 1
[    1.287032] initcall late_trace_init+0x0/0xe0 returned 0 after 0 usecs
[    1.287437] calling  acpi_gpio_handle_deferred_request_irqs+0x0/0xa0 @ 1
[    1.287851] initcall acpi_gpio_handle_deferred_request_irqs+0x0/0xa0 returned 0 after 0 usecs
[    1.288368] calling  clk_disable_unused+0x0/0x190 @ 1
[    1.288692] clk: Disabling unused clocks
[    1.288978] initcall clk_disable_unused+0x0/0x190 returned 0 after 286 usecs
[    1.289415] calling  genpd_power_off_unused+0x0/0xa0 @ 1
[    1.289757] PM: genpd: Disabling unused power domains
[    1.290079] initcall genpd_power_off_unused+0x0/0xa0 returned 0 after 322 usecs
[    1.290545] calling  balloon_wait_finish+0x0/0x110 @ 1
[    1.290881] initcall balloon_wait_finish+0x0/0x110 returned -19 after 0 usecs
[    1.291320] calling  regulator_init_complete+0x0/0x40 @ 1
[    1.291666] initcall regulator_init_complete+0x0/0x40 returned 0 after 2 usecs
[    1.298286] Freeing unused decrypted memory: 2028K
[    1.300046] Freeing unused kernel image (initmem) memory: 4692K
[    1.300359] Write protecting the kernel read-only data: 26624k
[    1.301011] Freeing unused kernel image (text/rodata gap) memory: 548K
[    1.301567] Freeing unused kernel image (rodata/data gap) memory: 440K
[    1.308795] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    1.309043] Run /init as init process
[    1.309191]   with arguments:
[    1.309317]     /init
[    1.309421]     splash
[    1.309528]   with environment:
[    1.309659]     HOME=/
[    1.309766]     TERM=linux
[    1.309894]     BOOT_IMAGE=/vmlinuz-6.15.0-rc5+
[    1.340163] calling  mac_hid_init+0x0/0xff0 [mac_hid] @ 141
[    1.340423] initcall mac_hid_init+0x0/0xff0 [mac_hid] returned 0 after 3 usecs
[    1.341448] calling  pacpi_pci_driver_init+0x0/0xff0 [pata_acpi] @ 154
[    1.341743] initcall pacpi_pci_driver_init+0x0/0xff0 [pata_acpi] returned 0 after 13 usecs
[    1.347296] calling  serio_raw_drv_init+0x0/0xff0 [serio_raw] @ 159
[    1.348531] initcall serio_raw_drv_init+0x0/0xff0 [serio_raw] returned 0 after 940 usecs
[    1.349233] calling  floppy_module_init+0x0/0x1e40 [floppy] @ 151
[    1.351329] calling  input_leds_init+0x0/0xff0 [input_leds] @ 158
[    1.353697] calling  psmouse_init+0x0/0xa0 [psmouse] @ 159
[    1.354311] initcall psmouse_init+0x0/0xa0 [psmouse] returned 0 after 244 usecs
[    1.355192] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4
[    1.363378] calling  drm_core_init+0x0/0xb0 [drm] @ 149
[    1.363730] ACPI: bus type drm_connector registered
[    1.364133] initcall drm_core_init+0x0/0xb0 [drm] returned 0 after 416 usecs
[    1.366827] FDC 0 is a S82078B
[    1.367117] initcall floppy_module_init+0x0/0x1e40 [floppy] returned 0 after 3400 usecs
[    1.375970] calling  qxl_pci_driver_init+0x0/0xff0 [qxl] @ 149
[    1.387572] Console: switching to colour dummy device 80x25
[    1.387839] qxl 0000:00:02.0: vgaarb: deactivate vga console
[    1.388137] [drm] Device Version 0.0
[    1.388306] [drm] Compression level 0 log level 0
[    1.388510] [drm] 12286 io pages at offset 0x1000000
[    1.388726] [drm] 16777216 byte draw area at offset 0x0
[    1.388952] [drm] RAM header offset: 0x3ffe000
[    1.389211] [drm] qxl: 16M of VRAM memory size
[    1.389415] [drm] qxl: 63M of IO pages memory ready (VRAM domain)
[    1.389672] [drm] qxl: 64M of Surface memory size
[    1.390777] [drm] slot 0 (main): base 0xf4000000, size 0x03ffe000
[    1.391099] [drm] slot 1 (surfaces): base 0xf8000000, size 0x04000000
[    1.391652] [drm] Initialized qxl 0.1.0 for 0000:00:02.0 on minor 0
[    1.392373] fbcon: qxldrmfb (fb0) is primary device
[    1.394176] Console: switching to colour frame buffer device 128x48
[    1.400362] qxl 0000:00:02.0: [drm] fb0: qxldrmfb frame buffer device
[    1.406367] initcall input_leds_init+0x0/0xff0 [input_leds] returned 0 after 30135 usecs
[    1.407278] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3
[    1.408371] probe of serio1 returned 0 after 53567 usecs
[    1.417809] probe of 0000:00:02.0 returned 0 after 41566 usecs
[    1.418261] initcall qxl_pci_driver_init+0x0/0xff0 [qxl] returned 0 after 42031 usecs
[    1.461348] calling  linear_init+0x0/0xff0 [linear] @ 191
[    1.461602] initcall linear_init+0x0/0xff0 [linear] returned 0 after 5 usecs
[    1.535642] EXT4-fs (sda2): mounted filesystem 3516f70c-4dd9-4b0f-bac4-c41778d09bbb ro with ordered data mode. Quota mode: none.
[    1.568736] EXT4-fs (sda2): re-mounted 3516f70c-4dd9-4b0f-bac4-c41778d09bbb r/w.
[    1.585433] EXT4-fs (sda2): re-mounted 3516f70c-4dd9-4b0f-bac4-c41778d09bbb.
[    1.708722] systemd[1]: RTC configured in localtime, applying delta of 480 minutes to system time.
[    1.723899] calling  init_autofs_fs+0x0/0x40 [autofs4] @ 1
[    1.724205] initcall init_autofs_fs+0x0/0x40 [autofs4] returned 0 after 58 usecs
[    1.724647] systemd[1]: Inserted module 'autofs4'
[    1.727674] calling  xt_init+0x0/0xff0 [x_tables] @ 1
[    1.727909] initcall xt_init+0x0/0xff0 [x_tables] returned 0 after 2 usecs
[    1.729963] calling  ip_tables_init+0x0/0xff0 [ip_tables] @ 1
[    1.730225] initcall ip_tables_init+0x0/0xff0 [ip_tables] returned 0 after 7 usecs
[    1.736990] systemd[1]: systemd 245.4-4kylin3.11k30 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)
[    1.737875] systemd[1]: Detected virtualization kvm.
[    1.738092] systemd[1]: Detected architecture x86-64.
[    1.738370] /proc/cgroups lists only v1 controllers, use cgroup.controllers of root cgroup for v2 info
[    1.758990] systemd[1]: Set hostname to <standardpc>.
[    1.879764] systemd[1]: Configuration file /lib/systemd/system/vdi_usbmagicd.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    1.880569] systemd[1]: Configuration file /lib/systemd/system/vdi_usbipd.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    1.881354] systemd[1]: Configuration file /lib/systemd/system/vdi_super_agent.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    1.888076] systemd[1]: Configuration file /etc/systemd/system/runsunloginclient.service is marked executable. Please remove executable permission bits. Proceeding anyway.
[    1.921743] systemd[1]: Created slice system-modprobe.slice.
[    1.922091] systemd[1]: Created slice system-serial\x2dgetty.slice.
[    1.922448] systemd[1]: Created slice User and Session Slice.
[    1.922726] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    1.923139] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    1.923543] systemd[1]: Reached target User and Group Name Lookups.
[    1.923811] systemd[1]: Reached target Remote File Systems.
[    1.924052] systemd[1]: Reached target Slices.
[    1.924255] systemd[1]: Reached target Swap.
[    1.924488] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    1.924813] systemd[1]: Listening on LVM2 poll daemon socket.
[    1.925090] systemd[1]: Listening on Syslog Socket.
[    1.925950] systemd[1]: Listening on Process Core Dump Socket.
[    1.926248] systemd[1]: Listening on fsck to fsckd communication Socket.
[    1.926570] systemd[1]: Listening on initctl Compatibility Named Pipe.
[    1.927964] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
[    1.928351] systemd[1]: Listening on Journal Socket (/dev/log).
[    1.928664] systemd[1]: Listening on Journal Socket.
[    1.928924] systemd[1]: Listening on udev Control Socket.
[    1.929202] systemd[1]: Listening on udev Kernel Socket.
[    1.946647] systemd[1]: Mounting Huge Pages File System...
[    1.948302] systemd[1]: Mounting POSIX Message Queue File System...
[    1.950275] systemd[1]: Mounting Kernel Debug File System...
[    1.951567] systemd[1]: Mounting Kernel Trace File System...
[    1.952868] systemd[1]: Starting Journal Service...
[    1.953806] systemd[1]: Starting Availability of block devices...
[    1.954876] systemd[1]: Starting Set the console keyboard layout...
[    1.956167] systemd[1]: Starting Create list of static device nodes for the current kernel...
[    1.957765] systemd[1]: Starting update duration after shutdown or reboot...
[    1.959068] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[    1.959793] systemd[1]: Condition check resulted in Load Kernel Module drm being skipped.
[    1.961260] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[    1.961806] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[    1.963882] systemd[1]: Starting Load Kernel Modules...
[    1.967371] systemd[1]: Starting Remount Root and Kernel File Systems...
[    1.968331] systemd[1]: Starting udev Coldplug all Devices...
[    1.969373] systemd[1]: Starting Uncomplicated firewall...
[    1.970959] systemd[1]: Mounted Huge Pages File System.
[    1.971536] systemd[1]: Mounted POSIX Message Queue File System.
[    1.972137] systemd[1]: Mounted Kernel Debug File System.
[    1.972672] systemd[1]: Mounted Kernel Trace File System.
[    1.973390] systemd[1]: Finished Availability of block devices.
[    1.975688] calling  parport_default_proc_register+0x0/0xff0 [parport] @ 349
[    1.976172] initcall parport_default_proc_register+0x0/0xff0 [parport] returned 0 after 21 usecs
[    1.976623] systemd[1]: Finished Create list of static device nodes for the current kernel.
[    1.977626] systemd[1]: Finished update duration after shutdown or reboot.
[    1.980175] systemd[1]: Finished Uncomplicated firewall.
[    1.983864] calling  lp_init_module+0x0/0xff0 [lp] @ 349
[    1.985422] lp: driver loaded but no devices found
[    1.985642] initcall lp_init_module+0x0/0xff0 [lp] returned 0 after 1538 usecs
[    1.987338] calling  ppdev_init+0x0/0xff0 [ppdev] @ 349
[    1.990382] ppdev: user-space parallel port driver
[    1.990619] initcall ppdev_init+0x0/0xff0 [ppdev] returned 0 after 2890 usecs
[    1.993147] calling  parport_pc_init+0x0/0xef0 [parport_pc] @ 349
[    1.993480] probe of parport_pc.956 returned 0 after 17 usecs
[    1.993738] probe of parport0 returned 19 after 2 usecs
[    1.993962] probe of parport0 returned 19 after 1 usecs
[    1.994241] probe of parport_pc.888 returned 0 after 5 usecs
[    1.994486] EXT4-fs (sda2): re-mounted 3516f70c-4dd9-4b0f-bac4-c41778d09bbb.
[    1.994838] probe of parport0 returned 19 after 3 usecs
[    1.995080] probe of parport0 returned 19 after 1 usecs
[    1.995375] probe of parport_pc.632 returned 0 after 5 usecs
[    1.995631] probe of parport0 returned 19 after 1 usecs
[    1.995859] probe of parport0 returned 19 after 2 usecs
[    1.996150] initcall parport_pc_init+0x0/0xef0 [parport_pc] returned 0 after 2737 usecs
[    1.999435] systemd[1]: Finished Remount Root and Kernel File Systems.
[    2.000707] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
[    2.001280] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
[    2.002604] systemd[1]: Starting Load/Save Random Seed...
[    2.003713] systemd[1]: Starting Create System Users...
[    2.004498] systemd[1]: Started Journal Service.
[    2.012332] calling  vmw_pci_driver_init+0x0/0xff0 [vmwgfx] @ 349
[    2.012769] initcall vmw_pci_driver_init+0x0/0xff0 [vmwgfx] returned 0 after 36 usecs
[    2.022268] calling  usbip_core_init+0x0/0xff0 [usbip_core] @ 349
[    2.022782] initcall usbip_core_init+0x0/0xff0 [usbip_core] returned 0 after 184 usecs
[    2.027026] calling  vhci_hcd_init+0x0/0xff0 [vhci_hcd] @ 349
[    2.027483] probe of vhci_hcd.0 returned 0 after 10 usecs
[    2.027924] [vhci_hcd_init][1523]vhcis[i].fdev=00000000fb27dfbe-----------------ginnie---------------
[    2.028565] [vhci_hcd_init][1531]dev->driver=0000000014cab830-----------------ginnie---------------
[    2.029131] [vhci_hcd_probe][1345]fdev=00000000fb27dfbe-----------------ginnie---------------
[    2.029629] faux_driver vhci_hcd.0: USB/IP Virtual Host Controller
[    2.030063] faux_driver vhci_hcd.0: new USB bus registered, assigned bus number 3
[    2.030591] vhci_hcd: created sysfs vhci_hcd.0
[    2.030920] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.15
[    2.031421] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.031734] usb usb3: Product: USB/IP Virtual Host Controller
[    2.032121] usb usb3: Manufacturer: Linux 6.15.0-rc5+ vhci_hcd
[    2.032509] usb usb3: SerialNumber: vhci_hcd.0
[    2.032934] hub 3-0:1.0: USB hub found
[    2.033211] hub 3-0:1.0: 8 ports detected
[    2.033630] probe of 3-0:1.0 returned 0 after 702 usecs
[    2.034026] probe of usb3 returned 0 after 1130 usecs
[    2.034479] faux_driver vhci_hcd.0: USB/IP Virtual Host Controller
[    2.035107] faux_driver vhci_hcd.0: new USB bus registered, assigned bus number 4
[    2.035780] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.036404] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.15
[    2.036936] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.037300] usb usb4: Product: USB/IP Virtual Host Controller
[    2.037589] usb usb4: Manufacturer: Linux 6.15.0-rc5+ vhci_hcd
[    2.037882] usb usb4: SerialNumber: vhci_hcd.0
[    2.038249] hub 4-0:1.0: USB hub found
[    2.038501] hub 4-0:1.0: 8 ports detected
[    2.038886] probe of 4-0:1.0 returned 0 after 642 usecs
[    2.039160] probe of usb4 returned 0 after 938 usecs
[    2.039456] [vhci_hcd_init][1533]dev->driver=0000000014cab830-----------------ginnie---------------
[    2.039911] initcall vhci_hcd_init+0x0/0xff0 [vhci_hcd] returned 0 after 12461 usecs
[    2.065883] calling  fq_codel_module_init+0x0/0xff0 [sch_fq_codel] @ 375
[    2.066252] initcall fq_codel_module_init+0x0/0xff0 [sch_fq_codel] returned 0 after 1 usecs
[    2.179093] calling  smbalert_driver_init+0x0/0xff0 [i2c_smbus] @ 390
[    2.179550] initcall smbalert_driver_init+0x0/0xff0 [i2c_smbus] returned 0 after 26 usecs
[    2.182968] calling  piix4_driver_init+0x0/0xff0 [i2c_piix4] @ 390
[    2.184163] calling  init_soundcore+0x0/0xff0 [soundcore] @ 377
[    2.184420] initcall init_soundcore+0x0/0xff0 [soundcore] returned 0 after 6 usecs
[    2.185038] calling  fw_cfg_sysfs_init+0x0/0xff0 [qemu_fw_cfg] @ 388
[    2.185072] calling  virtio_input_driver_init+0x0/0xff0 [virtio_input] @ 386
[    2.185814] probe of QEMU0002:00 returned 0 after 487 usecs
[    2.186130] initcall fw_cfg_sysfs_init+0x0/0xff0 [qemu_fw_cfg] returned 0 after 386 usecs
[    2.186801] calling  failover_init+0x0/0xff0 [failover] @ 398
[    2.186837] input: QEMU Virtio Tablet as /devices/pci0000:00/0000:00:06.0/virtio1/input/input5
[    2.187060] initcall failover_init+0x0/0xff0 [failover] returned 0 after 5 usecs
[    2.187896] piix4_smbus 0000:00:01.3: SMBus Host Controller at 0x700, revision 0
[    2.188281] i2c i2c-0: Memory type 0x07 not supported yet, not instantiating SPD
[    2.188697] probe of 0000:00:01.3 returned 0 after 828 usecs
[    2.190271] probe of virtio1 returned 0 after 4521 usecs
[    2.191725] initcall virtio_input_driver_init+0x0/0xff0 [virtio_input] returned 0 after 4670 usecs
[    2.200838] initcall piix4_driver_init+0x0/0xff0 [i2c_piix4] returned 0 after 13782 usecs
[    2.202776] calling  joydev_init+0x0/0xff0 [joydev] @ 380
[    2.203260] initcall joydev_init+0x0/0xff0 [joydev] returned 0 after 168 usecs
[    2.215623] calling  alsa_sound_init+0x0/0xa0 [snd] @ 424
[    2.215912] initcall alsa_sound_init+0x0/0xa0 [snd] returned 0 after 8 usecs
[    2.228640] calling  net_failover_init+0x0/0xff0 [net_failover] @ 398
[    2.228941] initcall net_failover_init+0x0/0xff0 [net_failover] returned 0 after 0 usecs
[    2.235398] calling  cstate_pmu_init+0x0/0xff0 [intel_cstate] @ 399
[    2.235696] initcall cstate_pmu_init+0x0/0xff0 [intel_cstate] returned -19 after 0 usecs
[    2.237496] calling  alsa_timer_init+0x0/0xff0 [snd_timer] @ 463
[    2.238263] initcall alsa_timer_init+0x0/0xff0 [snd_timer] returned 0 after 498 usecs
[    2.252223] calling  virtio_net_driver_init+0x0/0xff0 [virtio_net] @ 398
[    2.258840] probe of virtio0 returned 0 after 6270 usecs
[    2.261723] initcall virtio_net_driver_init+0x0/0xff0 [virtio_net] returned 0 after 9161 usecs
[    2.269912] calling  alsa_seq_device_init+0x0/0xff0 [snd_seq_device] @ 463
[    2.273083] initcall alsa_seq_device_init+0x0/0xff0 [snd_seq_device] returned 0 after 2855 usecs
[    2.309385] virtio_net virtio0 ens3: renamed from eth0
[    2.310546] calling  alsa_seq_init+0x0/0x60 [snd_seq] @ 492
[    2.312178] calling  rapl_pmu_init+0x0/0xdb0 [rapl] @ 387
[    2.312524] RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer
[    2.312918] initcall rapl_pmu_init+0x0/0xdb0 [rapl] returned 0 after 428 usecs
[    2.314701] initcall alsa_seq_init+0x0/0x60 [snd_seq] returned 0 after 2210 usecs
[    2.316535] calling  sha1_ssse3_mod_init+0x0/0xff0 [sha1_ssse3] @ 383
[    2.316822] initcall sha1_ssse3_mod_init+0x0/0xff0 [sha1_ssse3] returned 0 after 6 usecs
[    2.318991] calling  sha256_ssse3_mod_init+0x0/0xff0 [sha256_ssse3] @ 387
[    2.319403] initcall sha256_ssse3_mod_init+0x0/0xff0 [sha256_ssse3] returned 0 after 13 usecs
[    2.320497] calling  alsa_rawmidi_init+0x0/0xff0 [snd_rawmidi] @ 533
[    2.320775] initcall alsa_rawmidi_init+0x0/0xff0 [snd_rawmidi] returned 0 after 0 usecs
[    2.321242] calling  sha512_ssse3_mod_init+0x0/0xff0 [sha512_ssse3] @ 399
[    2.321538] initcall sha512_ssse3_mod_init+0x0/0xff0 [sha512_ssse3] returned 0 after 10 usecs
[    2.325295] calling  ghash_pclmulqdqni_mod_init+0x0/0xff0 [ghash_clmulni_intel] @ 387
[    2.325689] initcall ghash_pclmulqdqni_mod_init+0x0/0xff0 [ghash_clmulni_intel] returned 0 after 28 usecs
[    2.326268] calling  seq_midisynth_driver_init+0x0/0xff0 [snd_seq_midi] @ 540
[    2.326882] initcall seq_midisynth_driver_init+0x0/0xff0 [snd_seq_midi] returned 0 after 219 usecs
[    2.334878] calling  alsa_pcm_init+0x0/0xff0 [snd_pcm] @ 560
[    2.335238] initcall alsa_pcm_init+0x0/0xff0 [snd_pcm] returned 0 after 3 usecs
[    2.342650] EXT4-fs (sda1): warning: mounting fs with errors, running e2fsck is recommended
[    2.345124] EXT4-fs (sda1): mounted filesystem cfaaa870-4d52-434c-8626-a398f6c7edd3 r/w with ordered data mode. Quota mode: none.
[    2.347517] EXT4-fs (sdb): mounted filesystem 1b1b0571-175b-4b83-9612-38293c03950b r/w with ordered data mode. Quota mode: none.
[    2.363418] calling  ac97_bus_init+0x0/0xff0 [ac97_bus] @ 377
[    2.363670] calling  kvm_x86_init+0x0/0x50 [kvm] @ 383
[    2.363916] initcall ac97_bus_init+0x0/0xff0 [ac97_bus] returned 0 after 28 usecs
[    2.364199] initcall kvm_x86_init+0x0/0x50 [kvm] returned 0 after 16 usecs
[    2.376665] calling  intel8x0_driver_init+0x0/0xff0 [snd_intel8x0] @ 377
[    2.376693] calling  vmx_init+0x0/0x1c0 [kvm_intel] @ 383
[    2.384646] initcall vmx_init+0x0/0x1c0 [kvm_intel] returned 0 after 7231 usecs
[    2.387398] calling  rapl_init+0x0/0xff0 [intel_rapl_common] @ 399
[    2.387757] initcall rapl_init+0x0/0xff0 [intel_rapl_common] returned 0 after 82 usecs
[    2.391443] calling  intel_rapl_msr_driver_init+0x0/0xff0 [intel_rapl_msr] @ 390
[    2.391933] intel_rapl_msr: PL4 support detected.
[    2.392334] probe of intel_rapl_msr.0 returned 19 after 405 usecs
[    2.392755] initcall intel_rapl_msr_driver_init+0x0/0xff0 [intel_rapl_msr] returned 0 after 836 usecs
[    2.393381] ACPI: \_SB_.LNKA: Enabled at IRQ 11
[    2.393702] snd_intel8x0 0000:00:05.0: enable KVM optimization
[    2.666165] probe of 0000:00:05.0 returned 0 after 289130 usecs
[    2.666592] initcall intel8x0_driver_init+0x0/0xff0 [snd_intel8x0] returned 0 after 274672 usecs
[    3.033317] calling  pppox_init+0x0/0xff0 [pppox] @ 947
[    3.033649] NET: Registered PF_PPPOX protocol family
[    3.033924] initcall pppox_init+0x0/0xff0 [pppox] returned 0 after 276 usecs
[    3.055906] calling  udp_tunnel_nic_init_module+0x0/0xff0 [udp_tunnel] @ 972
[    3.056375] initcall udp_tunnel_nic_init_module+0x0/0xff0 [udp_tunnel] returned 0 after 10 usecs
[    3.076003] calling  l2tp_init+0x0/0xff0 [l2tp_core] @ 972
[    3.076337] l2tp_core: L2TP core driver, V2.0
[    3.076569] initcall l2tp_init+0x0/0xff0 [l2tp_core] returned 0 after 242 usecs
[    3.089753] calling  l2tp_nl_init+0x0/0xff0 [l2tp_netlink] @ 972
[    3.090092] l2tp_netlink: L2TP netlink interface
[    3.090368] initcall l2tp_nl_init+0x0/0xff0 [l2tp_netlink] returned 0 after 275 usecs
[    3.099709] calling  pppol2tp_init+0x0/0xff0 [l2tp_ppp] @ 972
[    3.100163] l2tp_ppp: PPPoL2TP kernel driver, V2.0
[    3.100556] initcall pppol2tp_init+0x0/0xff0 [l2tp_ppp] returned 0 after 401 usecs
[    3.270793] calling  xfrm_user_init+0x0/0xff0 [xfrm_user] @ 1065
[    3.271137] Initializing XFRM netlink socket
[    3.271378] initcall xfrm_user_init+0x0/0xff0 [xfrm_user] returned 0 after 240 usecs
[   64.905707] systemd-journald[339]: Received client request to flush runtime journal.
[  148.858276][ T5526] faux_driver vhci_hcd.0: fdev(0) rhport(0) sockfd(3)
[  148.858729][ T5526] faux_driver vhci_hcd.0: devid(262147) speed(5) speed_str(super-speed)
[  148.859305][ T5526] faux_driver vhci_hcd.0: Device attached
[  149.104698][  T314] usb 4-1: SetAddress Request (2) to port 0
[  149.105166][  T314] usb 4-1: new SuperSpeed USB device number 2 using faux_driver
[  149.127370][  T314] usb 4-1: New USB device found, idVendor=0951, idProduct=1666, bcdDevice= 1.10
[  149.128060][  T314] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  149.128670][  T314] usb 4-1: Product: DataTraveler 3.0
[  149.129064][  T314] usb 4-1: Manufacturer: Kingston
[  149.129441][  T314] usb 4-1: SerialNumber: 4CEDFB74A335E611091101EF
[  149.132029][  T314] probe of 4-1 returned 0 after 1987 usecs
[  149.139610][ T5545] calling  usb_storage_driver_init+0x0/0xff0 [usb_storage] @ 5545
[  149.140190][ T5545] usb-storage 4-1:1.0: USB Mass Storage device detected
[  149.141136][ T5545] scsi host2: usb-storage 4-1:1.0
[  149.141509][ T5545] probe of 4-1:1.0 returned 0 after 1328 usecs
[  149.141882][ T5545] usbcore: registered new interface driver usb-storage
[  149.142295][ T5545] initcall usb_storage_driver_init+0x0/0xff0 [usb_storage] returned 0 after 2191 usecs
[  149.144591][ T5545] calling  uas_init+0x0/0xff0 [uas] @ 5545
[  149.145236][ T5545] usbcore: registered new interface driver uas
[  149.145707][ T5545] initcall uas_init+0x0/0xff0 [uas] returned 0 after 561 usecs
[  150.175351][   T40] scsi 2:0:0:0: Direct-Access     Kingston DataTraveler 3.0 PMAP PQ: 0 ANSI: 6
[  150.177079][   T40] probe of 2:0:0:0 returned 19 after 11 usecs
[  150.178324][   T40] sd 2:0:0:0: Attached scsi generic sg2 type 0
[  150.181202][  T109] sd 2:0:0:0: [sdc] 60530688 512-byte logical blocks: (31.0 GB/28.9 GiB)
[  150.184149][  T109] sd 2:0:0:0: [sdc] Write Protect is off
[  150.185235][  T109] sd 2:0:0:0: [sdc] Mode Sense: 45 00 00 00
[  150.186991][  T109] sd 2:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[  150.205870][  T109]  sdc:
[  150.206127][  T109] sd 2:0:0:0: [sdc] Attached SCSI removable disk
[  150.206623][  T109] probe of 2:0:0:0 returned 0 after 28534 usecs
[  150.420620][ T5577] calling  init_exfat_fs+0x0/0xff0 [exfat] @ 5577
[  150.421569][ T5577] initcall init_exfat_fs+0x0/0xff0 [exfat] returned 0 after 67 usecs
[  150.423181][ T5574] exfat: Deprecated parameter 'namecase'
[  150.424615][ T5574] exFAT-fs (sdc): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[  150.471118][ T1897] ukui-flash-disk[1897]: segfault at 0 ip 000055c4d4812dcb sp 00007fff19ef0cc0 error 4 in ukui-flash-disk[40dcb,55c4d47f9000+61000] likely on CPU 2 (core 0, socket 2)
[  150.472234][ T1897] Code: ff 85 c0 4c 89 ef 0f 95 84 24 e1 00 00 00 e8 1c 8d fe ff 48 8b b4 24 a0 00 00 00 48 89 ef 4c 8b 2d 7a 42 06 00 e8 65 77 ff ff <49> 8b 7d 00 48 89 ee e8 19 ec 00 00 48 89 ef 49 89 c5 e8 1e 64 ff
[  162.285420][ T5775] PM: suspend entry (s2idle)
[  162.328313][ T5775] Filesystems sync: 0.041 seconds
[  162.429520][ T5775] Freezing user space processes
[  162.431997][ T5775] Freezing user space processes completed (elapsed 0.002 seconds)
[  162.432482][ T5775] OOM killer disabled.
[  162.432754][ T5775] Freezing remaining freezable tasks
[  162.434397][ T5775] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[  162.434974][ T5775] sound pcmC0D1c: PM: calling do_pcm_suspend [snd_pcm] @ 5775, parent: card0
[  162.435410][ T5775] sound pcmC0D1c: PM: do_pcm_suspend [snd_pcm] returned 0 after 0 usecs
[  162.435815][ T5775] sound pcmC0D0c: PM: calling do_pcm_suspend [snd_pcm] @ 5775, parent: card0
[  162.436221][  T109] sd 2:0:0:0: PM: calling scsi_bus_suspend @ 109, parent: target2:0:0
[  162.436264][ T5775] sound pcmC0D0c: PM: do_pcm_suspend [snd_pcm] returned 0 after 0 usecs
[  162.437167][ T5775] sound pcmC0D0p: PM: calling do_pcm_suspend [snd_pcm] @ 5775, parent: card0
[  162.437679][ T5775] sound pcmC0D0p: PM: do_pcm_suspend [snd_pcm] returned 0 after 0 usecs
[  162.438166][ T5775] platform intel_rapl_msr.0: PM: calling platform_pm_suspend @ 5775, parent: platform
[  162.438684][ T5775] platform intel_rapl_msr.0: PM: platform_pm_suspend returned 0 after 0 usecs
[  162.439104][ T5775] input input5: PM: calling input_dev_suspend @ 5775, parent: virtio1
[  162.439490][ T5775] input input5: PM: input_dev_suspend returned 0 after 0 usecs
[  162.440005][ T5786] usb usb3: PM: calling usb_dev_suspend @ 5786, parent: vhci_hcd.0
[  162.440425][ T5786] usb usb3: PM: usb_dev_suspend returned 0 after 32 usecs
[  162.452245][  T109] sd 2:0:0:0: PM: scsi_bus_suspend returned 0 after 15568 usecs
[  162.452709][   T40] scsi target2:0:0: PM: calling scsi_bus_suspend @ 40, parent: host2
[  162.453095][   T40] scsi target2:0:0: PM: scsi_bus_suspend returned 0 after 0 usecs
[  162.453498][  T102] scsi host2: PM: calling scsi_bus_suspend @ 102, parent: 4-1:1.0
[  162.454095][  T102] scsi host2: PM: scsi_bus_suspend returned 0 after 0 usecs
[  162.454723][ T5784] usb 4-1: PM: calling usb_dev_suspend @ 5784, parent: usb4
[  162.468217][ T5784] usb 4-1: PM: usb_dev_suspend returned 0 after 13005 usecs
[  162.468718][ T5785] usb usb4: PM: calling usb_dev_suspend @ 5785, parent: vhci_hcd.0
[  162.469157][ T5785] usb usb4: PM: usb_dev_suspend returned 0 after 8 usecs
[  162.469609][ T5775] faux_driver vhci_hcd.0: PM: calling faux_pm_suspend @ 5775, parent: faux
[  162.470911][ T5775] faux_driver vhci_hcd.0: We have 1 active connection. Do not suspend.
[  162.471331][ T5775] faux_driver vhci_hcd.0: PM: legacy_suspend(): faux_pm_suspend returns -16
[  162.471743][ T5775] faux_driver vhci_hcd.0: PM: faux_pm_suspend returned -16 after 1701 usecs
[  162.472150][ T5775] faux_driver vhci_hcd.0: PM: failed to suspend: error -16
[  162.472513][ T5775] PM: Some devices failed to suspend, or early wake event detected
[  162.472902][ T5775] input input5: PM: calling input_dev_resume @ 5775, parent: virtio1
[  162.473286][ T5775] input input5: PM: input_dev_resume returned 0 after 0 usecs
[  162.473637][ T5775] platform intel_rapl_msr.0: PM: calling platform_pm_resume @ 5775, parent: platform
[  162.474079][ T5775] platform intel_rapl_msr.0: PM: platform_pm_resume returned 0 after 0 usecs
[  162.474499][ T5785] usb usb3: PM: calling usb_dev_resume @ 5785, parent: vhci_hcd.0
[  162.474888][ T5785] usb usb3: PM: usb_dev_resume returned 0 after 24 usecs
[  162.475221][ T5785] usb usb4: PM: calling usb_dev_resume @ 5785, parent: vhci_hcd.0
[  162.496301][ T5785] usb usb4: PM: usb_dev_resume returned 0 after 20712 usecs
[  162.497467][ T5790] usb 4-1: PM: calling usb_dev_resume @ 5790, parent: usb4

[-- Attachment #3: 0001-driver-core-add-pm-hook-on-faux-bus.patch --]
[-- Type: text/x-patch, Size: 2843 bytes --]

From 20d58dc7804cc65cc3b5468e838d6788c7c3a1e0 Mon Sep 17 00:00:00 2001
From: Zongmin Zhou <zhouzongmin@kylinos.cn>
Date: Thu, 3 Jul 2025 10:10:17 +0800
Subject: [PATCH] driver core: add pm hook on faux bus

Some devices based on faux bus may
have to do something during suspend/resume.
So add pm hook to let it use its own suspend/resume hooks if had.

Signed-off-by: Zongmin Zhou <zhouzongmin@kylinos.cn>
---
 drivers/base/faux.c          | 33 +++++++++++++++++++++++++++++++++
 drivers/usb/usbip/vhci_hcd.c |  2 ++
 include/linux/device/faux.h  |  2 ++
 3 files changed, 37 insertions(+)

diff --git a/drivers/base/faux.c b/drivers/base/faux.c
index 407c1d1aad50..cbaf265e9b6c 100644
--- a/drivers/base/faux.c
+++ b/drivers/base/faux.c
@@ -61,11 +61,44 @@ static void faux_remove(struct device *dev)
 		faux_ops->remove(faux_dev);
 }
 
+#ifdef CONFIG_PM
+static int faux_pm_suspend(struct device *dev, pm_message_t state)
+{
+	struct faux_object *faux_obj = to_faux_object(dev);
+	struct faux_device *faux_dev = &faux_obj->faux_dev;
+	const struct faux_device_ops *faux_ops = faux_obj->faux_ops;
+	int ret = 0;
+
+	if (faux_ops && faux_ops->suspend)
+		ret = faux_ops->suspend(faux_dev, state);
+
+	return ret;
+}
+
+static int faux_pm_resume(struct device *dev)
+{
+	struct faux_object *faux_obj = to_faux_object(dev);
+	struct faux_device *faux_dev = &faux_obj->faux_dev;
+	const struct faux_device_ops *faux_ops = faux_obj->faux_ops;
+	int ret = 0;
+
+	if (faux_ops && faux_ops->suspend)
+		ret = faux_ops->resume(faux_dev);
+
+	return ret;
+}
+#else
+#define faux_pm_suspend	NULL
+#define faux_pm_resume	NULL
+#endif
+
 static const struct bus_type faux_bus_type = {
 	.name		= "faux",
 	.match		= faux_match,
 	.probe		= faux_probe,
 	.remove		= faux_remove,
+	.suspend	= faux_pm_suspend,
+	.resume		= faux_pm_resume,
 };
 
 static struct device_driver faux_driver = {
diff --git a/drivers/usb/usbip/vhci_hcd.c b/drivers/usb/usbip/vhci_hcd.c
index 4e6d7d23e915..79c026108d7b 100644
--- a/drivers/usb/usbip/vhci_hcd.c
+++ b/drivers/usb/usbip/vhci_hcd.c
@@ -1483,6 +1483,8 @@ static int vhci_hcd_resume(struct faux_device *fdev)
 
 static struct faux_device_ops vhci_driver = {
 	.remove = vhci_hcd_remove,
+	.suspend = vhci_hcd_suspend,
+	.resume	= vhci_hcd_resume,
 };
 
 static void del_faux_devices(void)
diff --git a/include/linux/device/faux.h b/include/linux/device/faux.h
index 9f43c0e46aa4..9dc4b81c672c 100644
--- a/include/linux/device/faux.h
+++ b/include/linux/device/faux.h
@@ -45,6 +45,8 @@ struct faux_device {
 struct faux_device_ops {
 	int (*probe)(struct faux_device *faux_dev);
 	void (*remove)(struct faux_device *faux_dev);
+	int (*suspend)(struct faux_device *faux_dev, pm_message_t state);
+	int (*resume)(struct faux_device *faux_dev);
 };
 
 struct faux_device *faux_device_create(const char *name,
-- 
2.25.1


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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-07-03  6:04                         ` Zongmin Zhou
@ 2025-07-08 18:16                           ` Shuah Khan
  2025-07-09  9:07                             ` Zongmin Zhou
  0 siblings, 1 reply; 33+ messages in thread
From: Shuah Khan @ 2025-07-08 18:16 UTC (permalink / raw)
  To: Zongmin Zhou, Greg KH
  Cc: shuah, valentina.manea.m, i, linux-kernel, linux-usb, zhouzongmin,
	Shuah Khan

On 7/3/25 00:04, Zongmin Zhou wrote:
> 
> On 2025/7/3 07:54, Shuah Khan wrote:
>> On 7/1/25 20:12, Zongmin Zhou wrote:
>>>
>>> On 2025/7/2 06:56, Shuah Khan wrote:
>>>> On 6/23/25 21:21, Zongmin Zhou wrote:
>>>>>
>>>>> On 2025/6/21 01:26, Shuah Khan wrote:
>>>>>> On 6/20/25 03:27, Greg KH wrote:
>>>>>>> On Fri, Jun 20, 2025 at 05:19:33PM +0800, Zongmin Zhou wrote:
>>>>>>>>
>>>>>>>> On 2025/6/20 12:29, Greg KH wrote:
>>>>>>>>> On Fri, Jun 20, 2025 at 10:16:16AM +0800, Zongmin Zhou wrote:
>>>>>>>>>> On 2025/6/19 19:01, Greg KH wrote:
>>>>>>>>>>> On Wed, Jun 04, 2025 at 02:54:10PM +0800, Zongmin Zhou wrote:
>>>>>>>>>>>> From: Zongmin Zhou <zhouzongmin@kylinos.cn>
>>>>>>>>>>>>
>>>>>>>>>>>> The vhci driver does not need to create a platform device,
>>>>>>>>>>>> it only did so because it was simple to do that in order to
>>>>>>>>>>>> get a place in sysfs to hang some device-specific attributes.
>>>>>>>>>>>> Now the faux device interface is more appropriate,change it
>>>>>>>>>>>> over to use the faux bus instead.
>>>>>>>>>>>>
>>>>>>>>>>>> Signed-off-by: Zongmin Zhou <zhouzongmin@kylinos.cn>
>>>>>>>>>>>> ---
>>>>>>>>>>>> Changes in v2:
>>>>>>>>>>>> - don't change faux create api,just call probe on vhci_hcd_init.
>>>>>>>>>>>>
>>>>>>>>>>>>     drivers/usb/usbip/vhci.h             |  4 +-
>>>>>>>>>>>>     drivers/usb/usbip/vhci_hcd.c         | 86 +++++++++++-----------------
>>>>>>>>>>>>     drivers/usb/usbip/vhci_sysfs.c       | 68 +++++++++++-----------
>>>>>>>>>>>>     tools/usb/usbip/libsrc/vhci_driver.h |  2 +-
>>>>>>>>>>>>     4 files changed, 72 insertions(+), 88 deletions(-)
>>>>>>>>>>> I get the following build errors from this patch:
>>>>>>>>>>>
>>>>>>>>>>> drivers/usb/usbip/vhci_hcd.c:1462:12: error: ‘vhci_hcd_resume’ defined but not used [-Werror=unused-function]
>>>>>>>>>>>     1462 | static int vhci_hcd_resume(struct faux_device *fdev)
>>>>>>>>>>>          |            ^~~~~~~~~~~~~~~
>>>>>>>>>>> drivers/usb/usbip/vhci_hcd.c:1418:12: error: ‘vhci_hcd_suspend’ defined but not used [-Werror=unused-function]
>>>>>>>>>>>     1418 | static int vhci_hcd_suspend(struct faux_device *fdev, pm_message_t state)
>>>>>>>>>>>          |            ^~~~~~~~~~~~~~~~
>>>>>>>>>>> cc1: all warnings being treated as errors
>>>>>>>>>>>
>>>>>>>>>>> Are you sure you tested this?
>>>>>>>>>> I apologize for not enabling -Werror, which resulted in missing this error
>>>>>>>>>> warning.
>>>>>>>>>> I have tested usbip feature use the new patch,but not test system
>>>>>>>>>> suspend/resume.
>>>>>>>>>> The faux bus type don't add pm function,and vhci-hcd driver can't register
>>>>>>>>>> it.
>>>>>>>>>> Maybe have to add suspend/resume for it.like below:
>>>>>>>>>> static const struct bus_type faux_bus_type = {
>>>>>>>>>>       .name        = "faux",
>>>>>>>>>>       .match        = faux_match,
>>>>>>>>>>       .probe        = faux_probe,
>>>>>>>>>>       .remove        = faux_remove,
>>>>>>>>>>       .resume     = faux_resume,
>>>>>>>>>>       .suspend    = faux_suspend,
>>>>>>>>>> };
>>>>>>>>>>
>>>>>>>>>> Is that right?
>>>>>>>>>> Your expertise would be greatly valued.
>>>>>>>>> As this is not real hardware, why do you need the suspend/resume
>>>>>>>>> callbacks at all?  What is happening here that requires them?
>>>>>>>> @greg,
>>>>>>>> The vhci_hcd_suspend/vhci_hcd_resume interfaces are not designed for this
>>>>>>>> faux device, but rather to
>>>>>>>> manipulate the HCD_FLAG_HW_ACCESSIBLE bit in the hcd flags associated with
>>>>>>>> the faux device.
>>>>>>>> For example:
>>>>>>>> During system standby: clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)
>>>>>>>> During system wakeup: set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)
>>>>>>>>
>>>>>>>> Previously, these two functions were registered through platform_driver,
>>>>>>>> but faux bus does not have the relevant interface, so they were not called,
>>>>>>>> resulting in this compilation warning error.
>>>>>>>>
>>>>>>>> This raises the question: Should the faux bus implement PM-related
>>>>>>>> interface?
>>>>>>>> I'm uncertain whether these functions are essential for the vhci-hcd driver
>>>>>>>> or if they can be safely removed.
>>>>>>>>
>>>>>>>> However, during system standby/wakeup tests with remote USB devices bound to
>>>>>>>> the vhci-hcd driver,
>>>>>>>> I observed consistent failure scenarios across both the original platform
>>>>>>>> bus and faux bus patch implementations.
>>>>>>
>>>>>> suspend and resume hooks have been in the code from beginning
>>>>>> in the CONFIG_PM path. The original authors are skeptical about
>>>>>> what should happen during suspend"
>>>>>>
>>>>>> /* what should happen for USB/IP under suspend/resume? */
>>>>>> suspend hook checks for active connections and sends EBBUSY
>>>>>> back to pm core.
>>>>>>
>>>>>> Active connection means any of the ports are in USB_PORT_STAT_CONNECTION
>>>>>> state. So as long as there are active connections between vhci client
>>>>>> and the host, suspend won't work. So we really don't know what happens
>>>>>> to the active connections if there are no suspend/resume hooks.
>>>>>>
>>>>>> If there are no active connections, then it will clear the HCD_FLAG_HW_ACCESSIBLE
>>>>>> bit and returns to pm core to continue with suspend.
>>>>>>
>>>>>> resume sets the HCD_FLAG_HW_ACCESSIBLE flag to indicate hardware is accessible
>>>>>> and initiates port status poll.
>>>>>>
>>>>>> - suspend hook prevents suspend
>>>>>>
>>>>>> With faux device since there is no suspend and resume hook, I would expect
>>>>>> these hooks are not a factor in suspend and resume.
>>>>>>
>>>>>> vhci_hcd is a special case virtual driver as it is a proxy for controlling
>>>>>> hardware on the host.
>>>>>>
>>>>>> Zongmin,
>>>>>>
>>>>>> Do suspend/resume work when vhci_hcd is not loaded?
>>>>>> What happens when when system suspends and resumes with faux device?
>>>>>> Can you send me dmesg logs and pm logs?
>>>>>>
>>>>> Hi Greg,shuah
>>>>>
>>>>> Yes, system with vhci_hcd unload or just load vhci_hcd driver
>>>>> without usbip devices bound to vhci_hcd,system suspend/resume worked well.
>>>>> Some logs for you.
>>>>
>>>> Sorry for the delay. I was at a conference last week.
>>>> Thank you for sending these logs.
>>>>
>>>>> 1.system with vhci_hcd driver load,but don't bound any usbip devices to vhci_hcd,suspend/resume worked well.
>>>>> see dmesg-faux bus-load.log
>>>>
>>>>
>>>>>
>>>>> 2.usbip device bound to vhci_hcd,and do system suspend action,suspend/resume worked failed.
>>>>> I observed two distinct failure scenario:
>>>>> Scenario 1: System failed to enter suspend state,and will auto resume;
>>>>
>>>>
>>>>> the log for use platform bus:
>>>>> dmesg-platform bus-device bound-auto resume.log
>>>>
>>>> This is clear from the suspend hook in the vhci_hcd.
>>>> When it returns EBUSY, suspend will fail and move to
>>>> auto resume.
>>>>
>>>>> the log for use faux bus:
>>>>> dmesg-faux bus-device bound-auto resume.log
>>>>
>>>> It is good that the behavior is same with faux bus even though
>>>> suspend hook isn't called. I will take a look at the log.
>>>>
>>>>>
>>>>> Scenario 2: System resume failed with black screen freeze,a forced restart of the machine is require.
>>>>> the log for use platform bus:
>>>>> dmesg-platform bus-device bound-black screen.log
>>>>> the log for use faux bus:
>>>>> dmesg-faux bus-device bound-black screen.log
>>>>
>>>> That is bad. When does this happen? Is there a difference in
>>>> configuration?
>>>>
>>> No, there's no difference. The same code is used for two different failure scenarios.
>>> I just tested many times. These two different situations occur probabilistically.
>>> But they both happened only when the USBIP device is bound to the vhci_hcd driver.
>>>> The behavior same for platform bus and faux bus. Sounds like
>>>> an existing problem that needs to be debugged separately.
>>>>
>>>> I will take a look at all these logs and get back to you in
>>>> a day or two.
>>>>
>>
>> I looked at the logs and here is what I found:
>>
>> Scenario 1:
>>   dmesg-faux bus-device bound-auto resume.log
>>   dmesg-platform bus-device bound-auto resume.log
>>
>> In this case suspend bailed out way before driver suspend
>> when vhci_hcd is using platform and faux bus.
>>
>> Freezing remaining freezable tasks failed after 20.006 seconds (0 tasks refusing to freeze, wq_busy=1)
>> Restarting kernel threads ... done
>> OOM killer enabled.
>> Restarting tasks ... done.
>> random: crng reseeded on system resumption
>> PM: suspend exit
>>
>> Auto-resume of the user-space worked. Scenario 1 isn't really
>> interesting.
>>
>> Scenario 2:
>>   dmesg-faux bus-device bound-black screen.log
>>   dmesg-platform bus-device bound-black screen.log
>>
>> Even though the result is the same in seeing blank screen, how
>> we get there is different.
>>
>> =================
>> faux-bus device:
>> =================
>> - suspend worked - looks like
>>   usb 4-1: PM: calling usb_dev_suspend @ 6054, parent: usb4
>>   usb 4-1: PM: usb_dev_suspend returned 0 after 13675 usecs
>>   usb usb4: PM: calling usb_dev_suspend @ 6055, parent: vhci_hcd.0
>>   usb usb4: PM: usb_dev_suspend returned 0 after 9 usecs
>>
>> vhci_hcd suspend isn't in play here. usb_dev_suspend() returns.
>> See below
>>
>> usb 4-1: PM: usb_dev_suspend returned message.
>>
>> -------------------------------------------------------------
>>
>> - resume started (assuming it has been initiated by user)
>>
>> [  650.027491][ T6056] pci 0000:00:01.0: PM: pci_pm_suspend_noirq returned 0 after 304 usecs
>>
>> See see timestamp difference between the last suspend message and the
>> first resume message.
>> [  674.000257][   T39] pci 0000:00:00.0: PM: calling pci_pm_resume_noirq @ 39, parent: pci0000:00
>>
>> usb 4-1 usb_dev_resume never returns.
>>
>> [  674.071125][ T6117] usb usb4: PM: usb_dev_resume returned 0 after 21110 usecs
>> [  674.113991][ T6126] usb 4-1: PM: calling usb_dev_resume @ 6126, parent: usb4
>>
>> -------------------------------------------------------------
>>
>> =====================
>> platform bus device
>> =====================
>>
>> - suspend was aborted because vhci_hcd suspend routine returned error
>>
>> [  297.854621][ T9402] usb 4-1: PM: calling usb_dev_suspend @ 9402, parent: usb4
>> [  297.868524][ T9402] usb 4-1: PM: usb_dev_suspend returned 0 after 13214 usecs
>> [  297.869994][ T9403] usb usb4: PM: calling usb_dev_suspend @ 9403, parent: vhci_hcd.0
>> [  297.871959][ T9403] usb usb4: PM: usb_dev_suspend returned 0 after 30 usecs
>> [  297.873644][ T9394] vhci_hcd vhci_hcd.0: PM: calling platform_pm_suspend @ 9394, parent: platform
>> [  297.874738][ T9394] vhci_hcd vhci_hcd.0: We have 1 active connection. Do not suspend.
>> [  297.875369][ T9394] vhci_hcd vhci_hcd.0: PM: dpm_run_callback(): platform_pm_suspend returns -16
>> [  297.876078][ T9394] vhci_hcd vhci_hcd.0: PM: platform_pm_suspend returned -16 after 1341 usecs
>> [  297.876774][ T9394] vhci_hcd vhci_hcd.0: PM: failed to suspend: error -16
>>
>> - the following triggers resume
>> [  297.877321][ T9394] PM: Some devices failed to suspend, or early wake event detected
>>
>> [  297.881065][ T9403] usb usb3: PM: usb_dev_resume returned 0 after 19 usecs
>> [  297.904551][ T9408] usb usb4: PM: usb_dev_resume returned 0 after 22911 usecs
>> [  297.905148][ T9418] usb 4-1: PM: calling usb_dev_resume @ 9418, parent: usb4
>>
>> usb 4-1 usb_dev_resume never returns.
>>
>> Note - In both cases, usb_dev_resume doesn't return. When it is called is the
>> difference.
>>
>> I don't think suspend/resume works when devices are bound. Suspend exits and
>> starts resume which seems to fail because it doesn't handle the virtual usb
>> device resume. There is a missing piece here.
>>
>> When vhci_hcd imports a device and acts as a proxy between the virtual mass
>> storage device (e.g in this case) - it appears suspend and resume are
>> handled as if it is a usb device. Maybe this is incorrect?
>>
>> usb_dev_suspend() works and usb_dev_resume() on these virtual usb devices?
>> Do we need to handle this in usb_dev_resume()?
>>
>> Talking out loud - I have to do some looking into.
>>
> Re:
> Yes, your analysis is completely correct.
> 
> In fact, I've experimented with adding PM hooks to the faux bus,
> and found that faux bus devices then behave identically to platform bus devices during suspend/resume.
> See the attachment.
> 

Thanks for checking this scenario. No surprises here.

> This is likely a historical legacy issue.

It is an existing problem in the way vhci_hcd and the bound devices
handle suspend/resume. vhci_hcd suspend assumes once it returns
"don't suspend" the rest works. However suspend for the bound device
runs first and a subsequent resume on it fails.

This problem needs fixing - I don't know yet how to.

> Regarding this matter, is there anything else you'd like me to assist with?
> 

One thing I am curious about is the status of the bound devices after
"forced restart of the machine" when you see blank screen or hang?

thanks,
-- Shuah

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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-07-08 18:16                           ` Shuah Khan
@ 2025-07-09  9:07                             ` Zongmin Zhou
  2025-07-09 10:06                               ` Greg KH
  2025-07-09 21:33                               ` Shuah Khan
  0 siblings, 2 replies; 33+ messages in thread
From: Zongmin Zhou @ 2025-07-09  9:07 UTC (permalink / raw)
  To: Shuah Khan, Greg KH
  Cc: shuah, valentina.manea.m, i, linux-kernel, linux-usb, zhouzongmin

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


On 2025/7/9 02:16, Shuah Khan wrote:
> On 7/3/25 00:04, Zongmin Zhou wrote:
>>
>> On 2025/7/3 07:54, Shuah Khan wrote:
>>> On 7/1/25 20:12, Zongmin Zhou wrote:
>>>>
>>>> On 2025/7/2 06:56, Shuah Khan wrote:
>>>>> On 6/23/25 21:21, Zongmin Zhou wrote:
>>>>>>
>>>>>> On 2025/6/21 01:26, Shuah Khan wrote:
>>>>>>> On 6/20/25 03:27, Greg KH wrote:
>>>>>>>> On Fri, Jun 20, 2025 at 05:19:33PM +0800, Zongmin Zhou wrote:
>>>>>>>>>
>>>>>>>>> On 2025/6/20 12:29, Greg KH wrote:
>>>>>>>>>> On Fri, Jun 20, 2025 at 10:16:16AM +0800, Zongmin Zhou wrote:
>>>>>>>>>>> On 2025/6/19 19:01, Greg KH wrote:
>>>>>>>>>>>> On Wed, Jun 04, 2025 at 02:54:10PM +0800, Zongmin Zhou wrote:
>>>>>>>>>>>>> From: Zongmin Zhou <zhouzongmin@kylinos.cn>
>>>>>>>>>>>>>
>>>>>>>>>>>>> The vhci driver does not need to create a platform device,
>>>>>>>>>>>>> it only did so because it was simple to do that in order to
>>>>>>>>>>>>> get a place in sysfs to hang some device-specific attributes.
>>>>>>>>>>>>> Now the faux device interface is more appropriate,change it
>>>>>>>>>>>>> over to use the faux bus instead.
>>>>>>>>>>>>>
>>>>>>>>>>>>> Signed-off-by: Zongmin Zhou <zhouzongmin@kylinos.cn>
>>>>>>>>>>>>> ---
>>>>>>>>>>>>> Changes in v2:
>>>>>>>>>>>>> - don't change faux create api,just call probe on 
>>>>>>>>>>>>> vhci_hcd_init.
>>>>>>>>>>>>>
>>>>>>>>>>>>>     drivers/usb/usbip/vhci.h |  4 +-
>>>>>>>>>>>>>     drivers/usb/usbip/vhci_hcd.c         | 86 
>>>>>>>>>>>>> +++++++++++-----------------
>>>>>>>>>>>>>     drivers/usb/usbip/vhci_sysfs.c       | 68 
>>>>>>>>>>>>> +++++++++++-----------
>>>>>>>>>>>>>     tools/usb/usbip/libsrc/vhci_driver.h |  2 +-
>>>>>>>>>>>>>     4 files changed, 72 insertions(+), 88 deletions(-)
>>>>>>>>>>>> I get the following build errors from this patch:
>>>>>>>>>>>>
>>>>>>>>>>>> drivers/usb/usbip/vhci_hcd.c:1462:12: error: 
>>>>>>>>>>>> ‘vhci_hcd_resume’ defined but not used 
>>>>>>>>>>>> [-Werror=unused-function]
>>>>>>>>>>>>     1462 | static int vhci_hcd_resume(struct faux_device 
>>>>>>>>>>>> *fdev)
>>>>>>>>>>>>          |            ^~~~~~~~~~~~~~~
>>>>>>>>>>>> drivers/usb/usbip/vhci_hcd.c:1418:12: error: 
>>>>>>>>>>>> ‘vhci_hcd_suspend’ defined but not used 
>>>>>>>>>>>> [-Werror=unused-function]
>>>>>>>>>>>>     1418 | static int vhci_hcd_suspend(struct faux_device 
>>>>>>>>>>>> *fdev, pm_message_t state)
>>>>>>>>>>>>          |            ^~~~~~~~~~~~~~~~
>>>>>>>>>>>> cc1: all warnings being treated as errors
>>>>>>>>>>>>
>>>>>>>>>>>> Are you sure you tested this?
>>>>>>>>>>> I apologize for not enabling -Werror, which resulted in 
>>>>>>>>>>> missing this error
>>>>>>>>>>> warning.
>>>>>>>>>>> I have tested usbip feature use the new patch,but not test 
>>>>>>>>>>> system
>>>>>>>>>>> suspend/resume.
>>>>>>>>>>> The faux bus type don't add pm function,and vhci-hcd driver 
>>>>>>>>>>> can't register
>>>>>>>>>>> it.
>>>>>>>>>>> Maybe have to add suspend/resume for it.like below:
>>>>>>>>>>> static const struct bus_type faux_bus_type = {
>>>>>>>>>>>       .name        = "faux",
>>>>>>>>>>>       .match        = faux_match,
>>>>>>>>>>>       .probe        = faux_probe,
>>>>>>>>>>>       .remove        = faux_remove,
>>>>>>>>>>>       .resume     = faux_resume,
>>>>>>>>>>>       .suspend    = faux_suspend,
>>>>>>>>>>> };
>>>>>>>>>>>
>>>>>>>>>>> Is that right?
>>>>>>>>>>> Your expertise would be greatly valued.
>>>>>>>>>> As this is not real hardware, why do you need the suspend/resume
>>>>>>>>>> callbacks at all?  What is happening here that requires them?
>>>>>>>>> @greg,
>>>>>>>>> The vhci_hcd_suspend/vhci_hcd_resume interfaces are not 
>>>>>>>>> designed for this
>>>>>>>>> faux device, but rather to
>>>>>>>>> manipulate the HCD_FLAG_HW_ACCESSIBLE bit in the hcd flags 
>>>>>>>>> associated with
>>>>>>>>> the faux device.
>>>>>>>>> For example:
>>>>>>>>> During system standby: clear_bit(HCD_FLAG_HW_ACCESSIBLE, 
>>>>>>>>> &hcd->flags)
>>>>>>>>> During system wakeup: set_bit(HCD_FLAG_HW_ACCESSIBLE, 
>>>>>>>>> &hcd->flags)
>>>>>>>>>
>>>>>>>>> Previously, these two functions were registered through 
>>>>>>>>> platform_driver,
>>>>>>>>> but faux bus does not have the relevant interface, so they 
>>>>>>>>> were not called,
>>>>>>>>> resulting in this compilation warning error.
>>>>>>>>>
>>>>>>>>> This raises the question: Should the faux bus implement 
>>>>>>>>> PM-related
>>>>>>>>> interface?
>>>>>>>>> I'm uncertain whether these functions are essential for the 
>>>>>>>>> vhci-hcd driver
>>>>>>>>> or if they can be safely removed.
>>>>>>>>>
>>>>>>>>> However, during system standby/wakeup tests with remote USB 
>>>>>>>>> devices bound to
>>>>>>>>> the vhci-hcd driver,
>>>>>>>>> I observed consistent failure scenarios across both the 
>>>>>>>>> original platform
>>>>>>>>> bus and faux bus patch implementations.
>>>>>>>
>>>>>>> suspend and resume hooks have been in the code from beginning
>>>>>>> in the CONFIG_PM path. The original authors are skeptical about
>>>>>>> what should happen during suspend"
>>>>>>>
>>>>>>> /* what should happen for USB/IP under suspend/resume? */
>>>>>>> suspend hook checks for active connections and sends EBBUSY
>>>>>>> back to pm core.
>>>>>>>
>>>>>>> Active connection means any of the ports are in 
>>>>>>> USB_PORT_STAT_CONNECTION
>>>>>>> state. So as long as there are active connections between vhci 
>>>>>>> client
>>>>>>> and the host, suspend won't work. So we really don't know what 
>>>>>>> happens
>>>>>>> to the active connections if there are no suspend/resume hooks.
>>>>>>>
>>>>>>> If there are no active connections, then it will clear the 
>>>>>>> HCD_FLAG_HW_ACCESSIBLE
>>>>>>> bit and returns to pm core to continue with suspend.
>>>>>>>
>>>>>>> resume sets the HCD_FLAG_HW_ACCESSIBLE flag to indicate hardware 
>>>>>>> is accessible
>>>>>>> and initiates port status poll.
>>>>>>>
>>>>>>> - suspend hook prevents suspend
>>>>>>>
>>>>>>> With faux device since there is no suspend and resume hook, I 
>>>>>>> would expect
>>>>>>> these hooks are not a factor in suspend and resume.
>>>>>>>
>>>>>>> vhci_hcd is a special case virtual driver as it is a proxy for 
>>>>>>> controlling
>>>>>>> hardware on the host.
>>>>>>>
>>>>>>> Zongmin,
>>>>>>>
>>>>>>> Do suspend/resume work when vhci_hcd is not loaded?
>>>>>>> What happens when when system suspends and resumes with faux 
>>>>>>> device?
>>>>>>> Can you send me dmesg logs and pm logs?
>>>>>>>
>>>>>> Hi Greg,shuah
>>>>>>
>>>>>> Yes, system with vhci_hcd unload or just load vhci_hcd driver
>>>>>> without usbip devices bound to vhci_hcd,system suspend/resume 
>>>>>> worked well.
>>>>>> Some logs for you.
>>>>>
>>>>> Sorry for the delay. I was at a conference last week.
>>>>> Thank you for sending these logs.
>>>>>
>>>>>> 1.system with vhci_hcd driver load,but don't bound any usbip 
>>>>>> devices to vhci_hcd,suspend/resume worked well.
>>>>>> see dmesg-faux bus-load.log
>>>>>
>>>>>
>>>>>>
>>>>>> 2.usbip device bound to vhci_hcd,and do system suspend 
>>>>>> action,suspend/resume worked failed.
>>>>>> I observed two distinct failure scenario:
>>>>>> Scenario 1: System failed to enter suspend state,and will auto 
>>>>>> resume;
>>>>>
>>>>>
>>>>>> the log for use platform bus:
>>>>>> dmesg-platform bus-device bound-auto resume.log
>>>>>
>>>>> This is clear from the suspend hook in the vhci_hcd.
>>>>> When it returns EBUSY, suspend will fail and move to
>>>>> auto resume.
>>>>>
>>>>>> the log for use faux bus:
>>>>>> dmesg-faux bus-device bound-auto resume.log
>>>>>
>>>>> It is good that the behavior is same with faux bus even though
>>>>> suspend hook isn't called. I will take a look at the log.
>>>>>
>>>>>>
>>>>>> Scenario 2: System resume failed with black screen freeze,a 
>>>>>> forced restart of the machine is require.
>>>>>> the log for use platform bus:
>>>>>> dmesg-platform bus-device bound-black screen.log
>>>>>> the log for use faux bus:
>>>>>> dmesg-faux bus-device bound-black screen.log
>>>>>
>>>>> That is bad. When does this happen? Is there a difference in
>>>>> configuration?
>>>>>
>>>> No, there's no difference. The same code is used for two different 
>>>> failure scenarios.
>>>> I just tested many times. These two different situations occur 
>>>> probabilistically.
>>>> But they both happened only when the USBIP device is bound to the 
>>>> vhci_hcd driver.
>>>>> The behavior same for platform bus and faux bus. Sounds like
>>>>> an existing problem that needs to be debugged separately.
>>>>>
>>>>> I will take a look at all these logs and get back to you in
>>>>> a day or two.
>>>>>
>>>
>>> I looked at the logs and here is what I found:
>>>
>>> Scenario 1:
>>>   dmesg-faux bus-device bound-auto resume.log
>>>   dmesg-platform bus-device bound-auto resume.log
>>>
>>> In this case suspend bailed out way before driver suspend
>>> when vhci_hcd is using platform and faux bus.
>>>
>>> Freezing remaining freezable tasks failed after 20.006 seconds (0 
>>> tasks refusing to freeze, wq_busy=1)
>>> Restarting kernel threads ... done
>>> OOM killer enabled.
>>> Restarting tasks ... done.
>>> random: crng reseeded on system resumption
>>> PM: suspend exit
>>>
>>> Auto-resume of the user-space worked. Scenario 1 isn't really
>>> interesting.
>>>
>>> Scenario 2:
>>>   dmesg-faux bus-device bound-black screen.log
>>>   dmesg-platform bus-device bound-black screen.log
>>>
>>> Even though the result is the same in seeing blank screen, how
>>> we get there is different.
>>>
>>> =================
>>> faux-bus device:
>>> =================
>>> - suspend worked - looks like
>>>   usb 4-1: PM: calling usb_dev_suspend @ 6054, parent: usb4
>>>   usb 4-1: PM: usb_dev_suspend returned 0 after 13675 usecs
>>>   usb usb4: PM: calling usb_dev_suspend @ 6055, parent: vhci_hcd.0
>>>   usb usb4: PM: usb_dev_suspend returned 0 after 9 usecs
>>>
>>> vhci_hcd suspend isn't in play here. usb_dev_suspend() returns.
>>> See below
>>>
>>> usb 4-1: PM: usb_dev_suspend returned message.
>>>
>>> -------------------------------------------------------------
>>>
>>> - resume started (assuming it has been initiated by user)
>>>
>>> [  650.027491][ T6056] pci 0000:00:01.0: PM: pci_pm_suspend_noirq 
>>> returned 0 after 304 usecs
>>>
>>> See see timestamp difference between the last suspend message and the
>>> first resume message.
>>> [  674.000257][   T39] pci 0000:00:00.0: PM: calling 
>>> pci_pm_resume_noirq @ 39, parent: pci0000:00
>>>
>>> usb 4-1 usb_dev_resume never returns.
>>>
>>> [  674.071125][ T6117] usb usb4: PM: usb_dev_resume returned 0 after 
>>> 21110 usecs
>>> [  674.113991][ T6126] usb 4-1: PM: calling usb_dev_resume @ 6126, 
>>> parent: usb4
>>>
>>> -------------------------------------------------------------
>>>
>>> =====================
>>> platform bus device
>>> =====================
>>>
>>> - suspend was aborted because vhci_hcd suspend routine returned error
>>>
>>> [  297.854621][ T9402] usb 4-1: PM: calling usb_dev_suspend @ 9402, 
>>> parent: usb4
>>> [  297.868524][ T9402] usb 4-1: PM: usb_dev_suspend returned 0 after 
>>> 13214 usecs
>>> [  297.869994][ T9403] usb usb4: PM: calling usb_dev_suspend @ 9403, 
>>> parent: vhci_hcd.0
>>> [  297.871959][ T9403] usb usb4: PM: usb_dev_suspend returned 0 
>>> after 30 usecs
>>> [  297.873644][ T9394] vhci_hcd vhci_hcd.0: PM: calling 
>>> platform_pm_suspend @ 9394, parent: platform
>>> [  297.874738][ T9394] vhci_hcd vhci_hcd.0: We have 1 active 
>>> connection. Do not suspend.
>>> [  297.875369][ T9394] vhci_hcd vhci_hcd.0: PM: dpm_run_callback(): 
>>> platform_pm_suspend returns -16
>>> [  297.876078][ T9394] vhci_hcd vhci_hcd.0: PM: platform_pm_suspend 
>>> returned -16 after 1341 usecs
>>> [  297.876774][ T9394] vhci_hcd vhci_hcd.0: PM: failed to suspend: 
>>> error -16
>>>
>>> - the following triggers resume
>>> [  297.877321][ T9394] PM: Some devices failed to suspend, or early 
>>> wake event detected
>>>
>>> [  297.881065][ T9403] usb usb3: PM: usb_dev_resume returned 0 after 
>>> 19 usecs
>>> [  297.904551][ T9408] usb usb4: PM: usb_dev_resume returned 0 after 
>>> 22911 usecs
>>> [  297.905148][ T9418] usb 4-1: PM: calling usb_dev_resume @ 9418, 
>>> parent: usb4
>>>
>>> usb 4-1 usb_dev_resume never returns.
>>>
>>> Note - In both cases, usb_dev_resume doesn't return. When it is 
>>> called is the
>>> difference.
>>>
>>> I don't think suspend/resume works when devices are bound. Suspend 
>>> exits and
>>> starts resume which seems to fail because it doesn't handle the 
>>> virtual usb
>>> device resume. There is a missing piece here.
>>>
>>> When vhci_hcd imports a device and acts as a proxy between the 
>>> virtual mass
>>> storage device (e.g in this case) - it appears suspend and resume are
>>> handled as if it is a usb device. Maybe this is incorrect?
>>>
>>> usb_dev_suspend() works and usb_dev_resume() on these virtual usb 
>>> devices?
>>> Do we need to handle this in usb_dev_resume()?
>>>
>>> Talking out loud - I have to do some looking into.
>>>
>> Re:
>> Yes, your analysis is completely correct.
>>
>> In fact, I've experimented with adding PM hooks to the faux bus,
>> and found that faux bus devices then behave identically to platform 
>> bus devices during suspend/resume.
>> See the attachment.
>>
>
> Thanks for checking this scenario. No surprises here.
Another part of my purpose in doing this is that the vhci-hcd driver seems
should still retain suspend/resume hooks. Therefore, the faux bus should
add corresponding hooks to allow the driver to call its own pm functions.
Though currently don't know how to fix this problem yet.
>
>> This is likely a historical legacy issue.
>
> It is an existing problem in the way vhci_hcd and the bound devices
> handle suspend/resume. vhci_hcd suspend assumes once it returns
> "don't suspend" the rest works. However suspend for the bound device
> runs first and a subsequent resume on it fails.
>
> This problem needs fixing - I don't know yet how to.
>
>> Regarding this matter, is there anything else you'd like me to assist 
>> with?
>>
>
> One thing I am curious about is the status of the bound devices after
> "forced restart of the machine" when you see blank screen or hang?
That's an excellent question.Another persistent problem has surfaced 
during troubleshooting:
After a USB/IP device is bound to the vhci-hcd driver, when the machine
reboots or performs a forced restart(include resume fail,forced restart),
attempting to re-bind the device to the vhci-hcd driver will generate 
the error message
"usbip: error: Attach Request for 4-2 failed - Device busy (exported)".
At this point, the device must first be explicitly detached
from the usbip-host driver before it can be bound again.

I implemented a shutdown hook (can refer to the attached file) in the 
vhci-hcd driver
to perform vhci_hcd remove before system shutdown.
This resolves failures where devices cannot rebind to
the vhci-hcd driver after normal reboots. However,
it remains ineffective for forced shutdown/reboot scenarios
since no shutdown functions are executed in such cases.

That's all details I've gathered yet.
>
> thanks,
> -- Shuah

[-- Attachment #2: 0001-driver-core-add-shutdown-hook-on-faux-bus.patch --]
[-- Type: text/x-patch, Size: 2793 bytes --]

From ffd863a2dbebbab065653eb2c351af61871d5c93 Mon Sep 17 00:00:00 2001
From: Zongmin Zhou <zhouzongmin@kylinos.cn>
Date: Tue, 8 Jul 2025 11:19:07 +0800
Subject: [PATCH] driver core: add shutdown hook on faux bus

Some devices based on faux bus may
have to do something during system shutdown.
So add shutdown hook to let it use its own shutdown hooks if had.

Signed-off-by: Zongmin Zhou <zhouzongmin@kylinos.cn>
---
 drivers/base/faux.c          | 11 +++++++++++
 drivers/usb/usbip/vhci_hcd.c | 12 ++++++++++++
 include/linux/device/faux.h  |  1 +
 3 files changed, 24 insertions(+)

diff --git a/drivers/base/faux.c b/drivers/base/faux.c
index cbaf265e9b6c..61cc0a25d2c7 100644
--- a/drivers/base/faux.c
+++ b/drivers/base/faux.c
@@ -92,6 +92,16 @@ static int faux_pm_resume(struct device *dev)
 #define faux_pm_resume	NULL
 #endif
 
+static void faux_shutdown(struct device *dev)
+{
+	struct faux_object *faux_obj = to_faux_object(dev);
+	struct faux_device *faux_dev = &faux_obj->faux_dev;
+	const struct faux_device_ops *faux_ops = faux_obj->faux_ops;
+
+	if (faux_ops && faux_ops->shutdown)
+		faux_ops->shutdown(faux_dev);
+}
+
 static const struct bus_type faux_bus_type = {
 	.name		= "faux",
 	.match		= faux_match,
@@ -99,6 +109,7 @@ static const struct bus_type faux_bus_type = {
 	.remove		= faux_remove,
 	.suspend	= faux_pm_suspend,
 	.resume		= faux_pm_resume,
+	.shutdown	= faux_shutdown,
 };
 
 static struct device_driver faux_driver = {
diff --git a/drivers/usb/usbip/vhci_hcd.c b/drivers/usb/usbip/vhci_hcd.c
index 79c026108d7b..01ce50b6abd5 100644
--- a/drivers/usb/usbip/vhci_hcd.c
+++ b/drivers/usb/usbip/vhci_hcd.c
@@ -1481,10 +1481,22 @@ static int vhci_hcd_resume(struct faux_device *fdev)
 
 #endif
 
+static void vhci_hcd_shutdown(struct faux_device *fdev)
+{
+	/*
+	 * Must to do something before system shutdown.
+	 * usbip devices attached to vhci-hcd,should be detached before system shutdown.
+	 * Otherwise,this device's status on stub
+	 * will always be SDEV_ST_USED,and can't be attached anymore.
+	 */
+	vhci_hcd_remove(fdev);
+}
+
 static struct faux_device_ops vhci_driver = {
 	.remove = vhci_hcd_remove,
 	.suspend = vhci_hcd_suspend,
 	.resume	= vhci_hcd_resume,
+	.shutdown = vhci_hcd_shutdown,
 };
 
 static void del_faux_devices(void)
diff --git a/include/linux/device/faux.h b/include/linux/device/faux.h
index 9dc4b81c672c..b3b66ab5de28 100644
--- a/include/linux/device/faux.h
+++ b/include/linux/device/faux.h
@@ -47,6 +47,7 @@ struct faux_device_ops {
 	void (*remove)(struct faux_device *faux_dev);
 	int (*suspend)(struct faux_device *faux_dev, pm_message_t state);
 	int (*resume)(struct faux_device *faux_dev);
+	void (*shutdown)(struct faux_device *faux_dev);
 };
 
 struct faux_device *faux_device_create(const char *name,
-- 
2.25.1


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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-07-09  9:07                             ` Zongmin Zhou
@ 2025-07-09 10:06                               ` Greg KH
  2025-07-09 14:20                                 ` Alan Stern
  2025-07-09 21:33                               ` Shuah Khan
  1 sibling, 1 reply; 33+ messages in thread
From: Greg KH @ 2025-07-09 10:06 UTC (permalink / raw)
  To: Zongmin Zhou
  Cc: Shuah Khan, shuah, valentina.manea.m, i, linux-kernel, linux-usb,
	zhouzongmin

On Wed, Jul 09, 2025 at 05:07:24PM +0800, Zongmin Zhou wrote:
> > > In fact, I've experimented with adding PM hooks to the faux bus,
> > > and found that faux bus devices then behave identically to platform
> > > bus devices during suspend/resume.
> > > See the attachment.
> > > 
> > 
> > Thanks for checking this scenario. No surprises here.
> Another part of my purpose in doing this is that the vhci-hcd driver seems
> should still retain suspend/resume hooks. Therefore, the faux bus should
> add corresponding hooks to allow the driver to call its own pm functions.
> Though currently don't know how to fix this problem yet.

I have no problem with adding the pm functions to the faux bus, BUT it
needs to make sense as to why they would be needed at all as this is not
a "real" device or bus that should need to do anything when
suspend/resume happens.

thanks,

greg k-h

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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-07-09 10:06                               ` Greg KH
@ 2025-07-09 14:20                                 ` Alan Stern
  2025-07-09 21:49                                   ` Shuah Khan
  0 siblings, 1 reply; 33+ messages in thread
From: Alan Stern @ 2025-07-09 14:20 UTC (permalink / raw)
  To: Greg KH
  Cc: Zongmin Zhou, Shuah Khan, shuah, valentina.manea.m, i,
	linux-kernel, linux-usb, zhouzongmin

On Wed, Jul 09, 2025 at 12:06:57PM +0200, Greg KH wrote:
> On Wed, Jul 09, 2025 at 05:07:24PM +0800, Zongmin Zhou wrote:
> > > > In fact, I've experimented with adding PM hooks to the faux bus,
> > > > and found that faux bus devices then behave identically to platform
> > > > bus devices during suspend/resume.
> > > > See the attachment.
> > > > 
> > > 
> > > Thanks for checking this scenario. No surprises here.
> > Another part of my purpose in doing this is that the vhci-hcd driver seems
> > should still retain suspend/resume hooks. Therefore, the faux bus should
> > add corresponding hooks to allow the driver to call its own pm functions.
> > Though currently don't know how to fix this problem yet.
> 
> I have no problem with adding the pm functions to the faux bus, BUT it
> needs to make sense as to why they would be needed at all as this is not
> a "real" device or bus that should need to do anything when
> suspend/resume happens.

The unique problem faced by vhci-hcd is that the devices it controls 
reside on external computer systems that have a lot of their own state, 
much more than ordinay USB devices have.  Consequently vhci-hcd may need 
to do more work for a PM transition than a normal driver would.

As an analogy, suppose you're running a program that has an open TCP 
connection to an external server.  If you suspend your computer, it 
won't be able to send the TCP keepalive packets that the server expects, 
and the server will eventually close the connection.  Then when your 
computer resumes, your program may misbehave when it finds its 
connection has spontaneously been closed for no apparent reason.

Alan Stern

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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-07-09  9:07                             ` Zongmin Zhou
  2025-07-09 10:06                               ` Greg KH
@ 2025-07-09 21:33                               ` Shuah Khan
  1 sibling, 0 replies; 33+ messages in thread
From: Shuah Khan @ 2025-07-09 21:33 UTC (permalink / raw)
  To: Zongmin Zhou, Greg KH
  Cc: shuah, valentina.manea.m, i, linux-kernel, linux-usb, zhouzongmin,
	Shuah Khan

On 7/9/25 03:07, Zongmin Zhou wrote:
> 
> On 2025/7/9 02:16, Shuah Khan wrote:
>> On 7/3/25 00:04, Zongmin Zhou wrote:
>>>
>>> On 2025/7/3 07:54, Shuah Khan wrote:
>>>> On 7/1/25 20:12, Zongmin Zhou wrote:
>>>>>
>>>>> On 2025/7/2 06:56, Shuah Khan wrote:
>>>>>> On 6/23/25 21:21, Zongmin Zhou wrote:
>>>>>>>
>>>>>>> On 2025/6/21 01:26, Shuah Khan wrote:
>>>>>>>> On 6/20/25 03:27, Greg KH wrote:
>>>>>>>>> On Fri, Jun 20, 2025 at 05:19:33PM +0800, Zongmin Zhou wrote:
>>>>>>>>>>
>>>>>>>>>> On 2025/6/20 12:29, Greg KH wrote:
>>>>>>>>>>> On Fri, Jun 20, 2025 at 10:16:16AM +0800, Zongmin Zhou wrote:
>>>>>>>>>>>> On 2025/6/19 19:01, Greg KH wrote:
>>>>>>>>>>>>> On Wed, Jun 04, 2025 at 02:54:10PM +0800, Zongmin Zhou wrote:
>>>>>>>>>>>>>> From: Zongmin Zhou <zhouzongmin@kylinos.cn>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> The vhci driver does not need to create a platform device,
>>>>>>>>>>>>>> it only did so because it was simple to do that in order to
>>>>>>>>>>>>>> get a place in sysfs to hang some device-specific attributes.
>>>>>>>>>>>>>> Now the faux device interface is more appropriate,change it
>>>>>>>>>>>>>> over to use the faux bus instead.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Signed-off-by: Zongmin Zhou <zhouzongmin@kylinos.cn>
>>>>>>>>>>>>>> ---
>>>>>>>>>>>>>> Changes in v2:
>>>>>>>>>>>>>> - don't change faux create api,just call probe on vhci_hcd_init.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>     drivers/usb/usbip/vhci.h |  4 +-
>>>>>>>>>>>>>>     drivers/usb/usbip/vhci_hcd.c         | 86 +++++++++++-----------------
>>>>>>>>>>>>>>     drivers/usb/usbip/vhci_sysfs.c       | 68 +++++++++++-----------
>>>>>>>>>>>>>>     tools/usb/usbip/libsrc/vhci_driver.h |  2 +-
>>>>>>>>>>>>>>     4 files changed, 72 insertions(+), 88 deletions(-)
>>>>>>>>>>>>> I get the following build errors from this patch:
>>>>>>>>>>>>>
>>>>>>>>>>>>> drivers/usb/usbip/vhci_hcd.c:1462:12: error: ‘vhci_hcd_resume’ defined but not used [-Werror=unused-function]
>>>>>>>>>>>>>     1462 | static int vhci_hcd_resume(struct faux_device *fdev)
>>>>>>>>>>>>>          |            ^~~~~~~~~~~~~~~
>>>>>>>>>>>>> drivers/usb/usbip/vhci_hcd.c:1418:12: error: ‘vhci_hcd_suspend’ defined but not used [-Werror=unused-function]
>>>>>>>>>>>>>     1418 | static int vhci_hcd_suspend(struct faux_device *fdev, pm_message_t state)
>>>>>>>>>>>>>          |            ^~~~~~~~~~~~~~~~
>>>>>>>>>>>>> cc1: all warnings being treated as errors
>>>>>>>>>>>>>
>>>>>>>>>>>>> Are you sure you tested this?
>>>>>>>>>>>> I apologize for not enabling -Werror, which resulted in missing this error
>>>>>>>>>>>> warning.
>>>>>>>>>>>> I have tested usbip feature use the new patch,but not test system
>>>>>>>>>>>> suspend/resume.
>>>>>>>>>>>> The faux bus type don't add pm function,and vhci-hcd driver can't register
>>>>>>>>>>>> it.
>>>>>>>>>>>> Maybe have to add suspend/resume for it.like below:
>>>>>>>>>>>> static const struct bus_type faux_bus_type = {
>>>>>>>>>>>>       .name        = "faux",
>>>>>>>>>>>>       .match        = faux_match,
>>>>>>>>>>>>       .probe        = faux_probe,
>>>>>>>>>>>>       .remove        = faux_remove,
>>>>>>>>>>>>       .resume     = faux_resume,
>>>>>>>>>>>>       .suspend    = faux_suspend,
>>>>>>>>>>>> };
>>>>>>>>>>>>
>>>>>>>>>>>> Is that right?
>>>>>>>>>>>> Your expertise would be greatly valued.
>>>>>>>>>>> As this is not real hardware, why do you need the suspend/resume
>>>>>>>>>>> callbacks at all?  What is happening here that requires them?
>>>>>>>>>> @greg,
>>>>>>>>>> The vhci_hcd_suspend/vhci_hcd_resume interfaces are not designed for this
>>>>>>>>>> faux device, but rather to
>>>>>>>>>> manipulate the HCD_FLAG_HW_ACCESSIBLE bit in the hcd flags associated with
>>>>>>>>>> the faux device.
>>>>>>>>>> For example:
>>>>>>>>>> During system standby: clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)
>>>>>>>>>> During system wakeup: set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)
>>>>>>>>>>
>>>>>>>>>> Previously, these two functions were registered through platform_driver,
>>>>>>>>>> but faux bus does not have the relevant interface, so they were not called,
>>>>>>>>>> resulting in this compilation warning error.
>>>>>>>>>>
>>>>>>>>>> This raises the question: Should the faux bus implement PM-related
>>>>>>>>>> interface?
>>>>>>>>>> I'm uncertain whether these functions are essential for the vhci-hcd driver
>>>>>>>>>> or if they can be safely removed.
>>>>>>>>>>
>>>>>>>>>> However, during system standby/wakeup tests with remote USB devices bound to
>>>>>>>>>> the vhci-hcd driver,
>>>>>>>>>> I observed consistent failure scenarios across both the original platform
>>>>>>>>>> bus and faux bus patch implementations.
>>>>>>>>
>>>>>>>> suspend and resume hooks have been in the code from beginning
>>>>>>>> in the CONFIG_PM path. The original authors are skeptical about
>>>>>>>> what should happen during suspend"
>>>>>>>>
>>>>>>>> /* what should happen for USB/IP under suspend/resume? */
>>>>>>>> suspend hook checks for active connections and sends EBBUSY
>>>>>>>> back to pm core.
>>>>>>>>
>>>>>>>> Active connection means any of the ports are in USB_PORT_STAT_CONNECTION
>>>>>>>> state. So as long as there are active connections between vhci client
>>>>>>>> and the host, suspend won't work. So we really don't know what happens
>>>>>>>> to the active connections if there are no suspend/resume hooks.
>>>>>>>>
>>>>>>>> If there are no active connections, then it will clear the HCD_FLAG_HW_ACCESSIBLE
>>>>>>>> bit and returns to pm core to continue with suspend.
>>>>>>>>
>>>>>>>> resume sets the HCD_FLAG_HW_ACCESSIBLE flag to indicate hardware is accessible
>>>>>>>> and initiates port status poll.
>>>>>>>>
>>>>>>>> - suspend hook prevents suspend
>>>>>>>>
>>>>>>>> With faux device since there is no suspend and resume hook, I would expect
>>>>>>>> these hooks are not a factor in suspend and resume.
>>>>>>>>
>>>>>>>> vhci_hcd is a special case virtual driver as it is a proxy for controlling
>>>>>>>> hardware on the host.
>>>>>>>>
>>>>>>>> Zongmin,
>>>>>>>>
>>>>>>>> Do suspend/resume work when vhci_hcd is not loaded?
>>>>>>>> What happens when when system suspends and resumes with faux device?
>>>>>>>> Can you send me dmesg logs and pm logs?
>>>>>>>>
>>>>>>> Hi Greg,shuah
>>>>>>>
>>>>>>> Yes, system with vhci_hcd unload or just load vhci_hcd driver
>>>>>>> without usbip devices bound to vhci_hcd,system suspend/resume worked well.
>>>>>>> Some logs for you.
>>>>>>
>>>>>> Sorry for the delay. I was at a conference last week.
>>>>>> Thank you for sending these logs.
>>>>>>
>>>>>>> 1.system with vhci_hcd driver load,but don't bound any usbip devices to vhci_hcd,suspend/resume worked well.
>>>>>>> see dmesg-faux bus-load.log
>>>>>>
>>>>>>
>>>>>>>
>>>>>>> 2.usbip device bound to vhci_hcd,and do system suspend action,suspend/resume worked failed.
>>>>>>> I observed two distinct failure scenario:
>>>>>>> Scenario 1: System failed to enter suspend state,and will auto resume;
>>>>>>
>>>>>>
>>>>>>> the log for use platform bus:
>>>>>>> dmesg-platform bus-device bound-auto resume.log
>>>>>>
>>>>>> This is clear from the suspend hook in the vhci_hcd.
>>>>>> When it returns EBUSY, suspend will fail and move to
>>>>>> auto resume.
>>>>>>
>>>>>>> the log for use faux bus:
>>>>>>> dmesg-faux bus-device bound-auto resume.log
>>>>>>
>>>>>> It is good that the behavior is same with faux bus even though
>>>>>> suspend hook isn't called. I will take a look at the log.
>>>>>>
>>>>>>>
>>>>>>> Scenario 2: System resume failed with black screen freeze,a forced restart of the machine is require.
>>>>>>> the log for use platform bus:
>>>>>>> dmesg-platform bus-device bound-black screen.log
>>>>>>> the log for use faux bus:
>>>>>>> dmesg-faux bus-device bound-black screen.log
>>>>>>
>>>>>> That is bad. When does this happen? Is there a difference in
>>>>>> configuration?
>>>>>>
>>>>> No, there's no difference. The same code is used for two different failure scenarios.
>>>>> I just tested many times. These two different situations occur probabilistically.
>>>>> But they both happened only when the USBIP device is bound to the vhci_hcd driver.
>>>>>> The behavior same for platform bus and faux bus. Sounds like
>>>>>> an existing problem that needs to be debugged separately.
>>>>>>
>>>>>> I will take a look at all these logs and get back to you in
>>>>>> a day or two.
>>>>>>
>>>>
>>>> I looked at the logs and here is what I found:
>>>>
>>>> Scenario 1:
>>>>   dmesg-faux bus-device bound-auto resume.log
>>>>   dmesg-platform bus-device bound-auto resume.log
>>>>
>>>> In this case suspend bailed out way before driver suspend
>>>> when vhci_hcd is using platform and faux bus.
>>>>
>>>> Freezing remaining freezable tasks failed after 20.006 seconds (0 tasks refusing to freeze, wq_busy=1)
>>>> Restarting kernel threads ... done
>>>> OOM killer enabled.
>>>> Restarting tasks ... done.
>>>> random: crng reseeded on system resumption
>>>> PM: suspend exit
>>>>
>>>> Auto-resume of the user-space worked. Scenario 1 isn't really
>>>> interesting.
>>>>
>>>> Scenario 2:
>>>>   dmesg-faux bus-device bound-black screen.log
>>>>   dmesg-platform bus-device bound-black screen.log
>>>>
>>>> Even though the result is the same in seeing blank screen, how
>>>> we get there is different.
>>>>
>>>> =================
>>>> faux-bus device:
>>>> =================
>>>> - suspend worked - looks like
>>>>   usb 4-1: PM: calling usb_dev_suspend @ 6054, parent: usb4
>>>>   usb 4-1: PM: usb_dev_suspend returned 0 after 13675 usecs
>>>>   usb usb4: PM: calling usb_dev_suspend @ 6055, parent: vhci_hcd.0
>>>>   usb usb4: PM: usb_dev_suspend returned 0 after 9 usecs
>>>>
>>>> vhci_hcd suspend isn't in play here. usb_dev_suspend() returns.
>>>> See below
>>>>
>>>> usb 4-1: PM: usb_dev_suspend returned message.
>>>>
>>>> -------------------------------------------------------------
>>>>
>>>> - resume started (assuming it has been initiated by user)
>>>>
>>>> [  650.027491][ T6056] pci 0000:00:01.0: PM: pci_pm_suspend_noirq returned 0 after 304 usecs
>>>>
>>>> See see timestamp difference between the last suspend message and the
>>>> first resume message.
>>>> [  674.000257][   T39] pci 0000:00:00.0: PM: calling pci_pm_resume_noirq @ 39, parent: pci0000:00
>>>>
>>>> usb 4-1 usb_dev_resume never returns.
>>>>
>>>> [  674.071125][ T6117] usb usb4: PM: usb_dev_resume returned 0 after 21110 usecs
>>>> [  674.113991][ T6126] usb 4-1: PM: calling usb_dev_resume @ 6126, parent: usb4
>>>>
>>>> -------------------------------------------------------------
>>>>
>>>> =====================
>>>> platform bus device
>>>> =====================
>>>>
>>>> - suspend was aborted because vhci_hcd suspend routine returned error
>>>>
>>>> [  297.854621][ T9402] usb 4-1: PM: calling usb_dev_suspend @ 9402, parent: usb4
>>>> [  297.868524][ T9402] usb 4-1: PM: usb_dev_suspend returned 0 after 13214 usecs
>>>> [  297.869994][ T9403] usb usb4: PM: calling usb_dev_suspend @ 9403, parent: vhci_hcd.0
>>>> [  297.871959][ T9403] usb usb4: PM: usb_dev_suspend returned 0 after 30 usecs
>>>> [  297.873644][ T9394] vhci_hcd vhci_hcd.0: PM: calling platform_pm_suspend @ 9394, parent: platform
>>>> [  297.874738][ T9394] vhci_hcd vhci_hcd.0: We have 1 active connection. Do not suspend.
>>>> [  297.875369][ T9394] vhci_hcd vhci_hcd.0: PM: dpm_run_callback(): platform_pm_suspend returns -16
>>>> [  297.876078][ T9394] vhci_hcd vhci_hcd.0: PM: platform_pm_suspend returned -16 after 1341 usecs
>>>> [  297.876774][ T9394] vhci_hcd vhci_hcd.0: PM: failed to suspend: error -16
>>>>
>>>> - the following triggers resume
>>>> [  297.877321][ T9394] PM: Some devices failed to suspend, or early wake event detected
>>>>
>>>> [  297.881065][ T9403] usb usb3: PM: usb_dev_resume returned 0 after 19 usecs
>>>> [  297.904551][ T9408] usb usb4: PM: usb_dev_resume returned 0 after 22911 usecs
>>>> [  297.905148][ T9418] usb 4-1: PM: calling usb_dev_resume @ 9418, parent: usb4
>>>>
>>>> usb 4-1 usb_dev_resume never returns.
>>>>
>>>> Note - In both cases, usb_dev_resume doesn't return. When it is called is the
>>>> difference.
>>>>
>>>> I don't think suspend/resume works when devices are bound. Suspend exits and
>>>> starts resume which seems to fail because it doesn't handle the virtual usb
>>>> device resume. There is a missing piece here.
>>>>
>>>> When vhci_hcd imports a device and acts as a proxy between the virtual mass
>>>> storage device (e.g in this case) - it appears suspend and resume are
>>>> handled as if it is a usb device. Maybe this is incorrect?
>>>>
>>>> usb_dev_suspend() works and usb_dev_resume() on these virtual usb devices?
>>>> Do we need to handle this in usb_dev_resume()?
>>>>
>>>> Talking out loud - I have to do some looking into.
>>>>
>>> Re:
>>> Yes, your analysis is completely correct.
>>>
>>> In fact, I've experimented with adding PM hooks to the faux bus,
>>> and found that faux bus devices then behave identically to platform bus devices during suspend/resume.
>>> See the attachment.
>>>
>>
>> Thanks for checking this scenario. No surprises here.
> Another part of my purpose in doing this is that the vhci-hcd driver seems
> should still retain suspend/resume hooks. Therefore, the faux bus should
> add corresponding hooks to allow the driver to call its own pm functions.
> Though currently don't know how to fix this problem yet.
>>
>>> This is likely a historical legacy issue.
>>
>> It is an existing problem in the way vhci_hcd and the bound devices
>> handle suspend/resume. vhci_hcd suspend assumes once it returns
>> "don't suspend" the rest works. However suspend for the bound device
>> runs first and a subsequent resume on it fails.
>>
>> This problem needs fixing - I don't know yet how to.
>>
>>> Regarding this matter, is there anything else you'd like me to assist with?
>>>
>>
>> One thing I am curious about is the status of the bound devices after
>> "forced restart of the machine" when you see blank screen or hang?
> That's an excellent question.Another persistent problem has surfaced during troubleshooting:
> After a USB/IP device is bound to the vhci-hcd driver, when the machine
> reboots or performs a forced restart(include resume fail,forced restart),
> attempting to re-bind the device to the vhci-hcd driver will generate the error message
> "usbip: error: Attach Request for 4-2 failed - Device busy (exported)".
> At this point, the device must first be explicitly detached
> from the usbip-host driver before it can be bound again.

The error is coming from the usbip host (server) which would have
stayed up  during client side reboot.

It requires an extra detach step before the attach. vhci client
doesn't do detach on it own. Attach and detach are user initiated.
So the current behavior is inline with that.

I don't dislike the shutdown use which essentially mimics
a series of "detach" commands from the user-space. However the
solution that works in conjunction with the usbip host side.

usbip_host - stub driver doesn't implement suspend/resume.


> I implemented a shutdown hook (can refer to the attached file) in the vhci-hcd driver
> to perform vhci_hcd remove before system shutdown.
> This resolves failures where devices cannot rebind to
> the vhci-hcd driver after normal reboots. However,
> it remains ineffective for forced shutdown/reboot scenarios
> since no shutdown functions are executed in such cases.

The problem here is that current vhci_suspend/resume are ineffective
usb core initiates usb_dev_suspend on the virtual device.

The solution could be to disable auto-suspend on virtual devices.
This would eliminate the suspend and resume hanging issue.

There is the server side issue - what happens when usbip host
suspends? We have a few components here to think about.

usbipd (user-space)
vhci_hcd and the usb devices it creates

usbip_host, stub driver that proxies between the device
on the server and vhci_client.

PM can be complex and it has to do lot more than it currently
does on both server and client end to support seamlessly.

thanks,
-- Shuah





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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-07-09 14:20                                 ` Alan Stern
@ 2025-07-09 21:49                                   ` Shuah Khan
  2025-07-09 21:57                                     ` Shuah Khan
  0 siblings, 1 reply; 33+ messages in thread
From: Shuah Khan @ 2025-07-09 21:49 UTC (permalink / raw)
  To: Alan Stern, Greg KH
  Cc: Zongmin Zhou, shuah, valentina.manea.m, i, linux-kernel,
	linux-usb, zhouzongmin, Shuah Khan

On 7/9/25 08:20, Alan Stern wrote:
> On Wed, Jul 09, 2025 at 12:06:57PM +0200, Greg KH wrote:
>> On Wed, Jul 09, 2025 at 05:07:24PM +0800, Zongmin Zhou wrote:
>>>>> In fact, I've experimented with adding PM hooks to the faux bus,
>>>>> and found that faux bus devices then behave identically to platform
>>>>> bus devices during suspend/resume.
>>>>> See the attachment.
>>>>>
>>>>
>>>> Thanks for checking this scenario. No surprises here.
>>> Another part of my purpose in doing this is that the vhci-hcd driver seems
>>> should still retain suspend/resume hooks. Therefore, the faux bus should
>>> add corresponding hooks to allow the driver to call its own pm functions.
>>> Though currently don't know how to fix this problem yet.
>>
>> I have no problem with adding the pm functions to the faux bus, BUT it
>> needs to make sense as to why they would be needed at all as this is not
>> a "real" device or bus that should need to do anything when
>> suspend/resume happens.
> 
> The unique problem faced by vhci-hcd is that the devices it controls
> reside on external computer systems that have a lot of their own state,
> much more than ordinay USB devices have.  Consequently vhci-hcd may need
> to do more work for a PM transition than a normal driver would.
> 
> As an analogy, suppose you're running a program that has an open TCP
> connection to an external server.  If you suspend your computer, it
> won't be able to send the TCP keepalive packets that the server expects,
> and the server will eventually close the connection.  Then when your
> computer resumes, your program may misbehave when it finds its
> connection has spontaneously been closed for no apparent reason.
> 

Right. We have a few too many moving pieces here:

usbipd (user-space)
vhci_hcd and the usb devices it creates

usbip_host, stub driver that proxies between the device
on the server and vhci_client.

PM can be complex and it has to do lot more than it currently
does on both server and client end to support seamlessly.

The current suspend took the approach of refusing suspend
which doesn't work since usb devices underneath hang in
usb_dev_resume(). Looks like this usb device is treated like
a real device bu usb core. Is there a way to have usb core
PM (suspend and resume) handle them as virtual? Would it
help to use "supports_autosuspend" to disable suspend and
resume?

This would solve the hang during usb_dev_resume() problem.

Maybe vhci_hcd isn't a good candidate for faux bus? It appears
we might have a need for a shutdown, suspend at the very least
to be able to support reboot/suspend/resume cases?

The current code doesn't handle suspend/resume correctly when
devices are imported.

thanks,
-- Shuah




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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-07-09 21:49                                   ` Shuah Khan
@ 2025-07-09 21:57                                     ` Shuah Khan
  2025-07-10 14:06                                       ` Alan Stern
  0 siblings, 1 reply; 33+ messages in thread
From: Shuah Khan @ 2025-07-09 21:57 UTC (permalink / raw)
  To: Alan Stern, Greg KH
  Cc: Zongmin Zhou, shuah, valentina.manea.m, i, linux-kernel,
	linux-usb, zhouzongmin, Shuah Khan

On 7/9/25 15:49, Shuah Khan wrote:
> On 7/9/25 08:20, Alan Stern wrote:
>> On Wed, Jul 09, 2025 at 12:06:57PM +0200, Greg KH wrote:
>>> On Wed, Jul 09, 2025 at 05:07:24PM +0800, Zongmin Zhou wrote:
>>>>>> In fact, I've experimented with adding PM hooks to the faux bus,
>>>>>> and found that faux bus devices then behave identically to platform
>>>>>> bus devices during suspend/resume.
>>>>>> See the attachment.
>>>>>>
>>>>>
>>>>> Thanks for checking this scenario. No surprises here.
>>>> Another part of my purpose in doing this is that the vhci-hcd driver seems
>>>> should still retain suspend/resume hooks. Therefore, the faux bus should
>>>> add corresponding hooks to allow the driver to call its own pm functions.
>>>> Though currently don't know how to fix this problem yet.
>>>
>>> I have no problem with adding the pm functions to the faux bus, BUT it
>>> needs to make sense as to why they would be needed at all as this is not
>>> a "real" device or bus that should need to do anything when
>>> suspend/resume happens.
>>
>> The unique problem faced by vhci-hcd is that the devices it controls
>> reside on external computer systems that have a lot of their own state,
>> much more than ordinay USB devices have.  Consequently vhci-hcd may need
>> to do more work for a PM transition than a normal driver would.
>>
>> As an analogy, suppose you're running a program that has an open TCP
>> connection to an external server.  If you suspend your computer, it
>> won't be able to send the TCP keepalive packets that the server expects,
>> and the server will eventually close the connection.  Then when your
>> computer resumes, your program may misbehave when it finds its
>> connection has spontaneously been closed for no apparent reason.
>>
> 
> Right. We have a few too many moving pieces here:
> 
> usbipd (user-space)
> vhci_hcd and the usb devices it creates
> 
> usbip_host, stub driver that proxies between the device
> on the server and vhci_client.
> 
> PM can be complex and it has to do lot more than it currently
> does on both server and client end to support seamlessly.
> 
> The current suspend took the approach of refusing suspend
> which doesn't work since usb devices underneath hang in
> usb_dev_resume(). Looks like this usb device is treated like
> a real device bu usb core. Is there a way to have usb core
> PM (suspend and resume) handle them as virtual? Would it
> help to use "supports_autosuspend" to disable suspend and
> resume?

Would it work if usb_disable_autosuspend() on the devices
that hang off its vitual bus?

thanks,
-- Shuah

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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-07-09 21:57                                     ` Shuah Khan
@ 2025-07-10 14:06                                       ` Alan Stern
  2025-07-10 20:33                                         ` Shuah Khan
  0 siblings, 1 reply; 33+ messages in thread
From: Alan Stern @ 2025-07-10 14:06 UTC (permalink / raw)
  To: Shuah Khan
  Cc: Greg KH, Zongmin Zhou, shuah, valentina.manea.m, i, linux-kernel,
	linux-usb, zhouzongmin

On Wed, Jul 09, 2025 at 03:57:35PM -0600, Shuah Khan wrote:
> On 7/9/25 15:49, Shuah Khan wrote:
> > Right. We have a few too many moving pieces here:
> > 
> > usbipd (user-space)
> > vhci_hcd and the usb devices it creates
> > 
> > usbip_host, stub driver that proxies between the device
> > on the server and vhci_client.
> > 
> > PM can be complex and it has to do lot more than it currently
> > does on both server and client end to support seamlessly.
> > 
> > The current suspend took the approach of refusing suspend
> > which doesn't work since usb devices underneath hang in
> > usb_dev_resume(). Looks like this usb device is treated like
> > a real device bu usb core. Is there a way to have usb core
> > PM (suspend and resume) handle them as virtual? Would it
> > help to use "supports_autosuspend" to disable suspend and
> > resume?
> 
> Would it work if usb_disable_autosuspend() on the devices
> that hang off its vitual bus?

You have to consider PM on both the host and client.  And you have to 
consider both runtime PM and system PM (that is, suspend to RAM, 
hibernate, etc.).

On the server, any sort of suspend will interrupt the connection.  
usb_disable_autosuspend() will prevent runtime suspends, but you 
shouldn't try to prevent system suspends.  Instead, the usbip driver on 
the server should have its suspend routine close the connection to the 
client (rather as if the server's user had unplugged the device).

On the client, you've got a choice for how to handle runtime PM.  You 
can leave it enabled, and when the client decides to suspend the device, 
tell the server's driver.  The server driver can then attempt to do a 
runtime suspend on the physical device.  (You might need to add a new 
type of message to the USBIP protocol to accomplish this; I don't know 
the details.)  Alternatively, you can forbid runtime suspend on the 
client entirely, although it would be nice if you could avoid this.

System PM on the client can be handled more less the same as runtime PM.

Alan Stern

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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-07-10 14:06                                       ` Alan Stern
@ 2025-07-10 20:33                                         ` Shuah Khan
  2025-07-11  5:56                                           ` Greg KH
  2025-07-14  5:31                                           ` Zongmin Zhou
  0 siblings, 2 replies; 33+ messages in thread
From: Shuah Khan @ 2025-07-10 20:33 UTC (permalink / raw)
  To: Alan Stern, Greg KH, Zongmin Zhou
  Cc: shuah, valentina.manea.m, i, linux-kernel, linux-usb, zhouzongmin,
	Shuah Khan

On 7/10/25 08:06, Alan Stern wrote:
> On Wed, Jul 09, 2025 at 03:57:35PM -0600, Shuah Khan wrote:
>> On 7/9/25 15:49, Shuah Khan wrote:
>>> Right. We have a few too many moving pieces here:
>>>
>>> usbipd (user-space)
>>> vhci_hcd and the usb devices it creates
>>>
>>> usbip_host, stub driver that proxies between the device
>>> on the server and vhci_client.
>>>
>>> PM can be complex and it has to do lot more than it currently
>>> does on both server and client end to support seamlessly.
>>>
>>> The current suspend took the approach of refusing suspend
>>> which doesn't work since usb devices underneath hang in
>>> usb_dev_resume(). Looks like this usb device is treated like
>>> a real device bu usb core. Is there a way to have usb core
>>> PM (suspend and resume) handle them as virtual? Would it
>>> help to use "supports_autosuspend" to disable suspend and
>>> resume?
>>
>> Would it work if usb_disable_autosuspend() on the devices
>> that hang off its vitual bus?
> 
> You have to consider PM on both the host and client.  And you have to
> consider both runtime PM and system PM (that is, suspend to RAM,
> hibernate, etc.).

This would be as a fix for the existing suspend hang issue.

> 
> On the server, any sort of suspend will interrupt the connection.
> usb_disable_autosuspend() will prevent runtime suspends, but you
> shouldn't try to prevent system suspends.  Instead, the usbip driver on
> the server should have its suspend routine close the connection to the
> client (rather as if the server's user had unplugged the device).
> 
> On the client, you've got a choice for how to handle runtime PM.  You
> can leave it enabled, and when the client decides to suspend the device,
> tell the server's driver.  The server driver can then attempt to do a
> runtime suspend on the physical device.  (You might need to add a new
> type of message to the USBIP protocol to accomplish this; I don't know
> the details.)  Alternatively, you can forbid runtime suspend on the
> client entirely, although it would be nice if you could avoid this.
> 
> System PM on the client can be handled more less the same as runtime PM.

Correct. This has to be a complete solution that syncs up server and client
side. I am going to look into implementing this - it might be possible to
do this in user-space. Either way this will require changes to the protocol
very likely.

Greg, Zongmin Zhou, let's hold off on this conversion yo faux bus for now.
I will spend time looking at if we can find PM solution that works end to end
for server and client.

thanks,
-- Shuah

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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-07-10 20:33                                         ` Shuah Khan
@ 2025-07-11  5:56                                           ` Greg KH
  2025-07-14  5:31                                           ` Zongmin Zhou
  1 sibling, 0 replies; 33+ messages in thread
From: Greg KH @ 2025-07-11  5:56 UTC (permalink / raw)
  To: Shuah Khan
  Cc: Alan Stern, Zongmin Zhou, shuah, valentina.manea.m, i,
	linux-kernel, linux-usb, zhouzongmin

On Thu, Jul 10, 2025 at 02:33:42PM -0600, Shuah Khan wrote:
> On 7/10/25 08:06, Alan Stern wrote:
> > On Wed, Jul 09, 2025 at 03:57:35PM -0600, Shuah Khan wrote:
> > > On 7/9/25 15:49, Shuah Khan wrote:
> > > > Right. We have a few too many moving pieces here:
> > > > 
> > > > usbipd (user-space)
> > > > vhci_hcd and the usb devices it creates
> > > > 
> > > > usbip_host, stub driver that proxies between the device
> > > > on the server and vhci_client.
> > > > 
> > > > PM can be complex and it has to do lot more than it currently
> > > > does on both server and client end to support seamlessly.
> > > > 
> > > > The current suspend took the approach of refusing suspend
> > > > which doesn't work since usb devices underneath hang in
> > > > usb_dev_resume(). Looks like this usb device is treated like
> > > > a real device bu usb core. Is there a way to have usb core
> > > > PM (suspend and resume) handle them as virtual? Would it
> > > > help to use "supports_autosuspend" to disable suspend and
> > > > resume?
> > > 
> > > Would it work if usb_disable_autosuspend() on the devices
> > > that hang off its vitual bus?
> > 
> > You have to consider PM on both the host and client.  And you have to
> > consider both runtime PM and system PM (that is, suspend to RAM,
> > hibernate, etc.).
> 
> This would be as a fix for the existing suspend hang issue.
> 
> > 
> > On the server, any sort of suspend will interrupt the connection.
> > usb_disable_autosuspend() will prevent runtime suspends, but you
> > shouldn't try to prevent system suspends.  Instead, the usbip driver on
> > the server should have its suspend routine close the connection to the
> > client (rather as if the server's user had unplugged the device).
> > 
> > On the client, you've got a choice for how to handle runtime PM.  You
> > can leave it enabled, and when the client decides to suspend the device,
> > tell the server's driver.  The server driver can then attempt to do a
> > runtime suspend on the physical device.  (You might need to add a new
> > type of message to the USBIP protocol to accomplish this; I don't know
> > the details.)  Alternatively, you can forbid runtime suspend on the
> > client entirely, although it would be nice if you could avoid this.
> > 
> > System PM on the client can be handled more less the same as runtime PM.
> 
> Correct. This has to be a complete solution that syncs up server and client
> side. I am going to look into implementing this - it might be possible to
> do this in user-space. Either way this will require changes to the protocol
> very likely.
> 
> Greg, Zongmin Zhou, let's hold off on this conversion yo faux bus for now.
> I will spend time looking at if we can find PM solution that works end to end
> for server and client.

Ok, thanks!

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

* Re: [PATCH v2] usbip: convert to use faux_device
  2025-07-10 20:33                                         ` Shuah Khan
  2025-07-11  5:56                                           ` Greg KH
@ 2025-07-14  5:31                                           ` Zongmin Zhou
  1 sibling, 0 replies; 33+ messages in thread
From: Zongmin Zhou @ 2025-07-14  5:31 UTC (permalink / raw)
  To: Shuah Khan, Alan Stern, Greg KH
  Cc: shuah, valentina.manea.m, i, linux-kernel, linux-usb, zhouzongmin


On 2025/7/11 04:33, Shuah Khan wrote:
> On 7/10/25 08:06, Alan Stern wrote:
>> On Wed, Jul 09, 2025 at 03:57:35PM -0600, Shuah Khan wrote:
>>> On 7/9/25 15:49, Shuah Khan wrote:
>>>> Right. We have a few too many moving pieces here:
>>>>
>>>> usbipd (user-space)
>>>> vhci_hcd and the usb devices it creates
>>>>
>>>> usbip_host, stub driver that proxies between the device
>>>> on the server and vhci_client.
>>>>
>>>> PM can be complex and it has to do lot more than it currently
>>>> does on both server and client end to support seamlessly.
>>>>
>>>> The current suspend took the approach of refusing suspend
>>>> which doesn't work since usb devices underneath hang in
>>>> usb_dev_resume(). Looks like this usb device is treated like
>>>> a real device bu usb core. Is there a way to have usb core
>>>> PM (suspend and resume) handle them as virtual? Would it
>>>> help to use "supports_autosuspend" to disable suspend and
>>>> resume?
>>>
>>> Would it work if usb_disable_autosuspend() on the devices
>>> that hang off its vitual bus?
>>
>> You have to consider PM on both the host and client.  And you have to
>> consider both runtime PM and system PM (that is, suspend to RAM,
>> hibernate, etc.).
>
> This would be as a fix for the existing suspend hang issue.
>
>>
>> On the server, any sort of suspend will interrupt the connection.
>> usb_disable_autosuspend() will prevent runtime suspends, but you
>> shouldn't try to prevent system suspends.  Instead, the usbip driver on
>> the server should have its suspend routine close the connection to the
>> client (rather as if the server's user had unplugged the device).
>>
>> On the client, you've got a choice for how to handle runtime PM.  You
>> can leave it enabled, and when the client decides to suspend the device,
>> tell the server's driver.  The server driver can then attempt to do a
>> runtime suspend on the physical device.  (You might need to add a new
>> type of message to the USBIP protocol to accomplish this; I don't know
>> the details.)  Alternatively, you can forbid runtime suspend on the
>> client entirely, although it would be nice if you could avoid this.
>>
>> System PM on the client can be handled more less the same as runtime PM.
>
> Correct. This has to be a complete solution that syncs up server and 
> client
> side. I am going to look into implementing this - it might be possible to
> do this in user-space. Either way this will require changes to the 
> protocol
> very likely.
>
> Greg, Zongmin Zhou, let's hold off on this conversion yo faux bus for 
> now.
> I will spend time looking at if we can find PM solution that works end 
> to end
> for server and client.
Sorry for the late reply.
Ok,I got it. it is necessary to tackle the
PM standby issue first before considering next steps.
>
> thanks,
> -- Shuah


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

end of thread, other threads:[~2025-07-14  5:31 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-08  9:11 [PATCH 0/2] some changes based on faux bus Zongmin Zhou
2025-05-08  9:11 ` [PATCH 1/2] driver core:add device's platform_data set for faux device Zongmin Zhou
2025-05-08  9:45   ` Greg KH
2025-05-09  2:41     ` Zongmin Zhou
2025-05-21 10:51       ` Greg KH
2025-05-28  9:21         ` Zongmin Zhou
2025-05-08  9:11 ` [PATCH 2/2] usbip: convert to use faux_device Zongmin Zhou
2025-05-09 10:42   ` kernel test robot
2025-06-04  6:54   ` [PATCH v2] " Zongmin Zhou
2025-06-10 15:15     ` Shuah Khan
2025-06-19 11:02       ` Greg KH
2025-06-19 11:01     ` Greg KH
2025-06-20  2:16       ` Zongmin Zhou
2025-06-20  4:29         ` Greg KH
2025-06-20  9:19           ` Zongmin Zhou
2025-06-20  9:27             ` Greg KH
2025-06-20 17:26               ` Shuah Khan
2025-06-24  3:21                 ` Zongmin Zhou
2025-07-01 22:56                   ` Shuah Khan
2025-07-02  2:12                     ` Zongmin Zhou
2025-07-02 23:54                       ` Shuah Khan
2025-07-03  6:04                         ` Zongmin Zhou
2025-07-08 18:16                           ` Shuah Khan
2025-07-09  9:07                             ` Zongmin Zhou
2025-07-09 10:06                               ` Greg KH
2025-07-09 14:20                                 ` Alan Stern
2025-07-09 21:49                                   ` Shuah Khan
2025-07-09 21:57                                     ` Shuah Khan
2025-07-10 14:06                                       ` Alan Stern
2025-07-10 20:33                                         ` Shuah Khan
2025-07-11  5:56                                           ` Greg KH
2025-07-14  5:31                                           ` Zongmin Zhou
2025-07-09 21:33                               ` Shuah Khan

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