Received: (at 77135) by debbugs.gnu.org; 3 Apr 2025 07:35:32 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Thu Apr 03 03:35:32 2025 Received: from localhost ([127.0.0.1]:60754 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1u0F6p-00075f-NP for submit <at> debbugs.gnu.org; Thu, 03 Apr 2025 03:35:32 -0400 Received: from smtp1-g21.free.fr ([212.27.42.1]:32466) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from <noelopez@HIDDEN>) id 1u0F6n-00075V-Rj for 77135 <at> debbugs.gnu.org; Thu, 03 Apr 2025 03:35:30 -0400 Received: from localhost (unknown [IPv6:2a01:e0a:990:a960:b4f3:8f44:ec4:5af5]) (Authenticated sender: noelopez@HIDDEN) by smtp1-g21.free.fr (Postfix) with ESMTPSA id 61404B005A9; Thu, 3 Apr 2025 09:35:27 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=free.fr; s=smtp-20201208; t=1743665728; bh=Gg66dgyoHrEFZkQblr7dduObflp9PqqIdWcINmV/9NM=; h=From:To:Cc:Subject:Date:From; b=gBNf6YvIFNzyO7soBCDmSWEk5kTSktWv+eh8Z5j+Ttt8sFgcyDEAfxzaVI0dIXCmz FgPBhEUTM5Kp4zkgl9wrhMYc7MkWn5GMoDDapqUcsvPoVkkP6uaLNI6cQZvLFV5v9F gq0UwdLcouTxh9HGD46aWUkPWQZk8+AvbA+9AJRRYOD5AFzBrV4jhn0xB2S4Zi+F3f oIxZIRN6g6VWgWhb1vLtVX+aVwuKKzwjMTHRNzGU3xTwsec66zN9FOADdSNIFiwpwo v5YBjDObXsDoH3xn8PQCA2bpmDfrAky+T5LlDt2/3DcoMCKP0syFUlZoY8i4aH14EV MbONhak6g38xw== From: =?UTF-8?q?No=C3=A9=20Lopez?= <noelopez@HIDDEN> To: 77135 <at> debbugs.gnu.org Subject: [PATCH] gnu: gnome-settings-daemon: Fix crash when no screen saver available. Date: Thu, 3 Apr 2025 09:34:59 +0200 Message-ID: <1b4733ad0129e6a495c49331cc269ae6f9c08b78.1743665500.git.noelopez@HIDDEN> MIME-Version: 1.0 X-Debbugs-Cc: Liliana Marie Prikler <liliana.prikler@HIDDEN>, Maxim Cournoyer <maxim.cournoyer@HIDDEN>, Vivien Kraus <vivien@HIDDEN> Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 77135 Cc: =?UTF-8?q?No=C3=A9=20Lopez?= <noelopez@HIDDEN> X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.0 (-) Change-Id: Ic6da39489eb2e04f98ae112e6cd2cdb7340bd00e --- gnu/packages/gnome.scm | 4 +++- .../gnome-settings-daemon-screensaver-error.patch | 14 ++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 gnu/packages/patches/gnome-settings-daemon-screensaver-error.patch diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 49c0c23c0c..ed75700683 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -6153,7 +6153,9 @@ (define-public gnome-settings-daemon (sha256 (base32 "0nka7zfl4hzzk4066kk5cc8pmk7v3izhi4wihsh5b3w85s35idqy")) - (patches (search-patches "gnome-settings-daemon-gc.patch")))) + (patches (search-patches "gnome-settings-daemon-gc.patch" + ;; See https://gitlab.gnome.org/GNOME/gnome-settings-daemon/-/issues/792 + "gnome-settings-daemon-screensaver-error.patch")))) (build-system meson-build-system) (arguments (list diff --git a/gnu/packages/patches/gnome-settings-daemon-screensaver-error.patch b/gnu/packages/patches/gnome-settings-daemon-screensaver-error.patch new file mode 100644 index 0000000000..6707502261 --- /dev/null +++ b/gnu/packages/patches/gnome-settings-daemon-screensaver-error.patch @@ -0,0 +1,14 @@ +diff --git a/plugins/usb-protection/gsd-usb-protection-manager.c b/plugins/usb-protection/gsd-usb-protection-manager.c +index 43644408..fef13645 100644 +--- a/plugins/usb-protection/gsd-usb-protection-manager.c ++++ b/plugins/usb-protection/gsd-usb-protection-manager.c +@@ -1089,8 +1089,7 @@ usb_protection_proxy_ready (GObject *source_object, + + manager->screensaver_proxy = gnome_settings_bus_get_screen_saver_proxy (); + if (!manager->screensaver_proxy) { +- if (!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) +- g_warning ("Failed to connect to screensaver service: %s", error->message); ++ g_warning ("Failed to connect to screensaver service"); + g_clear_object (&manager->usb_protection); + return; + } base-commit: eb30f5ecbea896e9cf93722bf97681d208f1a7be -- 2.49.0
liliana.prikler@HIDDEN, maxim.cournoyer@HIDDEN, vivien@HIDDEN, bug-guix@HIDDEN
:bug#77135
; Package guix
.
Full text available.Received: (at 77135) by debbugs.gnu.org; 3 Apr 2025 07:32:52 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Thu Apr 03 03:32:52 2025 Received: from localhost ([127.0.0.1]:60743 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1u0F4G-0006vW-D3 for submit <at> debbugs.gnu.org; Thu, 03 Apr 2025 03:32:52 -0400 Received: from smtp1-g21.free.fr ([2a01:e0c:1:1599::10]:24874) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from <noe@HIDDEN>) id 1u0F4C-0006vJ-NM for 77135 <at> debbugs.gnu.org; Thu, 03 Apr 2025 03:32:49 -0400 Received: from localhost (unknown [IPv6:2a01:e0a:990:a960:b4f3:8f44:ec4:5af5]) (Authenticated sender: noelopez@HIDDEN) by smtp1-g21.free.fr (Postfix) with ESMTPSA id 16526B0055E; Thu, 3 Apr 2025 09:32:40 +0200 (CEST) From: =?utf-8?Q?No=C3=A9_Lopez?= <noe@HIDDEN> To: 77135 <at> debbugs.gnu.org Subject: Re: Gnome shell crashes, segfaults in dmesg In-Reply-To: <E9E2D170-7579-4D91-836E-C026B6BB965D@HIDDEN> Date: Thu, 03 Apr 2025 09:32:39 +0200 Message-ID: <87bjtdem3s.fsf@HIDDEN> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: 77135 Cc: Christopher Howard <christopher@HIDDEN>, Graysen Pitts <graysen@HIDDEN>, Maxim Cournoyer <maxim.cournoyer@HIDDEN>, =?utf-8?Q?No=C3=A9?= Lopez <noe@HIDDEN> X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -0.0 (/) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi, The issue is a faulty error handling in gnome-settings-daemon that accesses an unset error variable. Since this a pretty high priority issue in my opinion and upstream has not answered yet I suggest we apply the patch on our end to fix the issue for our users. That said, the root issue is bigger (missing screensaver service) and I will look at it next. I=E2=80=99m sending the patch as a separate e-mail. Have a nice day, No=C3=A9 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQHGBAEBCAAwFiEEXVTPJVeyOOiNwYCiLSIyQQq3QEMFAmfuOZgSHG5vZUB4bi0t bm8tY2phLmV1AAoJEC0iMkEKt0BDOdIL/AgU0f5al4HRiWioQpJA44Q3cyEcdTqp bPOmzc/5plDJ8WlrofMfGiX8bSPZ0ByGxyhB6Yhj8ZP5Hwr8UwXiPFW71eoxxhu+ 42bpB1shqIY1OVMfHwXYHn0gd0JHlSxoR6UNQbgf+0Leg5YH6w6wIlWZQE58zJPz j3mOVAHNxbb/6Tdlt0JNuwOM29ZdBzLYY/D7lphFy3pqO0jP5Nt70nH/170GymFM xtF7HwqwaxWHkef3DFzSUSBXjAolUNXGTx1ViUkJoFlaXu8yDAS+80zJ8si4O/AE WexRJwvMVdohcj6krSprBbO7Ylf8Nr0MlpGdEg5JCkunFs2DHKcrxE3IElQW/Z4k oAEpjWqHyvdp24J/1PHXHKosscc9+2cDSV+cMVyd+Lxja3MiHhtPnM4yfGDVvxb7 xqOx1fq9ql1558rzinNe982Xgvuq8c6ocO1J6jqnn3YQzitD2n2t/eSQNj+siUW5 4gJgVKiydRfjKwLHifZMakp3jFoUnrWwZg== =9nGo -----END PGP SIGNATURE----- --=-=-=--
bug-guix@HIDDEN
:bug#77135
; Package guix
.
Full text available.Received: (at 77135) by debbugs.gnu.org; 25 Mar 2025 04:39:38 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Tue Mar 25 00:39:38 2025 Received: from localhost ([127.0.0.1]:35276 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1tww4d-0000jz-Mi for submit <at> debbugs.gnu.org; Tue, 25 Mar 2025 00:39:37 -0400 Received: from out-181.mta0.migadu.com ([91.218.175.181]:19116) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from <graysen@HIDDEN>) id 1twqQt-0007BY-2l for 77135 <at> debbugs.gnu.org; Mon, 24 Mar 2025 18:38:15 -0400 Content-Type: text/plain; charset=us-ascii DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gpitts.net; s=key1; t=1742855883; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=YtRiklnu5krW0yYok0BgxpsdJue99n6cgXI/fAt/ufc=; b=NUqkEF5593kv+xDBHv++ATiKAzRRbIBg1J6mRRkGoH1iTwwzvo9ybZgvNL7fEszpk6YYEH +LQ/QBJ3PpafX9oyJGutw7tWt/bZpmSw9Lr3usUR/sguHMxFHpfXxzkT6BJOwTNO62bkNm eCyr6G3xrTr0HM1QsWKdFyfP5/4OwL95xQR1ulFpFE/wXojuoFUAlGMTj4wQKj9/0XIYF+ 3F+WmvIFh3JbFKPHqxXecChdXdHWIqMABxOCTJ5rJodsq/GajZxrudb5N2E5lBopzKdWoq 3cF/Wn6GNhprVSBLZ5EgWqYfLVmHgbGCXbC6L4GNq3u1HJNrR+GGEDESwnwXZw== Content-Transfer-Encoding: quoted-printable X-Report-Abuse: Please report any abuse attempt to abuse@HIDDEN and include these headers. From: Graysen Pitts <graysen@HIDDEN> Mime-Version: 1.0 (1.0) Date: Mon, 24 Mar 2025 18:37:48 -0400 Subject: Gnome shell crashes, segfaults in dmesg Message-Id: <E9E2D170-7579-4D91-836E-C026B6BB965D@HIDDEN> To: 77135 <at> debbugs.gnu.org X-Migadu-Flow: FLOW_OUT X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 77135 X-Mailman-Approved-At: Tue, 25 Mar 2025 00:39:32 -0400 X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.7 (-) Hello all, I just wanted to chime in and say that I am affected by this as well. I am n= ot familiar with the bug reporting process for GUIX, but I am happy to submi= t any logs or useful info if provided with a little guidance. Thanks, Graysen Pitts=
bug-guix@HIDDEN
:bug#77135
; Package guix
.
Full text available.Received: (at 77135) by debbugs.gnu.org; 23 Mar 2025 14:40:51 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Sun Mar 23 10:40:51 2025 Received: from localhost ([127.0.0.1]:51982 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1twMVP-0007pf-1m for submit <at> debbugs.gnu.org; Sun, 23 Mar 2025 10:40:51 -0400 Received: from smtp.domeneshop.no ([2a01:5b40:0:3006::1]:36296) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from <noe@HIDDEN>) id 1twMVK-0007oC-86 for 77135 <at> debbugs.gnu.org; Sun, 23 Mar 2025 10:40:48 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=xn--no-cja.eu; s=ds202502; h=Content-Type:MIME-Version:Message-ID:Date: References:In-Reply-To:Subject:Cc:To:From:From:Sender:Reply-To:Subject:Date: Message-ID:To:Cc:MIME-Version:Content-Type:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=gMeUB6Bymhs6Bh3TabRJHmGtf0bJ72+sTieKlW02pzE=; b=H79B5uyXu4vYgVtzCCWRSsif0d gjTlDBhNWJj9+QJMHC6gWW/OQgkymqwG6YQun23GzuwCfZKvutNZXk7af+P4ZTm72C3BkD8Kh2sBs +nq6Ocx9lllOCZYiJF2/7Xi1cGQK1dXU2bpQ4FJVFpHtQJTpPkZ/ANZIPhUko7h9unD3nPMERbyC/ vkFbCxVR7T48exp31yaTJbZImNCcyUj3j4obtsQRvhL5lW3b7uF47oKuvOpMH/SaD9572LQPfywkB qbScypnxh2dSsME8K3p4OMJ7jQMx+8lhVMyMrAghrrSOcNSwSIpMgJ7GmMa7G/16wIxw5HqeprXdg kZJr3L2Q==; Received: from smtp by smtp.domeneshop.no with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.95) id 1twMVB-00E0ST-Rr; Sun, 23 Mar 2025 15:40:37 +0100 From: =?utf-8?Q?No=C3=A9?= Lopez <noe@HIDDEN> To: Maxim Cournoyer <maxim.cournoyer@HIDDEN> Subject: Re: Gnome shell crashes, segfaults in dmesg In-Reply-To: <87jz8gfqvr.fsf@HIDDEN> References: <87r02paspo.fsf@HIDDEN> <87jz8gfqvr.fsf@HIDDEN> Date: Sun, 23 Mar 2025 15:40:31 +0100 Message-ID: <87jz8flsio.fsf@HIDDEN> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 77135 Cc: 77135 <at> debbugs.gnu.org, Christopher Howard <christopher@HIDDEN> X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.0 (-) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi, I found more info, firstly the crash=E2=80=99s backtrace with some debug in= fo: (gdb) bt #0 0x0000000000405f41 in usb_protection_proxy_ready (source_object=3D0x39b= 3a050, res=3D0x39b3a120, user_data=3D0x39b0e500) at ../gnome-settings-daemo= n-47.2/plugins/usb-protection/gsd-usb-protection-manager.c:1093 #1 0x00007fbd8c745033 in ?? () from /gnu/store/fx3rva8gyg2y43v8v206aazlh6h= yxv7d-glib-2.82.1/lib/libgio-2.0.so.0 [=E2=80=A6] #14 0x00007fbd8c53c327 in ?? () from /gnu/store/fx3rva8gyg2y43v8v206aazlh6h= yxv7d-glib-2.82.1/lib/libglib-2.0.so.0 #15 0x00007fbd8c53cc23 in g_main_loop_run () from /gnu/store/fx3rva8gyg2y43= v8v206aazlh6hyxv7d-glib-2.82.1/lib/libglib-2.0.so.0 #16 0x0000000000406f0e in main (argc=3D1, argv=3D0x7ffdb34b17a8) at ../gnom= e-settings-daemon-47.2/plugins/common/daemon-skeleton.h:256 This is the line causing the crash[1]: g_warning ("Failed to connect to screensaver service: %s", error->mess= age); This checks out with what I=E2=80=99ve seen online, a bug report that says = crash when error->message is NULL [2]. Though I wonder why the screensaver is down? Might be another issue that can fix this one for us. Maxim, can you look into why the screensaver proxy is unreachable? In the meanwhile I=E2=80=99ll look into this specific crash upstream. As an immediate fix we can apply the fix in [3] to the gnome-settings-daemon package. What do you think? No=C3=A9 [1] https://gitlab.gnome.org/GNOME/gnome-settings-daemon/-/blob/47.2/plugin= s/usb-protection/gsd-usb-protection-manager.c?ref_type=3Dtags#L1093 [2] https://gitlab.gnome.org/GNOME/gnome-settings-daemon/-/issues/792 [3] https://gitlab.gnome.org/GNOME/gnome-settings-daemon/-/issues/792#note_= 2088259 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQHGBAEBCAAwFiEEXVTPJVeyOOiNwYCiLSIyQQq3QEMFAmfgHV8SHG5vZUB4bi0t bm8tY2phLmV1AAoJEC0iMkEKt0BDJBYL/3caHYTV1t6pj75bbGUa1WzwGoTKV4fd VPqCswC4Ec+ZS69m0o9NLBLIwlmPTGOzgbGhbPS5cH0q889ypwEhD5uz1/Q+KfFl WoriXfV4Ha0naDYftQAQHsH2sKrhGmaIwRNV35oFgtJ9Hl/7QY1SUFXUiXKpqfWz 5ywuJqYSRoSUvYB4GtMnrpJE1E5oCszEvDiy+2GkxiavmCrdiMlwLc/qHIh01Asg cO49SoCevoUvrStIFc5zyq4TN7VP2OUQYCvg3amz3+z1bUk4QgCGiadsrO7E5mZM 9XirR0UM28TngR6kWoPEt0hJuJ3PaKEMIFh2Oq26F1pzQ+pA07KpyKiC3dvMv6nJ RxNUaoEYRljrjY2BIfMUaa7J2Ewfj4tAezHccHstgiz2byRqgCahGXYbiJacbGmc izo4NhaBg2aKfHih+BkFQjr6P6j8jtQ7+CQqHo1pJ4LaJxcYQfVw+piLKQt1AzhN 0x/9K1l42lZrWM8patSkhg9mOCq+o823Yg== =HbCN -----END PGP SIGNATURE----- --=-=-=--
bug-guix@HIDDEN
:bug#77135
; Package guix
.
Full text available.Received: (at 77135) by debbugs.gnu.org; 23 Mar 2025 02:00:34 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Sat Mar 22 22:00:34 2025 Received: from localhost ([127.0.0.1]:46468 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1twAdd-0007Ex-Pg for submit <at> debbugs.gnu.org; Sat, 22 Mar 2025 22:00:34 -0400 Received: from mail-pl1-x631.google.com ([2607:f8b0:4864:20::631]:47292) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from <maxim.cournoyer@HIDDEN>) id 1twAda-0006kK-3f for 77135 <at> debbugs.gnu.org; Sat, 22 Mar 2025 22:00:30 -0400 Received: by mail-pl1-x631.google.com with SMTP id d9443c01a7336-22401f4d35aso67735385ad.2 for <77135 <at> debbugs.gnu.org>; Sat, 22 Mar 2025 19:00:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1742695224; x=1743300024; darn=debbugs.gnu.org; h=content-transfer-encoding:mime-version:user-agent:message-id:date :references:in-reply-to:subject:cc:to:from:from:to:cc:subject:date :message-id:reply-to; bh=AKQsVl7FbQbeLRsFsn01s9Azl9YdxcEE1IrjGiYxmxM=; b=EClnXyUR6xvFpBEXkTdD83V8t/9Pbi/3lSQDzexxzh2AL/uH/znVUBO3jmzewkJNTt cwyKJWfiTi+3oLCU+wPJTtmajULLGYLdQDHor1vdTSgemiVwZwJiiewNk6BDJ7jQbIx8 Wv2/a6o++kXV1qcC05fTTeujCyunY7smbdBFGI9IbjaQVgiNir1BuGnveKEEq2A34V9G FhWdlu1DGIUMU84QJ9Z6NoB/DMr60wkQFPURvtGTEHIBnHJaCL4RCZ7woFzjvn8jH3rQ GLDbrA+Y0A/F4zrFTcOuIYKUBCrfxhwApg+0RvKCQiHyH0bmsPME2rZsFGwHwFuD4t7T BvYQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1742695224; x=1743300024; h=content-transfer-encoding:mime-version:user-agent:message-id:date :references:in-reply-to:subject:cc:to:from:x-gm-message-state:from :to:cc:subject:date:message-id:reply-to; bh=AKQsVl7FbQbeLRsFsn01s9Azl9YdxcEE1IrjGiYxmxM=; b=czQHLmYwycJQgAavldAfROyHtEjPKp83yq6yobC3AJcMiRyCC+TEE/GwdUx1UQUANO 7pDINH47Jbtw2L7gHUsepMuPveufa6UyOGdhMS3Zsj8vaBUyg6PjPCoVVTlSmBoL4U03 PTUEDrXcAuEESYXl1BU4Ux3g7iZkAOCCButTg7SDyTGVuT1eoHFw6pV92NANb7PH4soY EQWgXPm4xnIOsF74a2h+sn1g1nUaSAfWptMZ3Py+wP0xn/K13EMmU0I70vXsZB6KjRo3 4Og6jO6817K8uvS+nC2f25PcMUH5XJuqNVXncBDsNHiXcGiY74eKJfm45+nOsDioknBU +wfA== X-Gm-Message-State: AOJu0YwlsNPvH9vTPnWAv2PF3tgyP/fOUtWnBzuPfiG+n9e5ybUtbb39 2VZa1ZdZEMq9X3BkA5jfU5UXbD/DTvYfmEaW7PAAn8e0g5IGSG+dvrzPxQ== X-Gm-Gg: ASbGncvP6TKbMElfFOMdlOVv9WIM80jT+nqimreXAdQdBDbUgmKa/mHVkd1sPxk7b6X 6PniXZjUELnFW9YWCRzIVkwA2DUwb5FpVmSxS+NDG5x0tPmbih4sCkoFW7yMwpa3XZz8D9V6aVL uTvbBKYXo/th1y2g8lQ7xIQMdfyjGMVW72D7MGmnChSe2kraLNRAUtDvZ9Bk75UqidV284dMXba RJVFnu7VzrTqzTl2ThSG4lU0ggLZeCC0AgFT59oSVpQQ9v7KDA4+Sw9D9mkdyE5jU6nCvlJ1Qr+ 0WJaKG0mvQGoLj3XYk+YWPAcMHQtS/K8Nr8rsRFAgBs= X-Google-Smtp-Source: AGHT+IEg78+0qwN8sUfxD+7Mf6Pwg0qFryRWpzG6ZCCivR17GcQ2he+NmxOmif/CgCAzEj1eiqOtng== X-Received: by 2002:a17:902:f54e:b0:223:fb3a:8647 with SMTP id d9443c01a7336-22780e0a4b3mr133992945ad.41.1742695223848; Sat, 22 Mar 2025 19:00:23 -0700 (PDT) Received: from terra ([2405:6586:be0:0:83c8:d31d:2cec:f542]) by smtp.gmail.com with ESMTPSA id d9443c01a7336-227811b2889sm42379365ad.125.2025.03.22.19.00.21 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 22 Mar 2025 19:00:22 -0700 (PDT) From: Maxim Cournoyer <maxim.cournoyer@HIDDEN> To: =?utf-8?Q?No=C3=A9?= Lopez <noe@HIDDEN> Subject: Re: Gnome shell crashes, segfaults in dmesg In-Reply-To: <87r02paspo.fsf@HIDDEN> (=?utf-8?Q?=22No=C3=A9?= Lopez"'s message of "Sat, 22 Mar 2025 18:19:31 +0100") References: <87r02paspo.fsf@HIDDEN> Date: Sun, 23 Mar 2025 11:00:08 +0900 Message-ID: <87jz8gfqvr.fsf@HIDDEN> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 77135 Cc: 77135 <at> debbugs.gnu.org, Christopher Howard <christopher@HIDDEN> X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.0 (-) Hi No=C3=A9, No=C3=A9 Lopez <noe@no=C3=A9.eu> writes: > Hi Christopher and Maxim, > > I can confirm this issue, I login through GDM to the gnome shell and > maybe a minute or less after logging in I get the big =E2=80=9Csomething = went > wrong=E2=80=9D splash screen. > > Fortunately I can work around this by going to another desktop where the > splash screen won=E2=80=99t be visible and gnome-shell will work just fin= e. > > My dmesg output is the same as Christopher=E2=80=99s. Could you try reverting commit 7a26e14ca2d0757423f174b370c09bf2635dac46 and see if that helps? It updated mutter from 46.8 to 46.9. --=20 Thanks, Maxim
bug-guix@HIDDEN
:bug#77135
; Package guix
.
Full text available.Received: (at 77135) by debbugs.gnu.org; 22 Mar 2025 22:15:21 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Sat Mar 22 18:15:21 2025 Received: from localhost ([127.0.0.1]:46094 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1tw77h-0002Ea-G8 for submit <at> debbugs.gnu.org; Sat, 22 Mar 2025 18:15:21 -0400 Received: from mx.kolabnow.com ([212.103.80.154]:53210) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from <christopher@HIDDEN>) id 1tw77e-0002CI-EM for 77135 <at> debbugs.gnu.org; Sat, 22 Mar 2025 18:15:19 -0400 Received: from localhost (unknown [127.0.0.1]) by mx.kolabnow.com (Postfix) with ESMTP id AE06F20B34E4; Sat, 22 Mar 2025 23:15:10 +0100 (CET) Authentication-Results: ext-mx-out011.mykolab.com (amavis); dkim=pass reason="pass (just generated, assumed good)" header.d=librehacker.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=librehacker.com; h=content-type:content-type:mime-version:message-id:date:date :references:in-reply-to:subject:subject:from:from:received :received:received; s=dkim2; t=1742681710; x=1744496111; bh=aiDl kF5IUmYG2CwsMttGdjsc0DKpVwEQwNVT5E4Sfhw=; b=FX7GmKqwZ3lRkywflI/C uOWv/V12VVsBR/jGnPQgDu8p1wAiTbgQ5/nzaFQhJu5RxJJAbLn6fcgC6EyfVup9 JnEbbouiThKc0ASl7IezoR0oIlbCxWrmAIn+LPYSxxgc2noYLZ23mpJqKVro3R5x cKRiW6P1CFF5/pyGbFvHUoB/e3xl0KBszIwXC1xRDNb36jEZn/WYG8efJ+Z+KPgw 6i94iUJe5ZBwksq4LAsHIWR712q7XsaIGyeV5WcQuNWQVNXbCpmZKjBawUtvEaX6 mIhijhp1c5BryVL7J5WVcERgMoXm9ryvTATTu7nb0RhiRfb8A6mK2jztHzIKh6/e Zw== X-Virus-Scanned: amavis at mykolab.com X-Spam-Flag: NO X-Spam-Score: -1 X-Spam-Level: X-Spam-Status: No, score=-1 tagged_above=-10 required=5 tests=[ALL_TRUSTED=-1] autolearn=ham autolearn_force=no Received: from mx.kolabnow.com ([127.0.0.1]) by localhost (ext-mx-out011.mykolab.com [127.0.0.1]) (amavis, port 10024) with ESMTP id PysC3dfgoSZp; Sat, 22 Mar 2025 23:15:10 +0100 (CET) Received: from int-mx009.mykolab.com (unknown [10.9.13.9]) by mx.kolabnow.com (Postfix) with ESMTPS id D920820B34DB; Sat, 22 Mar 2025 23:15:09 +0100 (CET) Received: from ext-subm010.mykolab.com (unknown [10.9.6.10]) by int-mx009.mykolab.com (Postfix) with ESMTPS id 6556320C287B; Sat, 22 Mar 2025 23:15:09 +0100 (CET) From: Christopher Howard <christopher@HIDDEN> To: Maxim Cournoyer <maxim.cournoyer@HIDDEN> Subject: Re: bug#77135: Gnome shell crashes, segfaults in dmesg In-Reply-To: <8734f5gji2.fsf@HIDDEN> (Maxim Cournoyer's message of "Sun, 23 Mar 2025 00:41:57 +0900") References: <87iko3ogoa.fsf@HIDDEN> <8734f5gji2.fsf@HIDDEN> Date: Sat, 22 Mar 2025 14:15:05 -0800 Message-ID: <87a59c7lw6.fsf@HIDDEN> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 77135 Cc: 77135 <at> debbugs.gnu.org X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.0 (-) Maxim Cournoyer <maxim.cournoyer@HIDDEN> writes: > Did you try rebooting? This would clear the GDM state files, kept on a > tmpfs. Hi, thank you for looking into this. I actually did not notice the problem until I rebooted. -- Christopher Howard
bug-guix@HIDDEN
:bug#77135
; Package guix
.
Full text available.Received: (at 77135) by debbugs.gnu.org; 22 Mar 2025 17:19:48 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Sat Mar 22 13:19:48 2025 Received: from localhost ([127.0.0.1]:45294 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1tw2Vg-0007xn-3h for submit <at> debbugs.gnu.org; Sat, 22 Mar 2025 13:19:48 -0400 Received: from smtp.domeneshop.no ([2a01:5b40:0:3006::1]:41862) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from <noe@HIDDEN>) id 1tw2Vd-0007xF-GY for 77135 <at> debbugs.gnu.org; Sat, 22 Mar 2025 13:19:46 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=xn--no-cja.eu; s=ds202502; h=Content-Type:MIME-Version:Message-ID:Date: In-Reply-To:Subject:Cc:To:From:From:Sender:Reply-To:Subject:Date:Message-ID: To:Cc:MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=BD6o6EgrW7SKWM3203Q1N0MHEeaVDW2kehdTSlENJ3Q=; b=dZRDd53VvTSJ7B//pNHK2Mwd4i y7SGXNOKFK6LSZi4/wGB6svRka5y/9yE8M/ZQlSPPu5BMX2GShbMoe6l+Gitv3F73HIfKBIhf9tGC IXCy1fhBkE4kqT5EI42u2IHmE1JDPrvC3MrFlVC+5itq5DVXK6itmga6xYsYttWO+bETPxZp7Uckx 8T8Aa9xdid2mgV3pA+E+qKZNt6nxtzu2n+SuP94uiKztA9p9myxAIuYCZNBIcDXRfRHidJK6osVWl 5F5FQc/mWBz730QNsGxtDz0iggxpKrGa5I3xOH4lSTC2dAbSYf9j7nV7FIWru3kcC7v5SM42JF3vb oZ5YnCTg==; Received: from smtp by smtp.domeneshop.no with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.95) id 1tw2VU-009jYz-SB; Sat, 22 Mar 2025 18:19:36 +0100 From: =?utf-8?Q?No=C3=A9_Lopez?= <noe@HIDDEN> To: 77135 <at> debbugs.gnu.org Subject: Re: Gnome shell crashes, segfaults in dmesg In-Reply-To: <8734f5gji2.fsf@HIDDEN> Date: Sat, 22 Mar 2025 18:19:31 +0100 Message-ID: <87r02paspo.fsf@HIDDEN> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 77135 Cc: Christopher Howard <christopher@HIDDEN>, Maxim Cournoyer <maxim.cournoyer@HIDDEN> X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.0 (-) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Christopher and Maxim, I can confirm this issue, I login through GDM to the gnome shell and maybe a minute or less after logging in I get the big =E2=80=9Csomething we= nt wrong=E2=80=9D splash screen. Fortunately I can work around this by going to another desktop where the splash screen won=E2=80=99t be visible and gnome-shell will work just fine. My dmesg output is the same as Christopher=E2=80=99s. Have a nice day, No=C3=A9 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQHGBAEBCAAwFiEEXVTPJVeyOOiNwYCiLSIyQQq3QEMFAmfe8SMSHG5vZUB4bi0t bm8tY2phLmV1AAoJEC0iMkEKt0BDzgkMAN/SM2LdL6tQZgGWcB3qcJLs6zVeVZK8 UZ2dAHrKj63l884KVlRXQL0p/3ArE/EbqOHefe+CdypPoCagGFUnVzCUDgM9lq3B Yi+2I+Ncop0witfAApIel4/I4R/7gl7Cd8rwaJ5betmMZ5ag7tIzVTSYajEJcWYR w1JOawkvOrFWHYf7AI9YPrEKNIUArAJf3ckYiwPZ+Lym1N28dt+Fj9V+Hl5aMJ+U fa5hqaTQ9YiweStFZOrUuTfVtv9ZHGRSoTJQIK+iAeuSRuNwTCoyhHTg0O4TgpkA iL2dV7/2tJeyfsywc65iORdtOUnQDkGf5G0Qy6DSHhtoO93n5yiXEJVgHfZwF8AK qvdVVUFdmODsWfDfOKAHHAM0L5jQgQnoY2uRhTfgrAowMCcAxaAYwwKip+AzBdGC NFLB202icw9/+y/SSUnofr6cHHa0teB0mBrSXYM2lsQ9Iz/Nw4JJtz+af1AXQ18H DBpLrRkRMj+9eTVYv5V4dmL879x4mKZrGQ== =Oyxt -----END PGP SIGNATURE----- --=-=-=--
bug-guix@HIDDEN
:bug#77135
; Package guix
.
Full text available.Received: (at 77135) by debbugs.gnu.org; 22 Mar 2025 15:42:22 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Sat Mar 22 11:42:22 2025 Received: from localhost ([127.0.0.1]:44757 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1tw0zO-00052q-4T for submit <at> debbugs.gnu.org; Sat, 22 Mar 2025 11:42:22 -0400 Received: from mail-pl1-x634.google.com ([2607:f8b0:4864:20::634]:43289) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from <maxim.cournoyer@HIDDEN>) id 1tw0zM-00052c-Aw for 77135 <at> debbugs.gnu.org; Sat, 22 Mar 2025 11:42:21 -0400 Received: by mail-pl1-x634.google.com with SMTP id d9443c01a7336-227914acd20so19278525ad.1 for <77135 <at> debbugs.gnu.org>; Sat, 22 Mar 2025 08:42:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1742658133; x=1743262933; darn=debbugs.gnu.org; h=mime-version:user-agent:message-id:date:references:in-reply-to :subject:cc:to:from:from:to:cc:subject:date:message-id:reply-to; bh=Gm0lAvVsT6wCq1Kue1410tanyQKzb8GKY7NMasy/YlA=; b=Nuv6+JluBkZMAhpCOqegcWrRiMbqYhUf/18P/j3a+QJhAZ0znvSmAYcoLps2eunAbq zsBjOQzNdCyhuKUrK2GrLA38sBPU1CGzZKJKev98joooDvfDxpcEjAChsY4DvtDT6Cn4 3pQZIurqmwGxdHtpqf8bOnDNcq2ky5PR8yPboQFKIjCrOo+Q/NXkQwIjHJOY1kQWmNGe Hd6opHMClmK4rwywmpiI6Nrw2T/FeJzn5DLmq2eQPRTbw7EHip1BSjCEa4hxwkNdISSk i1Wv8w78h9TkHKDFDDEfotdbqZkIQ3Fg73+ItOm4Axm4gYGl426QJc8Uj8k6kSavckgk uJpw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1742658133; x=1743262933; h=mime-version:user-agent:message-id:date:references:in-reply-to :subject:cc:to:from:x-gm-message-state:from:to:cc:subject:date :message-id:reply-to; bh=Gm0lAvVsT6wCq1Kue1410tanyQKzb8GKY7NMasy/YlA=; b=KDEQaLehzhgz8U7vHftTqLUN6PmztehPquluIXj+p5iVP9YVd7GV6XHOJCgVkpJrL1 no+MRsIy4nVHtG6E1nxb/OImYziW64TgPBpRvr2s/40w7pn/TZKKbypf/rMycvTMiggS D/KcVAKEzYnfcqN0f/xFg4OdPW7994YhCO12Ac9BnK0GImnLq+8hv9bqtfEMeaS0RZ3W vbWjid3Em7WYa5yrx8f4/t6zq3eoe5u5O1hFFDYEfTBPa1CRt5O01rXBrxNNhfWQ799Q jbRV/qJyVxNM7o1XQZ7uyhLYZiYAuLqmay6x/Qy64Rdm8hm7uofNehoA4ldoZ01RoTen 4AeQ== X-Gm-Message-State: AOJu0YwlsOviWa4EBjovyxilf6MFYpCCwcYiRtZMOAngMBC3/VFoZSMu BDz+Qz3Um1W+5t7byrLEeksmR+WpDzhX/DTRgfLQIbGDLJAw0mqc3MKY9w== X-Gm-Gg: ASbGncunj5cXxRJw8Ptxnw8LkYsNFN18/jcmruLC5Feg2dMIt/efEJ5uMc4e0h+AX8Z fQj/6E2KP4hmMcE85rnk3zehIKUlXbT90rrXCFELYjGXPuaJMxXRPdj+YGBiuHwNxzOH75C5h73 IXwcLQBxrhDlrV4U6J7X2Ttd5ZIr2mK5WC0nXjgmkWbHyzBnItLuhKPk4IotnXQ2xCOcTwxWwgP 9CUO7xVdXg/ikiCiIkFUldjuUGiKOOTUD8MP0kNS1U3xIv0vmmniXNvmz6JvP82p/X7156aH3lZ HW5iaWKu/F+MBMdhnBrSOo23iSY+Y0Belww+9iLpnvLoZPtsP0MV4Q== X-Google-Smtp-Source: AGHT+IHMMpiUuN/1Zr5/P+jtU0bqrYB2B8h6UuLrRtx971LapeFa9DeUCw1SMzcEii7gQYSGcXU7VQ== X-Received: by 2002:a05:6a00:13a0:b0:728:f21b:ce4c with SMTP id d2e1a72fcca58-739059803b3mr9878701b3a.5.1742658132866; Sat, 22 Mar 2025 08:42:12 -0700 (PDT) Received: from terra ([2405:6586:be0:0:83c8:d31d:2cec:f542]) by smtp.gmail.com with ESMTPSA id d2e1a72fcca58-73905fab592sm4325311b3a.19.2025.03.22.08.42.11 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 22 Mar 2025 08:42:12 -0700 (PDT) From: Maxim Cournoyer <maxim.cournoyer@HIDDEN> To: Christopher Howard <christopher@HIDDEN> Subject: Re: bug#77135: Gnome shell crashes, segfaults in dmesg In-Reply-To: <87iko3ogoa.fsf@HIDDEN> (Christopher Howard's message of "Thu, 20 Mar 2025 07:39:01 -0800") References: <87iko3ogoa.fsf@HIDDEN> Date: Sun, 23 Mar 2025 00:41:57 +0900 Message-ID: <8734f5gji2.fsf@HIDDEN> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 77135 Cc: 77135 <at> debbugs.gnu.org X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.0 (-) Hi, Christopher Howard <christopher@HIDDEN> writes: > Hello, after a guix pull yesterday, I did a guix system reconfigure > and a home reconfigure. After rebooting, I have this problem where > after logging in to Gnome desktop, the gnome shell will crash with a > meaningless error message "something went wrong" and then drop me back > to GDM. The crash is not immediate but can take 1-2 minutes before it > occurs. I am able to use the virtual console still, but Gnome desktop > is rendered useless. I can use the guix roll-back functionality to go > back to my previous system and home configuration and everything works > again. > > After the crash occurs, I can look at the output of dmesg and see that > there are segfaults occuring in various services. I have attached the > dmesg output. > > > > Here is the information on the current commit: > > ``` guix describe > Generation 156 Mar 18 2025 06:51:05 (current) > guix fa39695 > repository URL: https://git.savannah.gnu.org/git/guix.git > branch: master > commit: fa39695bbc0c5f79838cbca55d55eebd821a8efa > ``` Thanks for the report. I cannot reproduce using a VM like: $(./pre-inst-env guix system vm gnu/system/examples/desktop.tmpl) -m 4g Did you try rebooting? This would clear the GDM state files, kept on a tmpfs. I don't have a clear idea. Mutter was recently updated but that doesn't seem to cause a regression, as shown above. -- Thanks, Maxim
bug-guix@HIDDEN
:bug#77135
; Package guix
.
Full text available.Received: (at submit) by debbugs.gnu.org; 20 Mar 2025 15:39:06 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Thu Mar 20 11:39:06 2025 Received: from localhost ([127.0.0.1]:58525 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1tvHz3-0004up-6Q for submit <at> debbugs.gnu.org; Thu, 20 Mar 2025 11:39:06 -0400 Received: from lists.gnu.org ([2001:470:142::17]:45860) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from <christopher@HIDDEN>) id 1tvHyv-0004uU-Ly for submit <at> debbugs.gnu.org; Thu, 20 Mar 2025 11:38:58 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <christopher@HIDDEN>) id 1tvHyp-0001Mb-Rn for bug-guix@HIDDEN; Thu, 20 Mar 2025 11:38:47 -0400 Received: from mx.kolabnow.com ([212.103.80.155]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <christopher@HIDDEN>) id 1tvHyj-0003RX-2c for bug-guix@HIDDEN; Thu, 20 Mar 2025 11:38:47 -0400 Received: from localhost (unknown [127.0.0.1]) by mx.kolabnow.com (Postfix) with ESMTP id 0BA313004C5C for <bug-guix@HIDDEN>; Thu, 20 Mar 2025 16:38:36 +0100 (CET) Authentication-Results: ext-mx-out013.mykolab.com (amavis); dkim=pass reason="pass (just generated, assumed good)" header.d=librehacker.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=librehacker.com; h=content-type:content-type:mime-version:message-id:date:date :subject:subject:from:from:received:received:received; s=dkim2; t=1742485104; x=1744299505; bh=TgJjAYyCZ3tB33z2AYYlll2Rb/pRAbNt bubZWTraWAA=; b=ntgvpsmqE/FJsKCCMHcB3XTj2h4gJ/huZtZkHCHer2Z+blaq 4RTDriU2m4WZDm/yKqyUBK7Hes1vXm7ou+qv7FaE65bREnhEsK4cM1MYDtCkOl+s 2lRdUrNNR4GkK0qKqOaccQhl9mGRUa/oXK7ykxK1WPDGASQlESc3v8xK6fQA/4re PUaWZANFfjoRK+pAPfrkYTTqgFgPanf+3Grm9uOMFfOxu5zi5WIx27TmNEYZwbiN d8ktJNsDoIU6mljwP2hjbPFu2k9IQi7D4b7lJgrj4XtHDrsqzWiNzsP6YS3QDnE+ fL0mwceajvLZ/Zb6jD/KB3GLpT7r6zi3niCciw== X-Virus-Scanned: amavis at mykolab.com X-Spam-Flag: NO X-Spam-Score: -0.999 X-Spam-Level: X-Spam-Status: No, score=-0.999 tagged_above=-10 required=5 tests=[ALL_TRUSTED=-1, URIBL_BLOCKED=0.001] autolearn=ham autolearn_force=no Received: from mx.kolabnow.com ([127.0.0.1]) by localhost (ext-mx-out013.mykolab.com [127.0.0.1]) (amavis, port 10024) with ESMTP id daLJ1aeeoHYy for <bug-guix@HIDDEN>; Thu, 20 Mar 2025 16:38:24 +0100 (CET) Received: from int-mx011.mykolab.com (unknown [10.9.13.11]) by mx.kolabnow.com (Postfix) with ESMTPS id 1E5EE30011B5 for <bug-guix@HIDDEN>; Thu, 20 Mar 2025 16:38:23 +0100 (CET) Received: from ext-subm010.mykolab.com (unknown [10.9.6.10]) by int-mx011.mykolab.com (Postfix) with ESMTPS id C239332085EE for <bug-guix@HIDDEN>; Thu, 20 Mar 2025 16:38:23 +0100 (CET) From: Christopher Howard <christopher@HIDDEN> To: bug-guix@HIDDEN Subject: Gnome shell crashes, segfaults in dmesg Date: Thu, 20 Mar 2025 07:39:01 -0800 Message-ID: <87iko3ogoa.fsf@HIDDEN> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Received-SPF: pass client-ip=212.103.80.155; envelope-from=christopher@HIDDEN; helo=mx.kolabnow.com X-Spam_score_int: -16 X-Spam_score: -1.7 X-Spam_bar: - X-Spam_report: (-1.7 / 5.0 requ) BAYES_00=-1.9, DKIM_INVALID=0.1, DKIM_SIGNED=0.1, RCVD_IN_VALIDITY_CERTIFIED_BLOCKED=0.001, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -0.0 (/) --=-=-= Content-Type: text/plain Hello, after a guix pull yesterday, I did a guix system reconfigure and a home reconfigure. After rebooting, I have this problem where after logging in to Gnome desktop, the gnome shell will crash with a meaningless error message "something went wrong" and then drop me back to GDM. The crash is not immediate but can take 1-2 minutes before it occurs. I am able to use the virtual console still, but Gnome desktop is rendered useless. I can use the guix roll-back functionality to go back to my previous system and home configuration and everything works again. After the crash occurs, I can look at the output of dmesg and see that there are segfaults occuring in various services. I have attached the dmesg output. --=-=-= Content-Type: text/plain Content-Disposition: attachment; filename=20250320-dmesg.txt Content-Transfer-Encoding: quoted-printable [ 0.000000] Linux version 6.13.7-gnu (guix@guix) (gcc (GCC) 11.4.0, GNU = ld (GNU Binutils) 2.41) #1 SMP PREEMPT_DYNAMIC 1 [ 0.000000] Command line: BOOT_IMAGE=3D/gnu/store/83yk0v536clfabc4lcmp50= 5rmwp76g4x-linux-libre-6.13.7/bzImage root=3D/dev/mapper/cryptroot gnu.syst= em=3D/gnu/store/01a80g4jx0i55fabcliczp93pyhyvl7g-system gnu.load=3D/gnu/sto= re/01a80g4jx0i55fabcliczp93pyhyvl7g-system/boot cpufreq.default_governor=3D= conservative modprobe.blacklist=3Dusbmouse,usbkbd quiet [ 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=20=20 [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x00000000000917ff] usable [ 0.000000] BIOS-e820: [mem 0x0000000000091800-0x000000000009ffff] reser= ved [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reser= ved [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000c22dbfff] usable [ 0.000000] BIOS-e820: [mem 0x00000000c22dc000-0x00000000c22e2fff] ACPI = NVS [ 0.000000] BIOS-e820: [mem 0x00000000c22e3000-0x00000000c2718fff] usable [ 0.000000] BIOS-e820: [mem 0x00000000c2719000-0x00000000c2bb0fff] reser= ved [ 0.000000] BIOS-e820: [mem 0x00000000c2bb1000-0x00000000c7eeafff] usable [ 0.000000] BIOS-e820: [mem 0x00000000c7eeb000-0x00000000c7ffffff] reser= ved [ 0.000000] BIOS-e820: [mem 0x00000000c8000000-0x00000000c875ffff] usable [ 0.000000] BIOS-e820: [mem 0x00000000c8760000-0x00000000c87fffff] reser= ved [ 0.000000] BIOS-e820: [mem 0x00000000c8800000-0x00000000c8fadfff] usable [ 0.000000] BIOS-e820: [mem 0x00000000c8fae000-0x00000000c8ffffff] ACPI = data [ 0.000000] BIOS-e820: [mem 0x00000000c9000000-0x00000000ca71cfff] usable [ 0.000000] BIOS-e820: [mem 0x00000000ca71d000-0x00000000ca7fffff] ACPI = NVS [ 0.000000] BIOS-e820: [mem 0x00000000ca800000-0x00000000cbe10fff] usable [ 0.000000] BIOS-e820: [mem 0x00000000cbe11000-0x00000000cbffffff] reser= ved [ 0.000000] BIOS-e820: [mem 0x00000000cd000000-0x00000000cf1fffff] reser= ved [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reser= ved [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reser= ved [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reser= ved [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reser= ved [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reser= ved [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reser= ved [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000042edfffff] usable [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] APIC: Static calls initialized [ 0.000000] SMBIOS 2.7 present. [ 0.000000] DMI: Dell Inc. OptiPlex 9020/0XCR8D, BIOS A24 10/24/2018 [ 0.000000] DMI: Memory slots populated: 4/4 [ 0.000000] tsc: Fast TSC calibration using PIT [ 0.000000] tsc: Detected 3192.484 MHz processor [ 0.001352] e820: update [mem 0x00000000-0x00000fff] usable =3D=3D> rese= rved [ 0.001354] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.001365] last_pfn =3D 0x42ee00 max_arch_pfn =3D 0x400000000 [ 0.001372] total RAM covered: 16318M [ 0.001531] gran_size: 64K chunk_size: 64K num_reg: 10 lose cover R= AM: 46M [ 0.001533] gran_size: 64K chunk_size: 128K num_reg: 10 lose cover = RAM: 46M [ 0.001534] gran_size: 64K chunk_size: 256K num_reg: 10 lose cover = RAM: 46M [ 0.001536] gran_size: 64K chunk_size: 512K num_reg: 10 lose cover = RAM: 46M [ 0.001537] gran_size: 64K chunk_size: 1M num_reg: 10 lose cover RA= M: 46M [ 0.001538] gran_size: 64K chunk_size: 2M num_reg: 10 lose cover RA= M: 46M [ 0.001539] gran_size: 64K chunk_size: 4M num_reg: 10 lose cover RA= M: 46M [ 0.001540] gran_size: 64K chunk_size: 8M num_reg: 10 lose cover RA= M: 46M [ 0.001541] gran_size: 64K chunk_size: 16M num_reg: 10 lose cover R= AM: 46M [ 0.001542] *BAD*gran_size: 64K chunk_size: 32M num_reg: 10 lose cov= er RAM: -18M [ 0.001544] *BAD*gran_size: 64K chunk_size: 64M num_reg: 10 lose cov= er RAM: -16M [ 0.001545] *BAD*gran_size: 64K chunk_size: 128M num_reg: 10 lose co= ver RAM: -16M [ 0.001546] *BAD*gran_size: 64K chunk_size: 256M num_reg: 10 lose co= ver RAM: -16M [ 0.001547] *BAD*gran_size: 64K chunk_size: 512M num_reg: 10 lose co= ver RAM: -272M [ 0.001548] *BAD*gran_size: 64K chunk_size: 1G num_reg: 10 lose cove= r RAM: -256M [ 0.001549] *BAD*gran_size: 64K chunk_size: 2G num_reg: 10 lose cove= r RAM: -1280M [ 0.001551] gran_size: 128K chunk_size: 128K num_reg: 10 lose cover= RAM: 46M [ 0.001552] gran_size: 128K chunk_size: 256K num_reg: 10 lose cover= RAM: 46M [ 0.001553] gran_size: 128K chunk_size: 512K num_reg: 10 lose cover= RAM: 46M [ 0.001554] gran_size: 128K chunk_size: 1M num_reg: 10 lose cover R= AM: 46M [ 0.001555] gran_size: 128K chunk_size: 2M num_reg: 10 lose cover R= AM: 46M [ 0.001556] gran_size: 128K chunk_size: 4M num_reg: 10 lose cover R= AM: 46M [ 0.001557] gran_size: 128K chunk_size: 8M num_reg: 10 lose cover R= AM: 46M [ 0.001558] gran_size: 128K chunk_size: 16M num_reg: 10 lose cover = RAM: 46M [ 0.001559] *BAD*gran_size: 128K chunk_size: 32M num_reg: 10 lose co= ver RAM: -18M [ 0.001561] *BAD*gran_size: 128K chunk_size: 64M num_reg: 10 lose co= ver RAM: -16M [ 0.001562] *BAD*gran_size: 128K chunk_size: 128M num_reg: 10 lose c= over RAM: -16M [ 0.001563] *BAD*gran_size: 128K chunk_size: 256M num_reg: 10 lose c= over RAM: -16M [ 0.001564] *BAD*gran_size: 128K chunk_size: 512M num_reg: 10 lose c= over RAM: -272M [ 0.001565] *BAD*gran_size: 128K chunk_size: 1G num_reg: 10 lose cov= er RAM: -256M [ 0.001566] *BAD*gran_size: 128K chunk_size: 2G num_reg: 10 lose cov= er RAM: -1280M [ 0.001568] gran_size: 256K chunk_size: 256K num_reg: 10 lose cover= RAM: 46M [ 0.001569] gran_size: 256K chunk_size: 512K num_reg: 10 lose cover= RAM: 46M [ 0.001570] gran_size: 256K chunk_size: 1M num_reg: 10 lose cover R= AM: 46M [ 0.001571] gran_size: 256K chunk_size: 2M num_reg: 10 lose cover R= AM: 46M [ 0.001572] gran_size: 256K chunk_size: 4M num_reg: 10 lose cover R= AM: 46M [ 0.001573] gran_size: 256K chunk_size: 8M num_reg: 10 lose cover R= AM: 46M [ 0.001574] gran_size: 256K chunk_size: 16M num_reg: 10 lose cover = RAM: 46M [ 0.001575] *BAD*gran_size: 256K chunk_size: 32M num_reg: 10 lose co= ver RAM: -18M [ 0.001577] *BAD*gran_size: 256K chunk_size: 64M num_reg: 10 lose co= ver RAM: -16M [ 0.001578] *BAD*gran_size: 256K chunk_size: 128M num_reg: 10 lose c= over RAM: -16M [ 0.001579] *BAD*gran_size: 256K chunk_size: 256M num_reg: 10 lose c= over RAM: -16M [ 0.001580] *BAD*gran_size: 256K chunk_size: 512M num_reg: 10 lose c= over RAM: -272M [ 0.001581] *BAD*gran_size: 256K chunk_size: 1G num_reg: 10 lose cov= er RAM: -256M [ 0.001582] *BAD*gran_size: 256K chunk_size: 2G num_reg: 10 lose cov= er RAM: -1280M [ 0.001583] gran_size: 512K chunk_size: 512K num_reg: 10 lose cover= RAM: 46M [ 0.001584] gran_size: 512K chunk_size: 1M num_reg: 10 lose cover R= AM: 46M [ 0.001586] gran_size: 512K chunk_size: 2M num_reg: 10 lose cover R= AM: 46M [ 0.001587] gran_size: 512K chunk_size: 4M num_reg: 10 lose cover R= AM: 46M [ 0.001588] gran_size: 512K chunk_size: 8M num_reg: 10 lose cover R= AM: 46M [ 0.001589] gran_size: 512K chunk_size: 16M num_reg: 10 lose cover = RAM: 46M [ 0.001590] *BAD*gran_size: 512K chunk_size: 32M num_reg: 10 lose co= ver RAM: -18M [ 0.001591] *BAD*gran_size: 512K chunk_size: 64M num_reg: 10 lose co= ver RAM: -16M [ 0.001592] *BAD*gran_size: 512K chunk_size: 128M num_reg: 10 lose c= over RAM: -16M [ 0.001593] *BAD*gran_size: 512K chunk_size: 256M num_reg: 10 lose c= over RAM: -16M [ 0.001594] *BAD*gran_size: 512K chunk_size: 512M num_reg: 10 lose c= over RAM: -272M [ 0.001596] *BAD*gran_size: 512K chunk_size: 1G num_reg: 10 lose cov= er RAM: -256M [ 0.001597] *BAD*gran_size: 512K chunk_size: 2G num_reg: 10 lose cov= er RAM: -1280M [ 0.001598] gran_size: 1M chunk_size: 1M num_reg: 10 lose cover RAM= : 46M [ 0.001599] gran_size: 1M chunk_size: 2M num_reg: 10 lose cover RAM= : 46M [ 0.001600] gran_size: 1M chunk_size: 4M num_reg: 10 lose cover RAM= : 46M [ 0.001601] gran_size: 1M chunk_size: 8M num_reg: 10 lose cover RAM= : 46M [ 0.001602] gran_size: 1M chunk_size: 16M num_reg: 10 lose cover RA= M: 46M [ 0.001603] *BAD*gran_size: 1M chunk_size: 32M num_reg: 10 lose cove= r RAM: -18M [ 0.001605] *BAD*gran_size: 1M chunk_size: 64M num_reg: 10 lose cove= r RAM: -16M [ 0.001606] *BAD*gran_size: 1M chunk_size: 128M num_reg: 10 lose cov= er RAM: -16M [ 0.001607] *BAD*gran_size: 1M chunk_size: 256M num_reg: 10 lose cov= er RAM: -16M [ 0.001608] *BAD*gran_size: 1M chunk_size: 512M num_reg: 10 lose cov= er RAM: -272M [ 0.001609] *BAD*gran_size: 1M chunk_size: 1G num_reg: 10 lose cover= RAM: -256M [ 0.001610] *BAD*gran_size: 1M chunk_size: 2G num_reg: 10 lose cover= RAM: -1280M [ 0.001611] gran_size: 2M chunk_size: 2M num_reg: 10 lose cover RAM= : 46M [ 0.001612] gran_size: 2M chunk_size: 4M num_reg: 10 lose cover RAM= : 46M [ 0.001613] gran_size: 2M chunk_size: 8M num_reg: 10 lose cover RAM= : 46M [ 0.001615] gran_size: 2M chunk_size: 16M num_reg: 10 lose cover RA= M: 46M [ 0.001616] *BAD*gran_size: 2M chunk_size: 32M num_reg: 10 lose cove= r RAM: -18M [ 0.001617] *BAD*gran_size: 2M chunk_size: 64M num_reg: 10 lose cove= r RAM: -16M [ 0.001618] *BAD*gran_size: 2M chunk_size: 128M num_reg: 10 lose cov= er RAM: -16M [ 0.001619] *BAD*gran_size: 2M chunk_size: 256M num_reg: 10 lose cov= er RAM: -16M [ 0.001620] *BAD*gran_size: 2M chunk_size: 512M num_reg: 10 lose cov= er RAM: -272M [ 0.001621] *BAD*gran_size: 2M chunk_size: 1G num_reg: 10 lose cover= RAM: -256M [ 0.001622] *BAD*gran_size: 2M chunk_size: 2G num_reg: 10 lose cover= RAM: -1280M [ 0.001623] gran_size: 4M chunk_size: 4M num_reg: 10 lose cover RAM= : 46M [ 0.001624] gran_size: 4M chunk_size: 8M num_reg: 10 lose cover RAM= : 46M [ 0.001625] gran_size: 4M chunk_size: 16M num_reg: 10 lose cover RA= M: 46M [ 0.001627] *BAD*gran_size: 4M chunk_size: 32M num_reg: 10 lose cove= r RAM: -18M [ 0.001628] *BAD*gran_size: 4M chunk_size: 64M num_reg: 10 lose cove= r RAM: -14M [ 0.001629] *BAD*gran_size: 4M chunk_size: 128M num_reg: 10 lose cov= er RAM: -14M [ 0.001630] *BAD*gran_size: 4M chunk_size: 256M num_reg: 10 lose cov= er RAM: -14M [ 0.001631] *BAD*gran_size: 4M chunk_size: 512M num_reg: 10 lose cov= er RAM: -270M [ 0.001632] *BAD*gran_size: 4M chunk_size: 1G num_reg: 10 lose cover= RAM: -254M [ 0.001633] *BAD*gran_size: 4M chunk_size: 2G num_reg: 10 lose cover= RAM: -1278M [ 0.001634] gran_size: 8M chunk_size: 8M num_reg: 10 lose cover RAM= : 46M [ 0.001635] gran_size: 8M chunk_size: 16M num_reg: 10 lose cover RA= M: 46M [ 0.001636] *BAD*gran_size: 8M chunk_size: 32M num_reg: 10 lose cove= r RAM: -18M [ 0.001637] *BAD*gran_size: 8M chunk_size: 64M num_reg: 10 lose cove= r RAM: -10M [ 0.001638] *BAD*gran_size: 8M chunk_size: 128M num_reg: 10 lose cov= er RAM: -10M [ 0.001640] *BAD*gran_size: 8M chunk_size: 256M num_reg: 10 lose cov= er RAM: -10M [ 0.001641] *BAD*gran_size: 8M chunk_size: 512M num_reg: 10 lose cov= er RAM: -266M [ 0.001642] *BAD*gran_size: 8M chunk_size: 1G num_reg: 10 lose cover= RAM: -250M [ 0.001643] *BAD*gran_size: 8M chunk_size: 2G num_reg: 10 lose cover= RAM: -1274M [ 0.001644] gran_size: 16M chunk_size: 16M num_reg: 10 lose cover R= AM: 46M [ 0.001645] gran_size: 16M chunk_size: 32M num_reg: 10 lose cover R= AM: 110M [ 0.001646] gran_size: 16M chunk_size: 64M num_reg: 10 lose cover R= AM: 14M [ 0.001647] gran_size: 16M chunk_size: 128M num_reg: 10 lose cover = RAM: 14M [ 0.001649] gran_size: 16M chunk_size: 256M num_reg: 10 lose cover = RAM: 14M [ 0.001650] *BAD*gran_size: 16M chunk_size: 512M num_reg: 10 lose co= ver RAM: -242M [ 0.001651] gran_size: 16M chunk_size: 1G num_reg: 10 lose cover RA= M: 14M [ 0.001652] *BAD*gran_size: 16M chunk_size: 2G num_reg: 10 lose cove= r RAM: -1010M [ 0.001653] gran_size: 32M chunk_size: 32M num_reg: 10 lose cover R= AM: 30M [ 0.001654] gran_size: 32M chunk_size: 64M num_reg: 9 lose cover RA= M: 30M [ 0.001655] gran_size: 32M chunk_size: 128M num_reg: 9 lose cover R= AM: 30M [ 0.001656] gran_size: 32M chunk_size: 256M num_reg: 9 lose cover R= AM: 30M [ 0.001658] gran_size: 32M chunk_size: 512M num_reg: 10 lose cover = RAM: 30M [ 0.001659] gran_size: 32M chunk_size: 1G num_reg: 9 lose cover RAM= : 30M [ 0.001660] gran_size: 32M chunk_size: 2G num_reg: 10 lose cover RA= M: 30M [ 0.001661] gran_size: 64M chunk_size: 64M num_reg: 9 lose cover RA= M: 62M [ 0.001662] gran_size: 64M chunk_size: 128M num_reg: 9 lose cover R= AM: 62M [ 0.001663] gran_size: 64M chunk_size: 256M num_reg: 9 lose cover R= AM: 62M [ 0.001664] gran_size: 64M chunk_size: 512M num_reg: 10 lose cover = RAM: 62M [ 0.001665] gran_size: 64M chunk_size: 1G num_reg: 9 lose cover RAM= : 62M [ 0.001666] gran_size: 64M chunk_size: 2G num_reg: 10 lose cover RA= M: 62M [ 0.001667] gran_size: 128M chunk_size: 128M num_reg: 7 lose cover = RAM: 190M [ 0.001668] gran_size: 128M chunk_size: 256M num_reg: 9 lose cover = RAM: 190M [ 0.001669] gran_size: 128M chunk_size: 512M num_reg: 10 lose cover= RAM: 190M [ 0.001671] gran_size: 128M chunk_size: 1G num_reg: 9 lose cover RA= M: 190M [ 0.001672] gran_size: 128M chunk_size: 2G num_reg: 10 lose cover R= AM: 190M [ 0.001673] gran_size: 256M chunk_size: 256M num_reg: 5 lose cover = RAM: 446M [ 0.001674] gran_size: 256M chunk_size: 512M num_reg: 5 lose cover = RAM: 446M [ 0.001675] gran_size: 256M chunk_size: 1G num_reg: 6 lose cover RA= M: 446M [ 0.001676] gran_size: 256M chunk_size: 2G num_reg: 7 lose cover RA= M: 446M [ 0.001677] gran_size: 512M chunk_size: 512M num_reg: 5 lose cover = RAM: 446M [ 0.001678] gran_size: 512M chunk_size: 1G num_reg: 6 lose cover RA= M: 446M [ 0.001679] gran_size: 512M chunk_size: 2G num_reg: 7 lose cover RA= M: 446M [ 0.001680] gran_size: 1G chunk_size: 1G num_reg: 4 lose cover RAM:= 958M [ 0.001681] gran_size: 1G chunk_size: 2G num_reg: 4 lose cover RAM:= 958M [ 0.001682] gran_size: 2G chunk_size: 2G num_reg: 3 lose cover RAM:= 1982M [ 0.001683] mtrr_cleanup: can not find optimal value [ 0.001684] please specify mtrr_gran_size/mtrr_chunk_size [ 0.001686] MTRR map: 9 entries (5 fixed + 4 variable; max 25), built fr= om 10 variable MTRRs [ 0.001688] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT= =20=20 [ 0.002000] e820: update [mem 0xcd000000-0xffffffff] usable =3D=3D> rese= rved [ 0.002003] last_pfn =3D 0xcbe11 max_arch_pfn =3D 0x400000000 [ 0.008788] found SMP MP-table at [mem 0x000fd900-0x000fd90f] [ 0.008800] Using GB pages for direct mapping [ 0.009786] RAMDISK: [mem 0x362eb000-0x3716cfff] [ 0.009788] ACPI: Early table checksum verification disabled [ 0.009791] ACPI: RSDP 0x00000000000F0490 000024 (v02 DELL ) [ 0.009795] ACPI: XSDT 0x00000000C8FEE088 000094 (v01 DELL CBX3 01= 072009 AMI 00010013) [ 0.009799] ACPI: FACP 0x00000000C8FF9B30 00010C (v05 DELL CBX3 01= 072009 AMI 00010013) [ 0.009804] ACPI: DSDT 0x00000000C8FEE1B0 00B97E (v02 DELL CBX3 00= 000014 INTL 20091112) [ 0.009807] ACPI: FACS 0x00000000CA7FE080 000040 [ 0.009809] ACPI: APIC 0x00000000C8FF9C40 000072 (v03 DELL CBX3 01= 072009 AMI 00010013) [ 0.009812] ACPI: FPDT 0x00000000C8FF9CB8 000044 (v01 DELL CBX3 01= 072009 AMI 00010013) [ 0.009815] ACPI: SLIC 0x00000000C8FF9D00 000176 (v03 DELL CBX3 01= 072009 MSFT 00010013) [ 0.009817] ACPI: LPIT 0x00000000C8FF9E78 00005C (v01 DELL CBX3 00= 000000 AMI. 00000005) [ 0.009820] ACPI: SSDT 0x00000000C8FF9ED8 000539 (v01 PmRef Cpu0Ist 00= 003000 INTL 20120711) [ 0.009823] ACPI: SSDT 0x00000000C8FFA418 000AD8 (v01 PmRef CpuPm 00= 003000 INTL 20120711) [ 0.009826] ACPI: SSDT 0x00000000C8FFAEF0 0001C7 (v01 PmRef LakeTiny 00= 003000 INTL 20120711) [ 0.009828] ACPI: HPET 0x00000000C8FFB0B8 000038 (v01 DELL CBX3 01= 072009 AMI. 00000005) [ 0.009831] ACPI: SSDT 0x00000000C8FFB0F0 00036D (v01 SataRe SataTabl 00= 001000 INTL 20120711) [ 0.009834] ACPI: MCFG 0x00000000C8FFB460 00003C (v01 DELL CBX3 01= 072009 MSFT 00000097) [ 0.009836] ACPI: SSDT 0x00000000C8FFB4A0 0034D6 (v01 SaSsdt SaSsdt 00= 003000 INTL 20091112) [ 0.009839] ACPI: ASF! 0x00000000C8FFE978 0000A5 (v32 INTEL HCG 00= 000001 TFSM 000F4240) [ 0.009842] ACPI: DMAR 0x00000000C8FFEA20 0000B8 (v01 INTEL HSW 00= 000001 INTL 00000001) [ 0.009844] ACPI: Reserving FACP table memory at [mem 0xc8ff9b30-0xc8ff9= c3b] [ 0.009845] ACPI: Reserving DSDT table memory at [mem 0xc8fee1b0-0xc8ff9= b2d] [ 0.009846] ACPI: Reserving FACS table memory at [mem 0xca7fe080-0xca7fe= 0bf] [ 0.009847] ACPI: Reserving APIC table memory at [mem 0xc8ff9c40-0xc8ff9= cb1] [ 0.009847] ACPI: Reserving FPDT table memory at [mem 0xc8ff9cb8-0xc8ff9= cfb] [ 0.009848] ACPI: Reserving SLIC table memory at [mem 0xc8ff9d00-0xc8ff9= e75] [ 0.009849] ACPI: Reserving LPIT table memory at [mem 0xc8ff9e78-0xc8ff9= ed3] [ 0.009849] ACPI: Reserving SSDT table memory at [mem 0xc8ff9ed8-0xc8ffa= 410] [ 0.009850] ACPI: Reserving SSDT table memory at [mem 0xc8ffa418-0xc8ffa= eef] [ 0.009851] ACPI: Reserving SSDT table memory at [mem 0xc8ffaef0-0xc8ffb= 0b6] [ 0.009851] ACPI: Reserving HPET table memory at [mem 0xc8ffb0b8-0xc8ffb= 0ef] [ 0.009852] ACPI: Reserving SSDT table memory at [mem 0xc8ffb0f0-0xc8ffb= 45c] [ 0.009853] ACPI: Reserving MCFG table memory at [mem 0xc8ffb460-0xc8ffb= 49b] [ 0.009853] ACPI: Reserving SSDT table memory at [mem 0xc8ffb4a0-0xc8ffe= 975] [ 0.009854] ACPI: Reserving ASF! table memory at [mem 0xc8ffe978-0xc8ffe= a1c] [ 0.009855] ACPI: Reserving DMAR table memory at [mem 0xc8ffea20-0xc8ffe= ad7] [ 0.009913] No NUMA configuration found [ 0.009914] Faking a node at [mem 0x0000000000000000-0x000000042edfffff] [ 0.009918] NODE_DATA(0) allocated [mem 0x42edf8ac0-0x42edfdfff] [ 0.009952] Zone ranges: [ 0.009953] DMA [mem 0x0000000000001000-0x0000000000ffffff] [ 0.009955] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] [ 0.009956] Normal [mem 0x0000000100000000-0x000000042edfffff] [ 0.009957] Device empty [ 0.009958] Movable zone start for each node [ 0.009959] Early memory node ranges [ 0.009959] node 0: [mem 0x0000000000001000-0x0000000000090fff] [ 0.009961] node 0: [mem 0x0000000000100000-0x00000000c22dbfff] [ 0.009962] node 0: [mem 0x00000000c22e3000-0x00000000c2718fff] [ 0.009963] node 0: [mem 0x00000000c2bb1000-0x00000000c7eeafff] [ 0.009963] node 0: [mem 0x00000000c8000000-0x00000000c875ffff] [ 0.009964] node 0: [mem 0x00000000c8800000-0x00000000c8fadfff] [ 0.009965] node 0: [mem 0x00000000c9000000-0x00000000ca71cfff] [ 0.009965] node 0: [mem 0x00000000ca800000-0x00000000cbe10fff] [ 0.009966] node 0: [mem 0x0000000100000000-0x000000042edfffff] [ 0.009968] Initmem setup node 0 [mem 0x0000000000001000-0x000000042edff= fff] [ 0.009974] On node 0, zone DMA: 1 pages in unavailable ranges [ 0.010001] On node 0, zone DMA: 111 pages in unavailable ranges [ 0.015258] On node 0, zone DMA32: 7 pages in unavailable ranges [ 0.015416] On node 0, zone DMA32: 1176 pages in unavailable ranges [ 0.015433] On node 0, zone DMA32: 277 pages in unavailable ranges [ 0.015448] On node 0, zone DMA32: 160 pages in unavailable ranges [ 0.015489] On node 0, zone DMA32: 82 pages in unavailable ranges [ 0.015530] On node 0, zone DMA32: 227 pages in unavailable ranges [ 0.037962] On node 0, zone Normal: 16879 pages in unavailable ranges [ 0.038008] On node 0, zone Normal: 4608 pages in unavailable ranges [ 0.038034] Reserving Intel graphics memory at [mem 0xcd200000-0xcf1ffff= f] [ 0.038092] ACPI: PM-Timer IO Port: 0x1808 [ 0.038101] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1]) [ 0.038112] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-= 23 [ 0.038114] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 0.038116] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [ 0.038120] ACPI: Using ACPI (MADT) for SMP configuration information [ 0.038121] ACPI: HPET id: 0x8086a701 base: 0xfed00000 [ 0.038125] TSC deadline timer available [ 0.038130] CPU topo: Max. logical packages: 1 [ 0.038130] CPU topo: Max. logical dies: 1 [ 0.038131] CPU topo: Max. dies per package: 1 [ 0.038136] CPU topo: Max. threads per core: 1 [ 0.038137] CPU topo: Num. cores per package: 4 [ 0.038137] CPU topo: Num. threads per package: 4 [ 0.038138] CPU topo: Allowing 4 present CPUs plus 0 hotplug CPUs [ 0.038157] PM: hibernation: Registered nosave memory: [mem 0x00000000-0= x00000fff] [ 0.038159] PM: hibernation: Registered nosave memory: [mem 0x00091000-0= x00091fff] [ 0.038160] PM: hibernation: Registered nosave memory: [mem 0x00092000-0= x0009ffff] [ 0.038160] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0= x000dffff] [ 0.038161] PM: hibernation: Registered nosave memory: [mem 0x000e0000-0= x000fffff] [ 0.038162] PM: hibernation: Registered nosave memory: [mem 0xc22dc000-0= xc22e2fff] [ 0.038164] PM: hibernation: Registered nosave memory: [mem 0xc2719000-0= xc2bb0fff] [ 0.038165] PM: hibernation: Registered nosave memory: [mem 0xc7eeb000-0= xc7ffffff] [ 0.038167] PM: hibernation: Registered nosave memory: [mem 0xc8760000-0= xc87fffff] [ 0.038168] PM: hibernation: Registered nosave memory: [mem 0xc8fae000-0= xc8ffffff] [ 0.038170] PM: hibernation: Registered nosave memory: [mem 0xca71d000-0= xca7fffff] [ 0.038171] PM: hibernation: Registered nosave memory: [mem 0xcbe11000-0= xcbffffff] [ 0.038172] PM: hibernation: Registered nosave memory: [mem 0xcc000000-0= xccffffff] [ 0.038172] PM: hibernation: Registered nosave memory: [mem 0xcd000000-0= xcf1fffff] [ 0.038173] PM: hibernation: Registered nosave memory: [mem 0xcf200000-0= xf7ffffff] [ 0.038174] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0= xfbffffff] [ 0.038174] PM: hibernation: Registered nosave memory: [mem 0xfc000000-0= xfebfffff] [ 0.038175] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0= xfec00fff] [ 0.038176] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0= xfecfffff] [ 0.038176] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0= xfed03fff] [ 0.038177] PM: hibernation: Registered nosave memory: [mem 0xfed04000-0= xfed1bfff] [ 0.038177] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0= xfed1ffff] [ 0.038178] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0= xfedfffff] [ 0.038179] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0= xfee00fff] [ 0.038179] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0= xfeffffff] [ 0.038180] PM: hibernation: Registered nosave memory: [mem 0xff000000-0= xffffffff] [ 0.038182] [mem 0xcf200000-0xf7ffffff] available for PCI devices [ 0.038183] Booting paravirtualized kernel on bare hardware [ 0.038185] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0= xffffffff, max_idle_ns: 7645519600211568 ns [ 0.038193] setup_percpu: NR_CPUS:256 nr_cpumask_bits:4 nr_cpu_ids:4 nr_= node_ids:1 [ 0.038516] percpu: Embedded 92 pages/cpu s281368 r65536 d29928 u524288 [ 0.038522] pcpu-alloc: s281368 r65536 d29928 u524288 alloc=3D1*2097152 [ 0.038525] pcpu-alloc: [0] 0 1 2 3=20 [ 0.038542] Kernel command line: BOOT_IMAGE=3D/gnu/store/83yk0v536clfabc= 4lcmp505rmwp76g4x-linux-libre-6.13.7/bzImage root=3D/dev/mapper/cryptroot g= nu.system=3D/gnu/store/01a80g4jx0i55fabcliczp93pyhyvl7g-system gnu.load=3D/= gnu/store/01a80g4jx0i55fabcliczp93pyhyvl7g-system/boot cpufreq.default_gove= rnor=3Dconservative modprobe.blacklist=3Dusbmouse,usbkbd quiet [ 0.038638] Unknown kernel command line parameters "BOOT_IMAGE=3D/gnu/st= ore/83yk0v536clfabc4lcmp505rmwp76g4x-linux-libre-6.13.7/bzImage", will be p= assed to user space. [ 0.038647] random: crng init done [ 0.038648] printk: log buffer data + meta data: 262144 + 917504 =3D 117= 9648 bytes [ 0.040426] Dentry cache hash table entries: 2097152 (order: 12, 1677721= 6 bytes, linear) [ 0.041330] Inode-cache hash table entries: 1048576 (order: 11, 8388608 = bytes, linear) [ 0.041399] Fallback order for Node 0: 0=20 [ 0.041402] Built 1 zonelists, mobility grouping on. Total pages: 41707= 76 [ 0.041403] Policy zone: Normal [ 0.041412] mem auto-init: stack:off, heap alloc:on, heap free:off [ 0.041421] software IO TLB: area num 4. [ 0.096259] SLUB: HWalign=3D64, Order=3D0-3, MinObjects=3D0, CPUs=3D4, N= odes=3D1 [ 0.100148] allocated 33554432 bytes of page_ext [ 0.100156] Kernel/User page tables isolation: enabled [ 0.100198] ftrace: allocating 53066 entries in 208 pages [ 0.124404] ftrace: allocated 208 pages with 3 groups [ 0.125178] Dynamic Preempt: voluntary [ 0.125219] rcu: Preemptible hierarchical RCU implementation. [ 0.125220] rcu: RCU restricting CPUs from NR_CPUS=3D256 to nr_cpu_ids= =3D4. [ 0.125221] Trampoline variant of Tasks RCU enabled. [ 0.125222] Rude variant of Tasks RCU enabled. [ 0.125222] Tracing variant of Tasks RCU enabled. [ 0.125223] rcu: RCU calculated value of scheduler-enlistment delay is 2= 5 jiffies. [ 0.125223] rcu: Adjusting geometry for rcu_fanout_leaf=3D16, nr_cpu_ids= =3D4 [ 0.125229] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjus= t=3D1 rcu_task_cpu_ids=3D4. [ 0.125231] RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_= adjust=3D1 rcu_task_cpu_ids=3D4. [ 0.125232] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb= _adjust=3D1 rcu_task_cpu_ids=3D4. [ 0.128771] NR_IRQS: 16640, nr_irqs: 456, preallocated irqs: 16 [ 0.128964] rcu: srcu_init: Setting srcu_struct sizes based on contentio= n. [ 0.129041] spurious 8259A interrupt: IRQ7. [ 0.130451] Console: colour VGA+ 80x25 [ 0.130453] printk: legacy console [tty0] enabled [ 0.130514] ACPI: Core revision 20240827 [ 0.130597] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, = max_idle_ns: 133484882848 ns [ 0.130612] APIC: Switch to symmetric I/O mode setup [ 0.130614] DMAR: Host address width 39 [ 0.130615] DMAR: DRHD base: 0x000000fed90000 flags: 0x0 [ 0.130620] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap c00000206604= 62 ecap f0101a [ 0.130623] DMAR: DRHD base: 0x000000fed91000 flags: 0x1 [ 0.130627] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d20080206604= 62 ecap f010da [ 0.130628] DMAR: RMRR base: 0x000000cbf7b000 end: 0x000000cbf88fff [ 0.130630] DMAR: RMRR base: 0x000000cd000000 end: 0x000000cf1fffff [ 0.130633] DMAR-IR: IOAPIC id 8 under DRHD base 0xfed91000 IOMMU 1 [ 0.130634] DMAR-IR: HPET id 0 under DRHD base 0xfed91000 [ 0.130635] DMAR-IR: Queued invalidation will be enabled to support x2ap= ic and Intr-remapping. [ 0.131157] DMAR-IR: Enabled IRQ remapping in x2apic mode [ 0.131159] x2apic enabled [ 0.131214] APIC: Switched APIC routing to: cluster x2apic [ 0.131649] ..TIMER: vector=3D0x30 apic1=3D0 pin1=3D2 apic2=3D-1 pin2=3D= -1 [ 0.150618] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles:= 0x2e048e1b2d8, max_idle_ns: 440795292125 ns [ 0.150623] Calibrating delay loop (skipped), value calculated using tim= er frequency.. 6384.96 BogoMIPS (lpj=3D12769936) [ 0.150646] CPU0: Thermal monitoring enabled (TM1) [ 0.150673] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024 [ 0.150674] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4 [ 0.150677] process: using mwait in idle threads [ 0.150679] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user= pointer sanitization [ 0.150682] Spectre V2 : Mitigation: Retpolines [ 0.150683] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB= on context switch [ 0.150684] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT [ 0.150685] Spectre V2 : Enabling Restricted Speculation for firmware ca= lls [ 0.150687] Spectre V2 : mitigation: Enabling conditional Indirect Branc= h Prediction Barrier [ 0.150689] Speculative Store Bypass: Mitigation: Speculative Store Bypa= ss disabled via prctl [ 0.150691] MDS: Vulnerable: Clear CPU buffers attempted, no microcode [ 0.150692] MMIO Stale Data: Unknown: No mitigations [ 0.150693] SRBDS: Vulnerable: No microcode [ 0.150697] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point= registers' [ 0.150699] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' [ 0.150700] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' [ 0.150701] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 [ 0.150703] x86/fpu: Enabled xstate features 0x7, context size is 832 by= tes, using 'standard' format. [ 0.171283] Freeing SMP alternatives memory: 44K [ 0.171288] pid_max: default: 32768 minimum: 301 [ 0.171325] LSM: initializing lsm=3Dcapability,yama,apparmor,tomoyo,ima,= evm [ 0.171359] Yama: becoming mindful. [ 0.171445] AppArmor: AppArmor initialized [ 0.171465] TOMOYO Linux initialized [ 0.171538] Mount-cache hash table entries: 32768 (order: 6, 262144 byte= s, linear) [ 0.171554] Mountpoint-cache hash table entries: 32768 (order: 6, 262144= bytes, linear) [ 0.171884] smpboot: CPU0: Intel(R) Core(TM) i5-4570 CPU @ 3.20GHz (fami= ly: 0x6, model: 0x3c, stepping: 0x3) [ 0.194661] Performance Events: PEBS fmt2+, Haswell events, 16-deep LBR,= full-width counters, Intel PMU driver. [ 0.194690] ... version: 3 [ 0.194691] ... bit width: 48 [ 0.194692] ... generic registers: 8 [ 0.194693] ... value mask: 0000ffffffffffff [ 0.194694] ... max period: 00007fffffffffff [ 0.194695] ... fixed-purpose events: 3 [ 0.194695] ... event mask: 00000007000000ff [ 0.194808] signal: max sigframe size: 1776 [ 0.194819] Estimated ratio of average max frequency by base frequency (= times 1024): 1088 [ 0.194845] rcu: Hierarchical SRCU implementation. [ 0.194846] rcu: Max phase no-delay instances is 1000. [ 0.194879] Timer migration: 1 hierarchy levels; 8 children per group; 1= crossnode level [ 0.195322] NMI watchdog: Enabled. Permanently consumes one hw-PMU count= er. [ 0.195365] smp: Bringing up secondary CPUs ... [ 0.195453] smpboot: x86: Booting SMP configuration: [ 0.195454] .... node #0, CPUs: #1 #2 #3 [ 0.214731] smp: Brought up 1 node, 4 CPUs [ 0.214731] smpboot: Total of 4 processors activated (25539.87 BogoMIPS) [ 0.215843] Memory: 16221056K/16683104K available (20480K kernel code, 3= 103K rwdata, 13544K rodata, 4672K init, 2240K bss, 415128K reserved, 0K cma= -reserved) [ 0.216268] devtmpfs: initialized [ 0.216268] x86/mm: Memory block size: 128MB [ 0.216268] ACPI: PM: Registering ACPI NVS region [mem 0xc22dc000-0xc22e= 2fff] (28672 bytes) [ 0.216268] ACPI: PM: Registering ACPI NVS region [mem 0xca71d000-0xca7f= ffff] (929792 bytes) [ 0.216268] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xfffffff= f, max_idle_ns: 7645041785100000 ns [ 0.216268] futex hash table entries: 1024 (order: 4, 65536 bytes, linea= r) [ 0.216268] pinctrl core: initialized pinctrl subsystem [ 0.216268] PM: RTC time: 15:09:49, date: 2025-03-20 [ 0.218777] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.218878] audit: initializing netlink subsys (disabled) [ 0.218886] audit: type=3D2000 audit(1742483389.088:1): state=3Dinitiali= zed audit_enabled=3D0 res=3D1 [ 0.218886] thermal_sys: Registered thermal governor 'fair_share' [ 0.218886] thermal_sys: Registered thermal governor 'bang_bang' [ 0.218886] thermal_sys: Registered thermal governor 'step_wise' [ 0.218886] thermal_sys: Registered thermal governor 'user_space' [ 0.218886] cpuidle: using governor ladder [ 0.218886] cpuidle: using governor menu [ 0.218886] ACPI FADT declares the system doesn't support PCIe ASPM, so = disable it [ 0.218886] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 0.218886] PCI: ECAM [mem 0xf8000000-0xfbffffff] (base 0xf8000000) for = domain 0000 [bus 00-3f] [ 0.218886] PCI: Using configuration type 1 for base access [ 0.218886] core: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT= off [ 0.218899] kprobes: kprobe jump-optimization is enabled. All kprobes ar= e optimized if possible. [ 0.222678] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages [ 0.222678] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page [ 0.222678] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages [ 0.222678] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page [ 0.222726] ACPI: Added _OSI(Module Device) [ 0.222728] ACPI: Added _OSI(Processor Device) [ 0.222729] ACPI: Added _OSI(3.0 _SCP Extensions) [ 0.222730] ACPI: Added _OSI(Processor Aggregator Device) [ 0.229914] ACPI: 6 ACPI AML tables successfully acquired and loaded [ 0.230892] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored [ 0.231091] ACPI: Dynamic OEM Table Load: [ 0.231091] ACPI: SSDT 0xFFFF9DCDC335B400 0003D3 (v01 PmRef Cpu0Cst 00= 003001 INTL 20120711) [ 0.231385] ACPI: Dynamic OEM Table Load: [ 0.231389] ACPI: SSDT 0xFFFF9DCDC3123800 0005AA (v01 PmRef ApIst 00= 003000 INTL 20120711) [ 0.231937] ACPI: Dynamic OEM Table Load: [ 0.231941] ACPI: SSDT 0xFFFF9DCDC22C5000 000119 (v01 PmRef ApCst 00= 003000 INTL 20120711) [ 0.232748] ACPI: Interpreter enabled [ 0.232771] ACPI: PM: (supports S0 S3 S4 S5) [ 0.232772] ACPI: Using IOAPIC for interrupt routing [ 0.233256] PCI: Using host bridge windows from ACPI; if necessary, use = "pci=3Dnocrs" and report a bug [ 0.233258] PCI: Using E820 reservations for host bridge windows [ 0.233408] ACPI: Enabled 8 GPEs in block 00 to 3F [ 0.243560] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e]) [ 0.243567] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM Cloc= kPM Segments MSI HPX-Type3] [ 0.243950] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotp= lug PME AER PCIeCapability LTR] [ 0.243951] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using B= IOS configuration [ 0.244378] PCI host bridge to bus 0000:00 [ 0.244382] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] [ 0.244384] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] [ 0.244386] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bfff= f window] [ 0.244387] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e7ff= f window] [ 0.244388] pci_bus 0000:00: root bus resource [mem 0xcf200000-0xfeaffff= f window] [ 0.244390] pci_bus 0000:00: root bus resource [bus 00-3e] [ 0.244405] pci 0000:00:00.0: [8086:0c00] type 00 class 0x060000 convent= ional PCI endpoint [ 0.244468] pci 0000:00:01.0: [8086:0c01] type 01 class 0x060400 PCIe Ro= ot Port [ 0.244479] pci 0000:00:01.0: PCI bridge to [bus 01] [ 0.244482] pci 0000:00:01.0: bridge window [io 0xe000-0xefff] [ 0.244484] pci 0000:00:01.0: bridge window [mem 0xf7c00000-0xf7cfffff] [ 0.244488] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff= 64bit pref] [ 0.244509] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold [ 0.244732] pci 0000:00:02.0: [8086:0412] type 00 class 0x030000 convent= ional PCI endpoint [ 0.244740] pci 0000:00:02.0: BAR 0 [mem 0xf7800000-0xf7bfffff 64bit] [ 0.244745] pci 0000:00:02.0: BAR 2 [mem 0xd0000000-0xdfffffff 64bit pre= f] [ 0.244748] pci 0000:00:02.0: BAR 4 [io 0xf000-0xf03f] [ 0.244759] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x0= 00c0000-0x000dffff] [ 0.244834] pci 0000:00:03.0: [8086:0c0c] type 00 class 0x040300 PCIe Ro= ot Complex Integrated Endpoint [ 0.244842] pci 0000:00:03.0: BAR 0 [mem 0xf7d34000-0xf7d37fff 64bit] [ 0.244929] pci 0000:00:14.0: [8086:8c31] type 00 class 0x0c0330 convent= ional PCI endpoint [ 0.244945] pci 0000:00:14.0: BAR 0 [mem 0xf7d20000-0xf7d2ffff 64bit] [ 0.244996] pci 0000:00:14.0: PME# supported from D3hot D3cold [ 0.245088] pci 0000:00:16.0: [8086:8c3a] type 00 class 0x078000 convent= ional PCI endpoint [ 0.245104] pci 0000:00:16.0: BAR 0 [mem 0xf7d40000-0xf7d4000f 64bit] [ 0.245159] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold [ 0.245210] pci 0000:00:16.3: [8086:8c3d] type 00 class 0x070002 convent= ional PCI endpoint [ 0.245223] pci 0000:00:16.3: BAR 0 [io 0xf0e0-0xf0e7] [ 0.245231] pci 0000:00:16.3: BAR 1 [mem 0xf7d3e000-0xf7d3efff] [ 0.245332] pci 0000:00:19.0: [8086:153a] type 00 class 0x020000 convent= ional PCI endpoint [ 0.245345] pci 0000:00:19.0: BAR 0 [mem 0xf7d00000-0xf7d1ffff] [ 0.245352] pci 0000:00:19.0: BAR 1 [mem 0xf7d3d000-0xf7d3dfff] [ 0.245359] pci 0000:00:19.0: BAR 2 [io 0xf080-0xf09f] [ 0.245409] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold [ 0.245482] pci 0000:00:1a.0: [8086:8c2d] type 00 class 0x0c0320 convent= ional PCI endpoint [ 0.245496] pci 0000:00:1a.0: BAR 0 [mem 0xf7d3c000-0xf7d3c3ff] [ 0.245570] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold [ 0.245645] pci 0000:00:1b.0: [8086:8c20] type 00 class 0x040300 PCIe Ro= ot Complex Integrated Endpoint [ 0.245660] pci 0000:00:1b.0: BAR 0 [mem 0xf7d30000-0xf7d33fff 64bit] [ 0.245723] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold [ 0.245798] pci 0000:00:1d.0: [8086:8c26] type 00 class 0x0c0320 convent= ional PCI endpoint [ 0.245813] pci 0000:00:1d.0: BAR 0 [mem 0xf7d3b000-0xf7d3b3ff] [ 0.245886] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold [ 0.245962] pci 0000:00:1f.0: [8086:8c4e] type 00 class 0x060100 convent= ional PCI endpoint [ 0.246128] pci 0000:00:1f.2: [8086:2822] type 00 class 0x010400 convent= ional PCI endpoint [ 0.246140] pci 0000:00:1f.2: BAR 0 [io 0xf0d0-0xf0d7] [ 0.246147] pci 0000:00:1f.2: BAR 1 [io 0xf0c0-0xf0c3] [ 0.246153] pci 0000:00:1f.2: BAR 2 [io 0xf0b0-0xf0b7] [ 0.246160] pci 0000:00:1f.2: BAR 3 [io 0xf0a0-0xf0a3] [ 0.246166] pci 0000:00:1f.2: BAR 4 [io 0xf060-0xf07f] [ 0.246173] pci 0000:00:1f.2: BAR 5 [mem 0xf7d3a000-0xf7d3a7ff] [ 0.246204] pci 0000:00:1f.2: PME# supported from D3hot [ 0.246271] pci 0000:00:1f.3: [8086:8c22] type 00 class 0x0c0500 convent= ional PCI endpoint [ 0.246286] pci 0000:00:1f.3: BAR 0 [mem 0xf7d39000-0xf7d390ff 64bit] [ 0.246303] pci 0000:00:1f.3: BAR 4 [io 0xf040-0xf05f] [ 0.246404] pci 0000:01:00.0: [1002:6771] type 00 class 0x030000 PCIe Le= gacy Endpoint [ 0.246418] pci 0000:01:00.0: BAR 0 [mem 0xe0000000-0xefffffff 64bit pre= f] [ 0.246427] pci 0000:01:00.0: BAR 2 [mem 0xf7c20000-0xf7c3ffff 64bit] [ 0.246432] pci 0000:01:00.0: BAR 4 [io 0xe000-0xe0ff] [ 0.246441] pci 0000:01:00.0: ROM [mem 0xf7c00000-0xf7c1ffff pref] [ 0.246485] pci 0000:01:00.0: supports D1 D2 [ 0.246579] pci 0000:01:00.1: [1002:aa98] type 00 class 0x040300 PCIe Le= gacy Endpoint [ 0.246594] pci 0000:01:00.1: BAR 0 [mem 0xf7c40000-0xf7c43fff 64bit] [ 0.246663] pci 0000:01:00.1: supports D1 D2 [ 0.246741] pci 0000:00:01.0: PCI bridge to [bus 01] [ 0.247396] ACPI: PCI: Interrupt link LNKA configured for IRQ 11 [ 0.247445] ACPI: PCI: Interrupt link LNKB configured for IRQ 10 [ 0.247487] ACPI: PCI: Interrupt link LNKC configured for IRQ 5 [ 0.247530] ACPI: PCI: Interrupt link LNKD configured for IRQ 5 [ 0.247572] ACPI: PCI: Interrupt link LNKE configured for IRQ 3 [ 0.247618] ACPI: PCI: Interrupt link LNKF configured for IRQ 0 [ 0.247620] ACPI: PCI: Interrupt link LNKF disabled [ 0.247662] ACPI: PCI: Interrupt link LNKG configured for IRQ 11 [ 0.247708] ACPI: PCI: Interrupt link LNKH configured for IRQ 10 [ 0.247944] iommu: Default domain type: Translated [ 0.247944] iommu: DMA domain TLB invalidation policy: lazy mode [ 0.247944] SCSI subsystem initialized [ 0.247944] libata version 3.00 loaded. [ 0.247944] ACPI: bus type USB registered [ 0.247944] usbcore: registered new interface driver usbfs [ 0.247944] usbcore: registered new interface driver hub [ 0.247944] usbcore: registered new device driver usb [ 0.247944] EDAC MC: Ver: 3.0.0 [ 0.247944] NetLabel: Initializing [ 0.247944] NetLabel: domain hash size =3D 128 [ 0.247944] NetLabel: protocols =3D UNLABELED CIPSOv4 CALIPSO [ 0.247944] NetLabel: unlabeled traffic allowed by default [ 0.247944] mctp: management component transport protocol core [ 0.247944] NET: Registered PF_MCTP protocol family [ 0.247944] PCI: Using ACPI for IRQ routing [ 0.247944] PCI: pci_cache_line_size set to 64 bytes [ 0.247966] e820: reserve RAM buffer [mem 0x00091800-0x0009ffff] [ 0.247968] e820: reserve RAM buffer [mem 0xc22dc000-0xc3ffffff] [ 0.247969] e820: reserve RAM buffer [mem 0xc2719000-0xc3ffffff] [ 0.247970] e820: reserve RAM buffer [mem 0xc7eeb000-0xc7ffffff] [ 0.247971] e820: reserve RAM buffer [mem 0xc8760000-0xcbffffff] [ 0.247972] e820: reserve RAM buffer [mem 0xc8fae000-0xcbffffff] [ 0.247973] e820: reserve RAM buffer [mem 0xca71d000-0xcbffffff] [ 0.247974] e820: reserve RAM buffer [mem 0xcbe11000-0xcbffffff] [ 0.247975] e820: reserve RAM buffer [mem 0x42ee00000-0x42fffffff] [ 0.247992] pci 0000:00:02.0: vgaarb: setting as boot VGA device [ 0.247992] pci 0000:00:02.0: vgaarb: bridge control possible [ 0.247992] pci 0000:00:02.0: vgaarb: VGA device added: decodes=3Dio+mem= ,owns=3Dio+mem,locks=3Dnone [ 0.247992] pci 0000:01:00.0: vgaarb: bridge control possible [ 0.247992] pci 0000:01:00.0: vgaarb: VGA device added: decodes=3Dio+mem= ,owns=3Dnone,locks=3Dnone [ 0.247992] vgaarb: loaded [ 0.247992] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 [ 0.247992] hpet0: 8 comparators, 64-bit 14.318180 MHz counter [ 0.251641] clocksource: Switched to clocksource tsc-early [ 0.251760] VFS: Disk quotas dquot_6.6.0 [ 0.251768] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 byte= s) [ 0.251881] AppArmor: AppArmor Filesystem Enabled [ 0.251905] pnp: PnP ACPI init [ 0.251959] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved [ 0.252091] system 00:01: [io 0x0680-0x069f] has been reserved [ 0.252094] system 00:01: [io 0xffff] has been reserved [ 0.252096] system 00:01: [io 0xffff] has been reserved [ 0.252097] system 00:01: [io 0xffff] has been reserved [ 0.252098] system 00:01: [io 0x1c00-0x1cfe] has been reserved [ 0.252099] system 00:01: [io 0x1d00-0x1dfe] has been reserved [ 0.252101] system 00:01: [io 0x1e00-0x1efe] has been reserved [ 0.252102] system 00:01: [io 0x1f00-0x1ffe] has been reserved [ 0.252103] system 00:01: [io 0x1800-0x18fe] has been reserved [ 0.252105] system 00:01: [io 0x164e-0x164f] has been reserved [ 0.252161] system 00:03: [io 0x1854-0x1857] has been reserved [ 0.252241] system 00:04: [io 0x0a00-0x0a0f] has been reserved [ 0.252282] system 00:05: [io 0x04d0-0x04d1] has been reserved [ 0.252717] pnp 00:06: [dma 0 disabled] [ 0.253071] system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved [ 0.253074] system 00:07: [mem 0xfed10000-0xfed17fff] has been reserved [ 0.253076] system 00:07: [mem 0xfed18000-0xfed18fff] has been reserved [ 0.253078] system 00:07: [mem 0xfed19000-0xfed19fff] has been reserved [ 0.253080] system 00:07: [mem 0xf8000000-0xfbffffff] has been reserved [ 0.253082] system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved [ 0.253083] system 00:07: [mem 0xfed90000-0xfed93fff] could not be reser= ved [ 0.253085] system 00:07: [mem 0xfed45000-0xfed8ffff] has been reserved [ 0.253087] system 00:07: [mem 0xff000000-0xffffffff] has been reserved [ 0.253088] system 00:07: [mem 0xfee00000-0xfeefffff] could not be reser= ved [ 0.253090] system 00:07: [mem 0xf7fdf000-0xf7fdffff] has been reserved [ 0.253092] system 00:07: [mem 0xf7fe0000-0xf7feffff] has been reserved [ 0.253276] pnp: PnP ACPI: found 8 devices [ 0.257840] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, m= ax_idle_ns: 2085701024 ns [ 0.257914] NET: Registered PF_INET protocol family [ 0.258041] IP idents hash table entries: 262144 (order: 9, 2097152 byte= s, linear) [ 0.270658] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5,= 131072 bytes, linear) [ 0.270686] Table-perturb hash table entries: 65536 (order: 6, 262144 by= tes, linear) [ 0.270743] TCP established hash table entries: 131072 (order: 8, 104857= 6 bytes, linear) [ 0.270947] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes,= linear) [ 0.271157] TCP: Hash tables configured (established 131072 bind 65536) [ 0.271225] MPTCP token hash table entries: 16384 (order: 6, 393216 byte= s, linear) [ 0.271280] UDP hash table entries: 8192 (order: 7, 524288 bytes, linear) [ 0.271360] UDP-Lite hash table entries: 8192 (order: 7, 524288 bytes, l= inear) [ 0.271450] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.271457] NET: Registered PF_XDP protocol family [ 0.271468] pci 0000:00:01.0: PCI bridge to [bus 01] [ 0.271472] pci 0000:00:01.0: bridge window [io 0xe000-0xefff] [ 0.271475] pci 0000:00:01.0: bridge window [mem 0xf7c00000-0xf7cfffff] [ 0.271478] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff= 64bit pref] [ 0.271482] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] [ 0.271483] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] [ 0.271485] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff windo= w] [ 0.271486] pci_bus 0000:00: resource 7 [mem 0x000e0000-0x000e7fff windo= w] [ 0.271487] pci_bus 0000:00: resource 8 [mem 0xcf200000-0xfeafffff windo= w] [ 0.271489] pci_bus 0000:01: resource 0 [io 0xe000-0xefff] [ 0.271490] pci_bus 0000:01: resource 1 [mem 0xf7c00000-0xf7cfffff] [ 0.271491] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xefffffff 64bit= pref] [ 0.292119] pci 0000:00:14.0: quirk_usb_early_handoff+0x0/0x760 took 200= 59 usecs [ 0.313697] pci 0000:00:1a.0: quirk_usb_early_handoff+0x0/0x760 took 210= 54 usecs [ 0.333697] pci 0000:00:1d.0: quirk_usb_early_handoff+0x0/0x760 took 195= 16 usecs [ 0.333741] pci 0000:01:00.1: D0 power state depends on 0000:01:00.0 [ 0.333747] PCI: CLS 64 bytes, default 64 [ 0.333775] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) [ 0.333776] software IO TLB: mapped [mem 0x00000000c3eeb000-0x00000000c7= eeb000] (64MB) [ 0.333811] Trying to unpack rootfs image as initramfs... [ 0.333822] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360= ms ovfl timer [ 0.333823] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules [ 0.333824] RAPL PMU: hw unit of domain package 2^-14 Joules [ 0.333825] RAPL PMU: hw unit of domain dram 2^-14 Joules [ 0.333826] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules [ 0.334482] Initialise system trusted keyrings [ 0.334525] workingset: timestamp_bits=3D40 max_order=3D22 bucket_order= =3D0 [ 0.334532] zbud: loaded [ 0.345611] Key type asymmetric registered [ 0.345614] Asymmetric key parser 'x509' registered [ 0.345634] Block layer SCSI generic (bsg) driver version 0.4 loaded (ma= jor 247) [ 0.345668] io scheduler mq-deadline registered [ 0.346061] ledtrig-cpu: registered to indicate activity on CPUs [ 0.346196] pcieport 0000:00:01.0: PME: Signaling with IRQ 24 [ 0.346284] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 0.346740] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0= C0C:00/input/input0 [ 0.346771] ACPI: button: Power Button [PWRB] [ 0.346799] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/inpu= t/input1 [ 0.346830] ACPI: button: Power Button [PWRF] [ 0.347316] ACPI: \_TZ_.TZ00: _AL0 evaluation failure [ 0.347401] thermal LNXTHERM:00: registered as thermal_zone0 [ 0.347403] ACPI: thermal: Thermal Zone [TZ00] (28 C) [ 0.347551] thermal LNXTHERM:01: registered as thermal_zone1 [ 0.347553] ACPI: thermal: Thermal Zone [TZ01] (30 C) [ 0.347632] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled [ 0.347748] 00:06: ttyS0 at I/O 0x3f8 (irq =3D 4, base_baud =3D 115200) = is a 16550A [ 0.349863] 0000:00:16.3: ttyS4 at I/O 0xf0e0 (irq =3D 19, base_baud =3D= 115200) is a 16550A [ 0.350059] Linux agpgart interface v0.103 [ 0.352091] brd: module loaded [ 0.352919] loop: module loaded [ 0.352941] SPI driver tps6594 has no spi_device_id for ti,tps6594-q1 [ 0.352942] SPI driver tps6594 has no spi_device_id for ti,tps6593-q1 [ 0.352943] SPI driver tps6594 has no spi_device_id for ti,lp8764-q1 [ 0.352944] SPI driver tps6594 has no spi_device_id for ti,tps65224-q1 [ 0.352998] Key type psk registered [ 0.353360] tun: Universal TUN/TAP device driver, 1.6 [ 0.353391] PPP generic driver version 2.4.2 [ 0.353582] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 0.353589] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus = number 1 [ 0.354656] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x1= 00 quirks 0x0000000000009810 [ 0.354818] ehci-pci 0000:00:1a.0: EHCI Host Controller [ 0.354824] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus = number 2 [ 0.354844] ehci-pci 0000:00:1a.0: debug port 2 [ 0.354853] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 0.354856] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus = number 3 [ 0.354858] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed [ 0.354903] usb usb1: New USB device found, idVendor=3D1d6b, idProduct= =3D0002, bcdDevice=3D 6.13 [ 0.354906] usb usb1: New USB device strings: Mfr=3D3, Product=3D2, Seri= alNumber=3D1 [ 0.354907] usb usb1: Product: xHCI Host Controller [ 0.354908] usb usb1: Manufacturer: Linux 6.13.7-gnu xhci-hcd [ 0.354909] usb usb1: SerialNumber: 0000:00:14.0 [ 0.355063] hub 1-0:1.0: USB hub found [ 0.355087] hub 1-0:1.0: 15 ports detected [ 0.357778] usb usb3: New USB device found, idVendor=3D1d6b, idProduct= =3D0003, bcdDevice=3D 6.13 [ 0.357781] usb usb3: New USB device strings: Mfr=3D3, Product=3D2, Seri= alNumber=3D1 [ 0.357782] usb usb3: Product: xHCI Host Controller [ 0.357783] usb usb3: Manufacturer: Linux 6.13.7-gnu xhci-hcd [ 0.357784] usb usb3: SerialNumber: 0000:00:14.0 [ 0.357868] hub 3-0:1.0: USB hub found [ 0.357883] hub 3-0:1.0: 6 ports detected [ 0.358462] i8042: PNP: No PS/2 controller found. [ 0.358503] mousedev: PS/2 mouse device common for all mice [ 0.358565] rtc_cmos 00:02: RTC can wake from S4 [ 0.358757] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf7d3c000 [ 0.358883] rtc_cmos 00:02: registered as rtc0 [ 0.358917] rtc_cmos 00:02: setting system clock to 2025-03-20T15:09:49 = UTC (1742483389) [ 0.358944] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram [ 0.358951] i2c_dev: i2c /dev entries driver [ 0.359137] device-mapper: uevent: version 1.0.3 [ 0.359192] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised:= dm-devel@HIDDEN [ 0.359198] intel_pstate: Intel P-state driver initializing [ 0.359838] NET: Registered PF_INET6 protocol family [ 0.360714] Segment Routing with IPv6 [ 0.360739] In-situ OAM (IOAM) with IPv6 [ 0.360797] NET: Registered PF_PACKET protocol family [ 0.360941] Key type dns_resolver registered [ 0.361717] ENERGY_PERF_BIAS: Set to 'normal', was 'performance' [ 0.362329] microcode: Current revision: 0x00000025 [ 0.362967] IPI shorthand broadcast: enabled [ 0.369712] sched_clock: Marking stable (368003135, 1623278)->(372447222= , -2820809) [ 0.370160] registered taskstats version 1 [ 0.370498] Loading compiled-in X.509 certificates [ 0.373736] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00 [ 0.373860] usb usb2: New USB device found, idVendor=3D1d6b, idProduct= =3D0002, bcdDevice=3D 6.13 [ 0.373869] usb usb2: New USB device strings: Mfr=3D3, Product=3D2, Seri= alNumber=3D1 [ 0.373875] usb usb2: Product: EHCI Host Controller [ 0.373879] usb usb2: Manufacturer: Linux 6.13.7-gnu ehci_hcd [ 0.373883] usb usb2: SerialNumber: 0000:00:1a.0 [ 0.374364] hub 2-0:1.0: USB hub found [ 0.374386] hub 2-0:1.0: 3 ports detected [ 0.374901] ehci-pci 0000:00:1d.0: EHCI Host Controller [ 0.374919] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus = number 4 [ 0.374946] ehci-pci 0000:00:1d.0: debug port 2 [ 0.377672] Demotion targets for Node 0: null [ 0.378917] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7d3b000 [ 0.389683] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00 [ 0.389780] usb usb4: New USB device found, idVendor=3D1d6b, idProduct= =3D0002, bcdDevice=3D 6.13 [ 0.389787] usb usb4: New USB device strings: Mfr=3D3, Product=3D2, Seri= alNumber=3D1 [ 0.389791] usb usb4: Product: EHCI Host Controller [ 0.389794] usb usb4: Manufacturer: Linux 6.13.7-gnu ehci_hcd [ 0.389797] usb usb4: SerialNumber: 0000:00:1d.0 [ 0.390074] hub 4-0:1.0: USB hub found [ 0.390091] hub 4-0:1.0: 3 ports detected [ 0.568283] Freeing initrd memory: 14856K [ 0.569215] Key type encrypted registered [ 0.569219] AppArmor: AppArmor sha256 policy hashing enabled [ 0.569235] ima: No TPM chip found, activating TPM-bypass! [ 0.569239] ima: Allocated hash algorithm: sha1 [ 0.569246] ima: No architecture policies found [ 0.569258] evm: Initialising EVM extended attributes: [ 0.569258] evm: security.selinux [ 0.569259] evm: security.SMACK64 [ 0.569268] evm: security.SMACK64EXEC [ 0.569269] evm: security.SMACK64TRANSMUTE [ 0.569270] evm: security.SMACK64MMAP [ 0.569270] evm: security.apparmor [ 0.569271] evm: security.ima [ 0.569272] evm: security.capability [ 0.569273] evm: HMAC attrs: 0x1 [ 0.569564] PM: Magic number: 1:691:184 [ 0.569613] thermal LNXTHERM:00: hash matches [ 0.569621] acpi device:43: hash matches [ 0.579081] clk: Disabling unused clocks [ 0.579086] PM: genpd: Disabling unused power domains [ 0.580745] Freeing unused kernel image (initmem) memory: 4672K [ 0.580826] Write protecting the kernel read-only data: 34816k [ 0.581149] Freeing unused kernel image (rodata/data gap) memory: 792K [ 0.581165] Run /init as init process [ 0.581166] with arguments: [ 0.581168] /init [ 0.581169] with environment: [ 0.581169] HOME=3D/ [ 0.581170] TERM=3Dlinux [ 0.581171] BOOT_IMAGE=3D/gnu/store/83yk0v536clfabc4lcmp505rmwp76g4x= -linux-libre-6.13.7/bzImage [ 0.605653] usb 1-4: new high-speed USB device number 2 using xhci_hcd [ 0.621671] usb 2-1: new high-speed USB device number 2 using ehci-pci [ 0.636514] ahci 0000:00:1f.2: version 3.0 [ 0.636706] ahci 0000:00:1f.2: AHCI vers 0001.0300, 32 command slots, 6 = Gbps, RAID mode [ 0.636709] ahci 0000:00:1f.2: 2/6 ports implemented (port mask 0x3) [ 0.636711] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part= ems apst=20 [ 0.637683] usb 4-1: new high-speed USB device number 2 using ehci-pci [ 0.642391] scsi host0: ahci [ 0.642722] scsi host1: ahci [ 0.642866] scsi host2: ahci [ 0.642974] scsi host3: ahci [ 0.643053] scsi host4: ahci [ 0.643131] scsi host5: ahci [ 0.643162] ata1: SATA max UDMA/133 abar m2048@0xf7d3a000 port 0xf7d3a10= 0 irq 30 lpm-pol 0 [ 0.643166] ata2: SATA max UDMA/133 abar m2048@0xf7d3a000 port 0xf7d3a18= 0 irq 30 lpm-pol 0 [ 0.643167] ata3: DUMMY [ 0.643168] ata4: DUMMY [ 0.643168] ata5: DUMMY [ 0.643169] ata6: DUMMY [ 0.756720] usb 1-4: New USB device found, idVendor=3D0bda, idProduct=3D= 5411, bcdDevice=3D 1.36 [ 0.756728] usb 1-4: New USB device strings: Mfr=3D1, Product=3D2, Seria= lNumber=3D0 [ 0.756731] usb 1-4: Product: 4-Port USB 2.0 Hub [ 0.756733] usb 1-4: Manufacturer: Generic [ 0.758112] hub 1-4:1.0: USB hub found [ 0.760314] hub 1-4:1.0: 4 ports detected [ 0.766069] usb 2-1: New USB device found, idVendor=3D8087, idProduct=3D= 8008, bcdDevice=3D 0.04 [ 0.766077] usb 2-1: New USB device strings: Mfr=3D0, Product=3D0, Seria= lNumber=3D0 [ 0.766387] hub 2-1:1.0: USB hub found [ 0.766444] hub 2-1:1.0: 6 ports detected [ 0.782425] usb 4-1: New USB device found, idVendor=3D8087, idProduct=3D= 8000, bcdDevice=3D 0.04 [ 0.782433] usb 4-1: New USB device strings: Mfr=3D0, Product=3D0, Seria= lNumber=3D0 [ 0.782982] hub 4-1:1.0: USB hub found [ 0.783153] hub 4-1:1.0: 8 ports detected [ 0.866287] usb 3-6: new SuperSpeed USB device number 2 using xhci_hcd [ 0.903466] usb 3-6: New USB device found, idVendor=3D0bda, idProduct=3D= 0411, bcdDevice=3D 1.36 [ 0.903476] usb 3-6: New USB device strings: Mfr=3D1, Product=3D2, Seria= lNumber=3D0 [ 0.903480] usb 3-6: Product: 4-Port USB 3.0 Hub [ 0.903483] usb 3-6: Manufacturer: Generic [ 0.912234] hub 3-6:1.0: USB hub found [ 0.913766] hub 3-6:1.0: 4 ports detected [ 0.953119] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) [ 0.953157] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300) [ 0.955622] ata1.00: ATA-10: SHGS31-250GS-2, 90000Q00, max UDMA/133 [ 0.955767] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 32), = AA [ 0.956583] ata1.00: configured for UDMA/133 [ 0.956719] ata2.00: ATAPI: MATSHITA DVD+/-RW UJ8E1, D.03, max UDMA/100 [ 0.956775] scsi 0:0:0:0: Direct-Access ATA SHGS31-250GS-2 0Q= 00 PQ: 0 ANSI: 5 [ 0.957162] sd 0:0:0:0: Attached scsi generic sg0 type 0 [ 0.957190] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB= /233 GiB) [ 0.957196] sd 0:0:0:0: [sda] 4096-byte physical blocks [ 0.957208] sd 0:0:0:0: [sda] Write Protect is off [ 0.957211] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 0.957228] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled,= doesn't support DPO or FUA [ 0.957257] sd 0:0:0:0: [sda] Preferred minimum I/O size 4096 bytes [ 0.962379] ata2.00: configured for UDMA/100 [ 0.969905] scsi 1:0:0:0: CD-ROM MATSHITA DVD+-RW UJ8E1 D.= 03 PQ: 0 ANSI: 5 [ 0.992634] sda: sda1 sda2 [ 0.993127] sd 0:0:0:0: [sda] Attached SCSI disk [ 1.061740] usb 1-4.3: new low-speed USB device number 3 using xhci_hcd [ 1.062610] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd= /rw xa/form2 cdda tray [ 1.062624] cdrom: Uniform CD-ROM driver Revision: 3.20 [ 1.096548] sr 1:0:0:0: Attached scsi CD-ROM sr0 [ 1.096816] sr 1:0:0:0: Attached scsi generic sg1 type 5 [ 1.103475] usbcore: registered new interface driver usb-storage [ 1.112129] usbcore: registered new interface driver uas [ 1.133869] hid: raw HID events driver (C) Jiri Kosina [ 1.135186] usbcore: registered new interface driver usbhid [ 1.135190] usbhid: USB HID core driver [ 1.166761] isci: Intel(R) C600 SAS Controller Driver - version 1.2.0 [ 1.172828] usb 1-4.3: New USB device found, idVendor=3D2222, idProduct= =3D0093, bcdDevice=3D 1.01 [ 1.172834] usb 1-4.3: New USB device strings: Mfr=3D1, Product=3D2, Ser= ialNumber=3D0 [ 1.172837] usb 1-4.3: Product: ERGOKEY USB Keyboard [ 1.172839] usb 1-4.3: Manufacturer: MGI=20 [ 1.180724] input: MGI ERGOKEY USB Keyboard as /devices/pci0000:00/0000= :00:14.0/usb1/1-4/1-4.3/1-4.3:1.0/0003:2222:0093.0001/input/input2 [ 1.233770] hid-generic 0003:2222:0093.0001: input,hidraw0: USB HID v1.1= 0 Keyboard [MGI ERGOKEY USB Keyboard] on usb-0000:00:14.0-4.3/input0 [ 1.236393] input: MGI ERGOKEY USB Keyboard Consumer Control as /device= s/pci0000:00/0000:00:14.0/usb1/1-4/1-4.3/1-4.3:1.1/0003:2222:0093.0002/inpu= t/input3 [ 1.242258] usb 3-6.4: new SuperSpeed USB device number 3 using xhci_hcd [ 1.274867] usb 3-6.4: New USB device found, idVendor=3D0bda, idProduct= =3D0411, bcdDevice=3D 1.36 [ 1.274881] usb 3-6.4: New USB device strings: Mfr=3D1, Product=3D2, Ser= ialNumber=3D0 [ 1.274886] usb 3-6.4: Product: 4-Port USB 3.0 Hub [ 1.274891] usb 3-6.4: Manufacturer: Generic [ 1.284810] hub 3-6.4:1.0: USB hub found [ 1.286842] hub 3-6.4:1.0: 4 ports detected [ 1.290132] input: MGI ERGOKEY USB Keyboard System Control as /devices/= pci0000:00/0000:00:14.0/usb1/1-4/1-4.3/1-4.3:1.1/0003:2222:0093.0002/input/= input4 [ 1.290625] hid-generic 0003:2222:0093.0002: input,hidraw1: USB HID v1.1= 0 Device [MGI ERGOKEY USB Keyboard] on usb-0000:00:14.0-4.3/input1 [ 1.349747] tsc: Refined TSC clocksource calibration: 3192.604 MHz [ 1.349769] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2e0= 4ff556d3, max_idle_ns: 440795348168 ns [ 1.349829] clocksource: Switched to clocksource tsc [ 1.377766] usb 1-4.4: new high-speed USB device number 4 using xhci_hcd [ 1.496602] usb 1-4.4: New USB device found, idVendor=3D0bda, idProduct= =3D5411, bcdDevice=3D 1.36 [ 1.496619] usb 1-4.4: New USB device strings: Mfr=3D1, Product=3D2, Ser= ialNumber=3D0 [ 1.496627] usb 1-4.4: Product: 4-Port USB 2.0 Hub [ 1.496632] usb 1-4.4: Manufacturer: Generic [ 1.498523] hub 1-4.4:1.0: USB hub found [ 1.499872] hub 1-4.4:1.0: 4 ports detected [ 1.797771] usb 1-4.4.1: new low-speed USB device number 5 using xhci_hcd [ 1.890333] usb 1-4.4.1: New USB device found, idVendor=3D18f8, idProduc= t=3D0f97, bcdDevice=3D 1.00 [ 1.890351] usb 1-4.4.1: New USB device strings: Mfr=3D0, Product=3D1, S= erialNumber=3D0 [ 1.890358] usb 1-4.4.1: Product: USB OPTICAL MOUSE=20 [ 1.899294] input: USB OPTICAL MOUSE as /devices/pci0000:00/0000:00:14.= 0/usb1/1-4/1-4.4/1-4.4.1/1-4.4.1:1.0/0003:18F8:0F97.0003/input/input5 [ 1.899965] hid-generic 0003:18F8:0F97.0003: input,hidraw2: USB HID v1.1= 0 Mouse [USB OPTICAL MOUSE ] on usb-0000:00:14.0-4.4.1/input0 [ 1.904284] input: USB OPTICAL MOUSE Keyboard as /devices/pci0000:00/00= 00:00:14.0/usb1/1-4/1-4.4/1-4.4.1/1-4.4.1:1.1/0003:18F8:0F97.0004/input/inp= ut6 [ 1.958424] hid-generic 0003:18F8:0F97.0004: input,hiddev0,hidraw3: USB = HID v1.10 Keyboard [USB OPTICAL MOUSE ] on usb-0000:00:14.0-4.4.1/input1 [ 21.362457] EXT4-fs (dm-0): mounted filesystem 2052608e-339f-4560-b70a-5= 5b8d9958ba5 r/w with ordered data mode. Quota mode: none. [ 24.154268] shepherd[1]: GNU Shepherd 1.0.2 (Guile 3.0.9, x86_64-unknown= -linux-gnu) [ 24.154591] shepherd[1]: Starting service root... [ 24.155509] shepherd[1]: Service root started. [ 24.155979] shepherd[1]: Service root running with value #<<process> id:= 1 command: #f>. [ 24.156753] shepherd[1]: Service root has been started. [ 24.162667] shepherd[1]: starting services... [ 24.162981] shepherd[1]: Configuration successfully loaded from '/gnu/st= ore/jr6wkyrlh1yrx8zsxvp0xlx42yvk6iq7-shepherd.conf'. [ 24.187678] shepherd[1]: Starting service user-file-systems... [ 24.188019] shepherd[1]: Starting service root-file-system... [ 24.189067] shepherd[1]: Starting service host-name... [ 24.189317] shepherd[1]: Starting service sysctl... [ 24.189848] shepherd[1]: Starting service log-rotation... [ 24.190057] shepherd[1]: Starting service loopback... [ 24.190504] shepherd[1]: Service user-file-systems started. [ 24.190709] shepherd[1]: Service root-file-system started. [ 24.191111] shepherd[1]: Service host-name started. [ 24.191345] shepherd[1]: Service log-rotation started. [ 24.191936] shepherd[1]: Service user-file-systems running with value #t. [ 24.192137] shepherd[1]: Service user-file-systems has been started. [ 24.192655] shepherd[1]: Service root-file-system running with value #t. [ 24.192864] shepherd[1]: Service root-file-system has been started. [ 24.193344] shepherd[1]: Service host-name running with value "theoden". [ 24.193556] shepherd[1]: Service host-name has been started. [ 24.194730] shepherd[1]: Service log-rotation running with value #<timer= #<<calendar-event> seconds: (0) minutes: (0) hours: (22) days-of-month: (1= 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 2= 9 30 31) months: (1 2 3 4 5 6 7 8 9 10 11 12) days-of-week: (0)> #<procedur= e rotation ()> 7f4c9f85b7c0>. [ 24.194950] shepherd[1]: Service log-rotation has been started. [ 24.253783] udevd[148]: starting version 3.2.14 [ 24.301956] udevd[148]: specified group 'sgx' unknown [ 24.492916] udevd[148]: starting eudev-3.2.14 [ 24.706505] udevd[148]: no sender credentials received, message ignored [ 24.710988] shepherd[1]: Starting service udev... [ 24.711372] shepherd[1]: waiting for udevd... [ 24.718233] shepherd[1]: Registering new logger for udev. [ 24.718535] shepherd[1]: Service sysctl has been started. [ 24.719248] shepherd[1]: Service loopback has been started. [ 24.719593] shepherd[1]: [sysctl] fs.protected_hardlinks =3D 1 [ 24.720261] shepherd[1]: Service sysctl started. [ 24.720650] shepherd[1]: Service loopback started. [ 24.721484] shepherd[1]: [90bpic7a0hd7lc9h1nfgv1kxcw31dbx2-set-up-networ= k] Waiting for network device 'lo'... [ 24.722064] shepherd[1]: Service sysctl running with value #t. [ 24.722723] shepherd[1]: Service loopback running with value #t. [ 24.723015] shepherd[1]: [sysctl] fs.protected_symlinks =3D 1 [ 24.843306] ACPI Warning: SystemIO range 0x0000000000001828-0x0000000000= 00182F conflicts with OpRegion 0x0000000000001800-0x000000000000187F (\PMIO= ) (20240827/utaddress-204) [ 24.843313] ACPI: OSL: Resource conflict; ACPI support missing from driv= er? [ 24.843322] ACPI Warning: SystemIO range 0x0000000000001C40-0x0000000000= 001C4F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR)= (20240827/utaddress-204) [ 24.843325] ACPI: OSL: Resource conflict; ACPI support missing from driv= er? [ 24.843327] ACPI Warning: SystemIO range 0x0000000000001C30-0x0000000000= 001C3F conflicts with OpRegion 0x0000000000001C00-0x0000000000001C3F (\GPRL= ) (20240827/utaddress-204) [ 24.843330] ACPI Warning: SystemIO range 0x0000000000001C30-0x0000000000= 001C3F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR)= (20240827/utaddress-204) [ 24.843332] ACPI: OSL: Resource conflict; ACPI support missing from driv= er? [ 24.843333] ACPI Warning: SystemIO range 0x0000000000001C00-0x0000000000= 001C2F conflicts with OpRegion 0x0000000000001C00-0x0000000000001C3F (\GPRL= ) (20240827/utaddress-204) [ 24.843336] ACPI Warning: SystemIO range 0x0000000000001C00-0x0000000000= 001C2F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR)= (20240827/utaddress-204) [ 24.843339] ACPI: OSL: Resource conflict; ACPI support missing from driv= er? [ 24.843340] lpc_ich: Resource conflict(s) found affecting gpio_ich [ 24.843707] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQBC data block = query control method not found [ 24.844167] pps_core: LinuxPPS API ver. 1 registered [ 24.844170] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo = Giometti <giometti@HIDDEN> [ 24.849641] PTP clock support registered [ 24.873081] e1000e: Intel(R) PRO/1000 Network Driver [ 24.873084] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. [ 24.873264] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) se= t to dynamic conservative mode [ 24.908847] i801_smbus 0000:00:1f.3: SPD Write Disable is set [ 24.908874] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt [ 24.911015] i2c i2c-0: Successfully instantiated SPD at 0x50 [ 24.911318] i2c i2c-0: Successfully instantiated SPD at 0x51 [ 24.911747] i2c i2c-0: Successfully instantiated SPD at 0x52 [ 24.912042] i2c i2c-0: Successfully instantiated SPD at 0x53 [ 24.926654] ACPI: bus type drm_connector registered [ 24.951003] e1000e 0000:00:19.0 0000:00:19.0 (uninitialized): registered= PHC clock [ 24.958883] input: PC Speaker as /devices/platform/pcspkr/input/input8 [ 24.966847] Error: Driver 'pcspkr' is already registered, aborting... [ 24.995973] cryptd: max_cpu_qlen set to 1000 [ 25.018004] AES CTR mode by8 optimization enabled [ 25.024417] input: HDA ATI HDMI HDMI/DP,pcm=3D3 as /devices/pci0000:00/0= 000:00:01.0/0000:01:00.1/sound/card2/input9 [ 25.024589] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 34:= 17:eb:b9:f3:6e [ 25.024592] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connecti= on [ 25.024627] e1000e 0000:00:19.0 eth0: MAC: 11, PHY: 12, PBA No: FFFFFF-0= FF [ 25.032463] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC3220: l= ine_outs=3D1 (0x1b/0x0/0x0/0x0/0x0) type:line [ 25.032470] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=3D1 (0x14= /0x0/0x0/0x0/0x0) [ 25.032471] snd_hda_codec_realtek hdaudioC0D0: hp_outs=3D1 (0x15/0x0/= 0x0/0x0/0x0) [ 25.032473] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=3D0x0 [ 25.032474] snd_hda_codec_realtek hdaudioC0D0: inputs: [ 25.032475] snd_hda_codec_realtek hdaudioC0D0: Rear Mic=3D0x18 [ 25.032477] snd_hda_codec_realtek hdaudioC0D0: Front Mic=3D0x1a [ 25.086128] dcdbas dcdbas: Dell Systems Management Base Driver (version = 5.6.0-3.4) [ 25.127721] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00= :1b.0/sound/card0/input10 [ 25.127766] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:0= 0:1b.0/sound/card0/input11 [ 25.127805] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00= :1b.0/sound/card0/input12 [ 25.127841] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/= 0000:00:1b.0/sound/card0/input13 [ 25.132253] iTCO_vendor_support: vendor-support=3D0 [ 25.462598] at24 0-0050: supply vcc not found, using dummy regulator [ 25.463138] i915 0000:00:02.0: [drm] Found haswell (device ID 0412) disp= lay version 7.00 stepping N/A [ 25.463442] i915 0000:00:02.0: vgaarb: deactivate vga console [ 25.463873] Console: switching to colour dummy device 80x25 [ 25.465669] at24 0-0050: 256 byte spd EEPROM, read-only [ 25.466630] at24 0-0051: supply vcc not found, using dummy regulator [ 25.468339] at24 0-0051: 256 byte spd EEPROM, read-only [ 25.468580] at24 0-0052: supply vcc not found, using dummy regulator [ 25.470574] at24 0-0052: 256 byte spd EEPROM, read-only [ 25.470605] at24 0-0053: supply vcc not found, using dummy regulator [ 25.471021] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes= =3Dio+mem,decodes=3Dnone:owns=3Dio+mem [ 25.472286] at24 0-0053: 256 byte spd EEPROM, read-only [ 25.510063] [drm] Initialized i915 1.6.0 for 0000:00:02.0 on minor 0 [ 25.512436] ACPI: video: Video Device [GFX0] (multi-head: yes rom: no = post: no) [ 25.512725] [drm] radeon kernel modesetting enabled. [ 25.512781] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08= :00/LNXVIDEO:00/input/input14 [ 25.513258] iTCO_wdt iTCO_wdt.1.auto: Found a Lynx Point TCO device (Ver= sion=3D2, TCOBASE=3D0x1860) [ 25.513360] radeon 0000:01:00.0: enabling device (0000 -> 0003) [ 25.514219] iTCO_wdt iTCO_wdt.1.auto: initialized. heartbeat=3D30 sec (n= owayout=3D0) [ 25.514818] [drm] initializing kernel modesetting (CAICOS 0x1002:0x6771 = 0x1028:0x2120 0x00). [ 25.524139] e1000e 0000:00:19.0 eno1: renamed from eth0 [ 25.770543] ATOM BIOS: C36951 [ 25.770621] [drm] GPU not posted. posting now... [ 25.773864] radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x0000= 00003FFFFFFF (1024M used) [ 25.773868] radeon 0000:01:00.0: GTT: 1024M 0x0000000040000000 - 0x00000= 0007FFFFFFF [ 25.773886] [drm] Detected VRAM RAM=3D1024M, BAR=3D256M [ 25.773888] [drm] RAM width 64bits DDR [ 25.773993] [drm] radeon: 1024M of VRAM memory ready [ 25.774005] [drm] radeon: 1024M of GTT memory ready. [ 25.774016] [drm] Loading CAICOS Microcode [ 25.774017] 0000:01:00.0: Missing Free firmware (non-Free firmware loadi= ng is disabled) [ 25.775672] ni_cp: Failed to load firmware "/*(DEBLOBBED)*/" [ 25.775677] [drm:evergreen_init [radeon]] *ERROR* Failed to load firmwar= e! [ 25.775771] radeon 0000:01:00.0: Fatal error during GPU init [ 25.775774] [drm] radeon: finishing device. [ 25.782824] [drm] radeon: ttm finalized [ 25.782950] ------------[ cut here ]------------ [ 25.782952] WARNING: CPU: 3 PID: 168 at mm/slub.c:4723 free_large_kmallo= c+0x6a/0x90 [ 25.782958] Modules linked in: x86_pkg_temp_thermal intel_powerclamp cor= etemp dell_pc iTCO_wdt dell_wmi kvm_intel intel_pmc_bxt at24 mei_wdt wmi_bm= of iTCO_vendor_support platform_profile dell_smbios radeon(+) i915(+) dell_= wmi_descriptor kvm sparse_keymap dcdbas crct10dif_pclmul crc32_pclmul polyv= al_clmulni snd_hda_codec_realtek polyval_generic drm_buddy ghash_clmulni_in= tel drm_ttm_helper snd_hda_codec_generic sha512_ssse3 snd_hda_scodec_compon= ent sha256_ssse3 sha1_ssse3 aesni_intel snd_hda_codec_hdmi ttm drm_suballoc= _helper drm_client_lib drm_display_helper cec crypto_simd cryptd rc_core sn= d_hda_intel snd_intel_dspcfg snd_intel_sdw_acpi drm_kms_helper joydev input= _leds pcspkr snd_hda_codec i2c_i801 drm snd_hda_core i2c_smbus snd_hwdep i2= c_algo_bit i2c_mux snd_pcm snd_timer snd soundcore e1000e mei_me video ptp = mei pps_core mac_hid wmi lpc_ich virtio_rng virtio_console virtio_net virti= o_blk virtio_balloon virtio_pci virtio_pci_legacy_dev virtio_ring virtio vi= rtio_pci_modern_dev isci libsas scsi_transport_sas [ 25.783010] pata_atiixp pata_acpi nls_iso8859_1 wp512 serpent_generic x= ts dm_crypt hid_apple hid_generic usbhid hid uas usb_storage ahci libahci [ 25.783020] CPU: 3 UID: 0 PID: 168 Comm: udevd Not tainted 6.13.7-gnu #1= 056cd809b2962056ce148e2ac19b47cc30df4144 [ 25.783023] Hardware name: Dell Inc. OptiPlex 9020/0XCR8D, BIOS A24 10/2= 4/2018 [ 25.783024] RIP: 0010:free_large_kmalloc+0x6a/0x90 [ 25.783027] Code: 41 5d 5d 31 c0 31 c9 31 f6 31 ff c3 cc cc cc cc 4c 89 = e7 e8 e8 17 f7 ff 41 5c 41 5d 5d 31 c0 31 c9 31 f6 31 ff c3 cc cc cc cc <0f= > 0b 80 3d a7 5e 07 02 00 41 bd 00 f0 ff ff 75 b0 48 c7 c7 a1 7e [ 25.783028] RSP: 0018:ffffabe8807835c0 EFLAGS: 00010246 [ 25.783030] RAX: 017fff8000000000 RBX: ffff9dcdc6e7c000 RCX: 00000000000= 00000 [ 25.783032] RDX: ffffea08c4182508 RSI: ffff9dcdc6e7c000 RDI: ffffea08c41= b9f00 [ 25.783033] RBP: ffffabe8807835d0 R08: 0000000000000000 R09: 00000000000= 00000 [ 25.783034] R10: 0000000000000000 R11: 0000000000000000 R12: ffffea08c41= b9f00 [ 25.783035] R13: ffff9dcdc38de000 R14: 0000000000400031 R15: ffff9dcdc6e= 7c008 [ 25.783036] FS: 00007f1e1b04e080(0000) GS:ffff9dd0deb80000(0000) knlGS:= 0000000000000000 [ 25.783037] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 25.783039] CR2: 000000000244af18 CR3: 0000000108310002 CR4: 00000000001= 726f0 [ 25.783040] Call Trace: [ 25.783042] <TASK> [ 25.783043] ? show_regs+0x75/0x90 [ 25.783047] ? __warn+0x91/0x150 [ 25.783050] ? free_large_kmalloc+0x6a/0x90 [ 25.783052] ? report_bug+0x1af/0x1c0 [ 25.783056] ? handle_bug+0x6e/0xb0 [ 25.783060] ? exc_invalid_op+0x1d/0x90 [ 25.783062] ? asm_exc_invalid_op+0x1f/0x30 [ 25.783076] ? free_large_kmalloc+0x6a/0x90 [ 25.783077] kfree+0x35b/0x460 [ 25.783081] ? drm_managed_release+0x10d/0x160 [drm 7eda09f41979506f18d1= 7cac9ace990ebda97648] [ 25.783128] drm_dev_put+0x6b/0x90 [drm 7eda09f41979506f18d17cac9ace990e= bda97648] [ 25.783156] radeon_pci_probe+0x12e/0x200 [radeon 3e09d7e96b5afcfa10ce07= c8e9d45652642d7fa6] [ 25.783206] local_pci_probe+0x4f/0xc0 [ 25.783210] pci_device_probe+0xd9/0x230 [ 25.783212] ? sysfs_create_link+0x25/0x50 [ 25.783216] really_probe+0xe5/0x3a0 [ 25.783220] __driver_probe_device+0x7e/0x170 [ 25.783222] driver_probe_device+0x23/0xa0 [ 25.783225] __driver_attach+0x103/0x200 [ 25.783227] ? __pfx___driver_attach+0x10/0x10 [ 25.783230] bus_for_each_dev+0x81/0xe0 [ 25.783232] driver_attach+0x22/0x30 [ 25.783234] bus_add_driver+0xf5/0x2d0 [ 25.783237] driver_register+0x68/0x140 [ 25.783240] ? __pfx_radeon_module_init+0x10/0x10 [radeon 3e09d7e96b5afc= fa10ce07c8e9d45652642d7fa6] [ 25.783280] __pci_register_driver+0x65/0x80 [ 25.783283] radeon_module_init+0x9f/0xff0 [radeon 3e09d7e96b5afcfa10ce0= 7c8e9d45652642d7fa6] [ 25.783322] do_one_initcall+0x4d/0x340 [ 25.783325] do_init_module+0x96/0x300 [ 25.783329] load_module+0x2189/0x23d0 [ 25.783332] ? __do_sys_init_module+0x10f/0x240 [ 25.783335] __do_sys_init_module+0x1f7/0x240 [ 25.783337] ? __do_sys_init_module+0x1f7/0x240 [ 25.783351] __x64_sys_init_module+0x1e/0x30 [ 25.783354] x64_sys_call+0x145/0x26f0 [ 25.783357] do_syscall_64+0x74/0x160 [ 25.783364] entry_SYSCALL_64_after_hwframe+0x76/0x7e [ 25.783366] RIP: 0033:0x7f1e1b14d8ca [ 25.783369] Code: 48 8b 0d 31 f5 0c 00 f7 d8 64 89 01 48 83 c8 ff c3 66 = 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 49 89 ca b8 af 00 00 00 0f 05 <48= > 3d 01 f0 ff ff 73 01 c3 48 8b 0d fe f4 0c 00 f7 d8 64 89 01 48 [ 25.783370] RSP: 002b:00007fffd65a61f8 EFLAGS: 00000246 ORIG_RAX: 000000= 00000000af [ 25.783372] RAX: ffffffffffffffda RBX: 0000000002423850 RCX: 00007f1e1b1= 4d8ca [ 25.783373] RDX: 00007f1e1b392324 RSI: 0000000000356310 RDI: 00007f1e195= 11010 [ 25.783375] RBP: 00007f1e19511010 R08: 0000000000001000 R09: 00000000000= 00000 [ 25.783376] R10: 00007f1e1b21dd00 R11: 0000000000000246 R12: 00007f1e1b3= 92324 [ 25.783377] R13: 000000000042f9cc R14: 0000000002419ea0 R15: 00000000024= 23850 [ 25.783379] </TASK> [ 25.783380] ---[ end trace 0000000000000000 ]--- [ 25.783381] object pointer: 0x0000000044ff86f2 [ 25.783384] radeon 0000:01:00.0: probe with driver radeon failed with er= ror -2 [ 25.783395] ------------[ cut here ]------------ [ 25.783396] refcount_t: underflow; use-after-free. [ 25.783406] WARNING: CPU: 3 PID: 168 at lib/refcount.c:28 refcount_warn_= saturate+0xda/0x140 [ 25.783411] Modules linked in: x86_pkg_temp_thermal intel_powerclamp cor= etemp dell_pc iTCO_wdt dell_wmi kvm_intel intel_pmc_bxt at24 mei_wdt wmi_bm= of iTCO_vendor_support platform_profile dell_smbios radeon(+) i915(+) dell_= wmi_descriptor kvm sparse_keymap dcdbas crct10dif_pclmul crc32_pclmul polyv= al_clmulni snd_hda_codec_realtek polyval_generic drm_buddy ghash_clmulni_in= tel drm_ttm_helper snd_hda_codec_generic sha512_ssse3 snd_hda_scodec_compon= ent sha256_ssse3 sha1_ssse3 aesni_intel snd_hda_codec_hdmi ttm drm_suballoc= _helper drm_client_lib drm_display_helper cec crypto_simd cryptd rc_core sn= d_hda_intel snd_intel_dspcfg snd_intel_sdw_acpi drm_kms_helper joydev input= _leds pcspkr snd_hda_codec i2c_i801 drm snd_hda_core i2c_smbus snd_hwdep i2= c_algo_bit i2c_mux snd_pcm snd_timer snd soundcore e1000e mei_me video ptp = mei pps_core mac_hid wmi lpc_ich virtio_rng virtio_console virtio_net virti= o_blk virtio_balloon virtio_pci virtio_pci_legacy_dev virtio_ring virtio vi= rtio_pci_modern_dev isci libsas scsi_transport_sas [ 25.783464] pata_atiixp pata_acpi nls_iso8859_1 wp512 serpent_generic x= ts dm_crypt hid_apple hid_generic usbhid hid uas usb_storage ahci libahci [ 25.783472] CPU: 3 UID: 0 PID: 168 Comm: udevd Tainted: G W = 6.13.7-gnu #1 056cd809b2962056ce148e2ac19b47cc30df4144 [ 25.783475] Tainted: [W]=3DWARN [ 25.783476] Hardware name: Dell Inc. OptiPlex 9020/0XCR8D, BIOS A24 10/2= 4/2018 [ 25.783477] RIP: 0010:refcount_warn_saturate+0xda/0x140 [ 25.783479] Code: 5d 31 f6 31 ff c3 cc cc cc cc 80 3d b6 44 cb 01 00 0f = 85 6d ff ff ff 48 c7 c7 b8 de 9b 9c c6 05 a2 44 cb 01 01 e8 36 6b 90 ff <0f= > 0b 5d 31 f6 31 ff c3 cc cc cc cc 80 3d 88 44 cb 01 00 0f 85 41 [ 25.783481] RSP: 0018:ffffabe880783658 EFLAGS: 00010246 [ 25.783482] RAX: 0000000000000000 RBX: ffff9dcdc6e7c008 RCX: 00000000000= 00000 [ 25.783484] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 00000000000= 00000 [ 25.783485] RBP: ffffabe880783658 R08: 0000000000000000 R09: 00000000000= 00000 [ 25.783486] R10: 0000000000000000 R11: 0000000000000000 R12: ffff9dcdd66= 27080 [ 25.783487] R13: ffffabe8807836c8 R14: ffff9dcdc38de0c8 R15: 00000000000= 00287 [ 25.783488] FS: 00007f1e1b04e080(0000) GS:ffff9dd0deb80000(0000) knlGS:= 0000000000000000 [ 25.783489] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 25.783491] CR2: 000000000244af18 CR3: 0000000108310002 CR4: 00000000001= 726f0 [ 25.783492] Call Trace: [ 25.783493] <TASK> [ 25.783494] ? show_regs+0x75/0x90 [ 25.783496] ? __warn+0x91/0x150 [ 25.783499] ? refcount_warn_saturate+0xda/0x140 [ 25.783501] ? report_bug+0x1af/0x1c0 [ 25.783504] ? handle_bug+0x6e/0xb0 [ 25.783506] ? exc_invalid_op+0x1d/0x90 [ 25.783508] ? asm_exc_invalid_op+0x1f/0x30 [ 25.783511] ? refcount_warn_saturate+0xda/0x140 [ 25.783513] ? refcount_warn_saturate+0xda/0x140 [ 25.783516] devm_drm_dev_init_release+0x85/0x90 [drm 7eda09f41979506f18= d17cac9ace990ebda97648] [ 25.783548] devm_action_release+0x19/0x30 [ 25.783551] release_nodes+0x4a/0xd0 [ 25.783554] devres_release_all+0x9f/0xe0 [ 25.783556] device_unbind_cleanup+0x12/0x80 [ 25.783559] really_probe+0x1b3/0x3a0 [ 25.783561] __driver_probe_device+0x7e/0x170 [ 25.783564] driver_probe_device+0x23/0xa0 [ 25.783566] __driver_attach+0x103/0x200 [ 25.783569] ? __pfx___driver_attach+0x10/0x10 [ 25.783572] bus_for_each_dev+0x81/0xe0 [ 25.783574] driver_attach+0x22/0x30 [ 25.783576] bus_add_driver+0xf5/0x2d0 [ 25.783578] driver_register+0x68/0x140 [ 25.783581] ? __pfx_radeon_module_init+0x10/0x10 [radeon 3e09d7e96b5afc= fa10ce07c8e9d45652642d7fa6] [ 25.783624] __pci_register_driver+0x65/0x80 [ 25.783626] radeon_module_init+0x9f/0xff0 [radeon 3e09d7e96b5afcfa10ce0= 7c8e9d45652642d7fa6] [ 25.783667] do_one_initcall+0x4d/0x340 [ 25.783670] do_init_module+0x96/0x300 [ 25.783672] load_module+0x2189/0x23d0 [ 25.783676] ? __do_sys_init_module+0x10f/0x240 [ 25.783679] __do_sys_init_module+0x1f7/0x240 [ 25.783682] ? __do_sys_init_module+0x1f7/0x240 [ 25.783685] __x64_sys_init_module+0x1e/0x30 [ 25.783688] x64_sys_call+0x145/0x26f0 [ 25.783690] do_syscall_64+0x74/0x160 [ 25.783696] entry_SYSCALL_64_after_hwframe+0x76/0x7e [ 25.783699] RIP: 0033:0x7f1e1b14d8ca [ 25.783700] Code: 48 8b 0d 31 f5 0c 00 f7 d8 64 89 01 48 83 c8 ff c3 66 = 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 49 89 ca b8 af 00 00 00 0f 05 <48= > 3d 01 f0 ff ff 73 01 c3 48 8b 0d fe f4 0c 00 f7 d8 64 89 01 48 [ 25.783702] RSP: 002b:00007fffd65a61f8 EFLAGS: 00000246 ORIG_RAX: 000000= 00000000af [ 25.783704] RAX: ffffffffffffffda RBX: 0000000002423850 RCX: 00007f1e1b1= 4d8ca [ 25.783705] RDX: 00007f1e1b392324 RSI: 0000000000356310 RDI: 00007f1e195= 11010 [ 25.783706] RBP: 00007f1e19511010 R08: 0000000000001000 R09: 00000000000= 00000 [ 25.783707] R10: 00007f1e1b21dd00 R11: 0000000000000246 R12: 00007f1e1b3= 92324 [ 25.783708] R13: 000000000042f9cc R14: 0000000002419ea0 R15: 00000000024= 23850 [ 25.783711] </TASK> [ 25.783711] ---[ end trace 0000000000000000 ]--- [ 25.789632] intel_rapl_common: Found RAPL domain package [ 25.789635] intel_rapl_common: Found RAPL domain core [ 25.789636] intel_rapl_common: Found RAPL domain uncore [ 25.789638] intel_rapl_common: Found RAPL domain dram [ 25.789643] intel_rapl_common: package-0:package:long_term locked by BIOS [ 25.789644] intel_rapl_common: package-0:package:short_term locked by BI= OS [ 26.565363] snd_hda_intel 0000:00:03.0: bound 0000:00:02.0 (ops i915_aud= io_component_bind_ops [i915]) [ 26.565997] fbcon: i915drmfb (fb0) is primary device [ 26.570684] BUG: Bad page state in process kdevtmpfs pfn:106e7c [ 26.570686] page: refcount:-1 mapcount:0 mapping:0000000000000000 index:= 0x15 pfn:0x106e7c [ 26.570688] flags: 0x17fff8000000000(node=3D0|zone=3D2|lastcpupid=3D0xff= ff) [ 26.570691] raw: 017fff8000000000 dead000000000100 dead000000000122 0000= 000000000000 [ 26.570693] raw: 0000000000000015 0000000000000000 ffffffffffffffff 0000= 000000000000 [ 26.570693] page dumped because: nonzero _refcount [ 26.570694] Modules linked in: amdgpu(+) amdxcp drm_exec gpu_sched drm_p= anel_backlight_quirks intel_rapl_msr intel_rapl_common x86_pkg_temp_thermal= intel_powerclamp coretemp dell_pc iTCO_wdt dell_wmi kvm_intel intel_pmc_bx= t at24 mei_wdt wmi_bmof iTCO_vendor_support platform_profile dell_smbios ra= deon i915(+) dell_wmi_descriptor kvm sparse_keymap dcdbas crct10dif_pclmul = crc32_pclmul polyval_clmulni snd_hda_codec_realtek polyval_generic drm_budd= y ghash_clmulni_intel drm_ttm_helper snd_hda_codec_generic sha512_ssse3 snd= _hda_scodec_component sha256_ssse3 sha1_ssse3 aesni_intel snd_hda_codec_hdm= i ttm drm_suballoc_helper drm_client_lib drm_display_helper cec crypto_simd= cryptd rc_core snd_hda_intel snd_intel_dspcfg snd_intel_sdw_acpi drm_kms_h= elper joydev input_leds pcspkr snd_hda_codec i2c_i801 drm snd_hda_core i2c_= smbus snd_hwdep i2c_algo_bit i2c_mux snd_pcm snd_timer snd soundcore e1000e= mei_me video ptp mei pps_core mac_hid wmi lpc_ich virtio_rng virtio_consol= e virtio_net virtio_blk virtio_balloon virtio_pci [ 26.570735] virtio_pci_legacy_dev virtio_ring virtio virtio_pci_modern_= dev isci libsas scsi_transport_sas pata_atiixp pata_acpi nls_iso8859_1 wp51= 2 serpent_generic xts dm_crypt hid_apple hid_generic usbhid hid uas usb_sto= rage ahci libahci [ 26.570746] CPU: 3 UID: 0 PID: 41 Comm: kdevtmpfs Tainted: G W = 6.13.7-gnu #1 056cd809b2962056ce148e2ac19b47cc30df4144 [ 26.570749] Tainted: [W]=3DWARN [ 26.570750] Hardware name: Dell Inc. OptiPlex 9020/0XCR8D, BIOS A24 10/2= 4/2018 [ 26.570751] Call Trace: [ 26.570752] <TASK> [ 26.570754] dump_stack_lvl+0x7a/0xa0 [ 26.570757] dump_stack+0x14/0x20 [ 26.570758] bad_page+0x71/0x110 [ 26.570761] __rmqueue_pcplist+0x244/0xb20 [ 26.570764] get_page_from_freelist+0x2d0/0x1590 [ 26.570768] __alloc_pages_noprof+0x18e/0x360 [ 26.570770] alloc_pages_mpol_noprof+0x93/0x210 [ 26.570774] alloc_pages_noprof+0x54/0x90 [ 26.570776] allocate_slab+0x3d7/0x700 [ 26.570780] ___slab_alloc+0x4ac/0x970 [ 26.570782] ? shmem_alloc_inode+0x44/0xb0 [ 26.570785] ? terminate_walk+0x65/0x100 [ 26.570788] ? path_parentat+0x4c/0x90 [ 26.570791] ? shmem_alloc_inode+0x44/0xb0 [ 26.570793] kmem_cache_alloc_lru_noprof+0x21a/0x3e0 [ 26.570795] shmem_alloc_inode+0x44/0xb0 [ 26.570797] ? __d_add+0x151/0x1e0 [ 26.570800] alloc_inode+0x2a/0x150 [ 26.570802] new_inode+0x14/0x90 [ 26.570804] __shmem_get_inode+0x84/0x3e0 [ 26.570806] ? generic_permission+0x8c/0x2c0 [ 26.570808] shmem_mknod+0x2f/0x100 [ 26.570810] vfs_mknod+0x219/0x310 [ 26.570812] devtmpfs_work_loop+0xc7/0x2d0 [ 26.570816] ? __pfx_devtmpfsd+0x10/0x10 [ 26.570819] devtmpfsd+0x3c/0x40 [ 26.570820] kthread+0xe8/0x120 [ 26.570823] ? __pfx_kthread+0x10/0x10 [ 26.570826] ret_from_fork+0x4a/0x70 [ 26.570829] ? __pfx_kthread+0x10/0x10 [ 26.570831] ret_from_fork_asm+0x1a/0x30 [ 26.570834] </TASK> [ 26.570834] Disabling lock debugging due to kernel taint [ 26.571262] input: HDA Intel HDMI HDMI/DP,pcm=3D3 as /devices/pci0000:00= /0000:00:03.0/sound/card1/input15 [ 26.571350] input: HDA Intel HDMI HDMI/DP,pcm=3D7 as /devices/pci0000:00= /0000:00:03.0/sound/card1/input16 [ 26.571409] input: HDA Intel HDMI HDMI/DP,pcm=3D8 as /devices/pci0000:00= /0000:00:03.0/sound/card1/input17 [ 26.718537] Console: switching to colour frame buffer device 240x67 [ 26.729043] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device [ 27.833738] [drm] amdgpu kernel modesetting enabled. [ 27.833893] amdgpu: Virtual CRAT table created for CPU [ 27.833911] amdgpu: Topology: Add CPU node [ 30.789956] NET: Registered PF_QIPCRTR protocol family [ 31.993990] e1000e 0000:00:19.0 eno1: NIC Link is Up 100 Mbps Half Duple= x, Flow Control: None [ 33.534645] ntpd[449]: segfault at 24 ip 000055c13090a29b sp 00007ffc1d6= d67d0 error 4 in ntpd[7f29b,55c13089d000+86000] likely on CPU 2 (core 2, so= cket 0) [ 33.534664] Code: 8b 04 25 28 00 00 00 48 89 44 24 08 31 c0 e8 dc 2d f9 = ff 44 8b 28 48 89 c5 e8 61 9e ff ff 49 89 c4 48 85 db 0f 84 e5 00 00 00 <44= > 0f b7 0b 66 41 83 f9 02 0f 84 f6 00 00 00 66 41 83 f9 0a 74 57 [ 33.699198] ntpd[456]: segfault at 24 ip 0000557aa57f529b sp 00007ffeb59= d7db0 error 4 in ntpd[7f29b,557aa5788000+86000] likely on CPU 0 (core 0, so= cket 0) [ 33.699213] Code: 8b 04 25 28 00 00 00 48 89 44 24 08 31 c0 e8 dc 2d f9 = ff 44 8b 28 48 89 c5 e8 61 9e ff ff 49 89 c4 48 85 db 0f 84 e5 00 00 00 <44= > 0f b7 0b 66 41 83 f9 02 0f 84 f6 00 00 00 66 41 83 f9 0a 74 57 [ 33.839022] ntpd[467]: segfault at 24 ip 000055944b25229b sp 00007fff08b= ecde0 error 4 in ntpd[7f29b,55944b1e5000+86000] likely on CPU 0 (core 0, so= cket 0) [ 33.839033] Code: 8b 04 25 28 00 00 00 48 89 44 24 08 31 c0 e8 dc 2d f9 = ff 44 8b 28 48 89 c5 e8 61 9e ff ff 49 89 c4 48 85 db 0f 84 e5 00 00 00 <44= > 0f b7 0b 66 41 83 f9 02 0f 84 f6 00 00 00 66 41 83 f9 0a 74 57 [ 34.015733] ntpd[473]: segfault at 24 ip 000055ab7362e29b sp 00007fff608= 49bc0 error 4 in ntpd[7f29b,55ab735c1000+86000] likely on CPU 3 (core 3, so= cket 0) [ 34.015749] Code: 8b 04 25 28 00 00 00 48 89 44 24 08 31 c0 e8 dc 2d f9 = ff 44 8b 28 48 89 c5 e8 61 9e ff ff 49 89 c4 48 85 db 0f 84 e5 00 00 00 <44= > 0f b7 0b 66 41 83 f9 02 0f 84 f6 00 00 00 66 41 83 f9 0a 74 57 [ 34.173341] ntpd[482]: segfault at 24 ip 0000556e82d1329b sp 00007ffcf27= 8f650 error 4 in ntpd[7f29b,556e82ca6000+86000] likely on CPU 2 (core 2, so= cket 0) [ 34.173359] Code: 8b 04 25 28 00 00 00 48 89 44 24 08 31 c0 e8 dc 2d f9 = ff 44 8b 28 48 89 c5 e8 61 9e ff ff 49 89 c4 48 85 db 0f 84 e5 00 00 00 <44= > 0f b7 0b 66 41 83 f9 02 0f 84 f6 00 00 00 66 41 83 f9 0a 74 57 [ 34.349286] ntpd[484]: segfault at 24 ip 00005590b1d2c29b sp 00007ffc472= 0bcd0 error 4 in ntpd[7f29b,5590b1cbf000+86000] likely on CPU 0 (core 0, so= cket 0) [ 34.349301] Code: 8b 04 25 28 00 00 00 48 89 44 24 08 31 c0 e8 dc 2d f9 = ff 44 8b 28 48 89 c5 e8 61 9e ff ff 49 89 c4 48 85 db 0f 84 e5 00 00 00 <44= > 0f b7 0b 66 41 83 f9 02 0f 84 f6 00 00 00 66 41 83 f9 0a 74 57 [ 34.532228] ntpd[487]: segfault at 24 ip 0000564c1990d29b sp 00007ffe72a= d1880 error 4 in ntpd[7f29b,564c198a0000+86000] likely on CPU 2 (core 2, so= cket 0) [ 34.532242] Code: 8b 04 25 28 00 00 00 48 89 44 24 08 31 c0 e8 dc 2d f9 = ff 44 8b 28 48 89 c5 e8 61 9e ff ff 49 89 c4 48 85 db 0f 84 e5 00 00 00 <44= > 0f b7 0b 66 41 83 f9 02 0f 84 f6 00 00 00 66 41 83 f9 0a 74 57 [ 37.510099] rfkill: input handler disabled [ 47.751306] rfkill: input handler enabled [ 50.056505] fuse: init (API version 7.41) [ 52.906615] rfkill: input handler disabled [ 77.941842] .gsd-usb-protec[1051]: segfault at 8 ip 000000000040461b sp = 00007fff4b882b90 error 4 in .gsd-usb-protection-real[461b,403000+4000] like= ly on CPU 2 (core 2, socket 0) [ 77.941854] Code: 40 00 48 8b 48 08 31 c0 e8 82 f0 ff ff e9 22 ff ff ff = 0f 1f 44 00 00 48 8b 04 24 ba 10 79 40 00 be 10 00 00 00 bf 3a 70 40 00 <48= > 8b 48 08 31 c0 e8 5a f0 ff ff e9 3a ff ff ff 0f 1f 44 00 00 48 [ 102.989907] .gsd-usb-protec[1719]: segfault at 8 ip 000000000040461b sp = 00007fff90f92580 error 4 in .gsd-usb-protection-real[461b,403000+4000] like= ly on CPU 1 (core 1, socket 0) [ 102.989920] Code: 40 00 48 8b 48 08 31 c0 e8 82 f0 ff ff e9 22 ff ff ff = 0f 1f 44 00 00 48 8b 04 24 ba 10 79 40 00 be 10 00 00 00 bf 3a 70 40 00 <48= > 8b 48 08 31 c0 e8 5a f0 ff ff e9 3a ff ff ff 0f 1f 44 00 00 48 [ 107.655030] rfkill: input handler enabled [ 111.685132] rfkill: input handler disabled [ 117.274480] rfkill: input handler enabled [ 120.956721] rfkill: input handler disabled [ 146.053850] .gsd-usb-protec[2316]: segfault at 8 ip 000000000040461b sp = 00007fffabd4d0b0 error 4 in .gsd-usb-protection-real[461b,403000+4000] like= ly on CPU 3 (core 3, socket 0) [ 146.053863] Code: 40 00 48 8b 48 08 31 c0 e8 82 f0 ff ff e9 22 ff ff ff = 0f 1f 44 00 00 48 8b 04 24 ba 10 79 40 00 be 10 00 00 00 bf 3a 70 40 00 <48= > 8b 48 08 31 c0 e8 5a f0 ff ff e9 3a ff ff ff 0f 1f 44 00 00 48 [ 171.106101] .gsd-usb-protec[3030]: segfault at 8 ip 000000000040461b sp = 00007ffc636c0630 error 4 in .gsd-usb-protection-real[461b,403000+4000] like= ly on CPU 1 (core 1, socket 0) [ 171.106126] Code: 40 00 48 8b 48 08 31 c0 e8 82 f0 ff ff e9 22 ff ff ff = 0f 1f 44 00 00 48 8b 04 24 ba 10 79 40 00 be 10 00 00 00 bf 3a 70 40 00 <48= > 8b 48 08 31 c0 e8 5a f0 ff ff e9 3a ff ff ff 0f 1f 44 00 00 48 [ 173.946050] rfkill: input handler enabled [ 178.254108] rfkill: input handler disabled [ 183.574431] rfkill: input handler enabled [ 187.356128] rfkill: input handler disabled [ 212.425851] .gsd-usb-protec[3748]: segfault at 8 ip 000000000040461b sp = 00007ffd83ba0660 error 4 in .gsd-usb-protection-real[461b,403000+4000] like= ly on CPU 1 (core 1, socket 0) [ 212.425862] Code: 40 00 48 8b 48 08 31 c0 e8 82 f0 ff ff e9 22 ff ff ff = 0f 1f 44 00 00 48 8b 04 24 ba 10 79 40 00 be 10 00 00 00 bf 3a 70 40 00 <48= > 8b 48 08 31 c0 e8 5a f0 ff ff e9 3a ff ff ff 0f 1f 44 00 00 48 [ 223.139659] rfkill: input handler enabled [ 237.469900] .gsd-usb-protec[4142]: segfault at 8 ip 000000000040461b sp = 00007ffc0acd05b0 error 4 in .gsd-usb-protection-real[461b,403000+4000] like= ly on CPU 1 (core 1, socket 0) [ 237.469912] Code: 40 00 48 8b 48 08 31 c0 e8 82 f0 ff ff e9 22 ff ff ff = 0f 1f 44 00 00 48 8b 04 24 ba 10 79 40 00 be 10 00 00 00 bf 3a 70 40 00 <48= > 8b 48 08 31 c0 e8 5a f0 ff ff e9 3a ff ff ff 0f 1f 44 00 00 48 --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Here is the information on the current commit: ``` guix describe Generation 156 Mar 18 2025 06:51:05 (current) guix fa39695 repository URL: https://git.savannah.gnu.org/git/guix.git branch: master commit: fa39695bbc0c5f79838cbca55d55eebd821a8efa ``` Here is the information on the system I upgraded from: ``` guix system list-generations Generation 93 Feb 25 2025 09:39:56 file name: /var/guix/profiles/system-93-link canonical file name: /gnu/store/g4afrmhdsw0ff2c7188klqhd9lmfjszj-system label: GNU with Linux-Libre 6.13.3 bootloader: grub root device: /dev/mapper/cryptroot kernel: /gnu/store/xp54qjqridxih5j8j0krsxrjlymmvg3x-linux-libre-6.13.3/bz= Image channels: guix: repository URL: https://git.savannah.gnu.org/git/guix.git branch: master commit: 7790e32556f0eebb1bb640e604334f8d1dc20ca5 configuration file: /gnu/store/q6vx1m9740q04f9rqwdbbvz7v4c28zc7-configura= tion.scm ``` Here is information on my system from neofetchm, while running under the ne= wer guix system profile: ``` neofetch --stdout christopher@theoden=20 -------------------=20 OS: Guix System x86_64=20 Host: OptiPlex 9020 00=20 Kernel: 6.13.7-gnu=20 Uptime: 4 mins=20 Packages: 159 (guix-system)=20 Shell: bash 5.1.16=20 Resolution: 1920x1080=20 Terminal: /dev/tty1=20 CPU: Intel i5-4570 (4) @ 3.600GHz=20 GPU: AMD ATI Radeon HD 8490 / R5 235X OEM=20 GPU: Intel HD Graphics=20 Memory: 1186MiB / 15906MiB=20 ``` --=20 =F0=9F=93=9B Christopher Howard =F0=9F=9A=80 gemini://gem.librehacker.com =F0=9F=8C=90 http://gem.librehacker.com =D7=91=D7=A8=D7=90=D7=A9=D7=99=D7=AA =D7=91=D7=A8=D7=90 =D7=90=D7=9C=D7=94= =D7=99=D7=9D =D7=90=D7=AA =D7=94=D7=A9=D7=9E=D7=99=D7=9D =D7=95=D7=90=D7=AA= =D7=94=D7=90=D7=A8=D7=A5 --=-=-=--
Christopher Howard <christopher@HIDDEN>
:bug-guix@HIDDEN
.
Full text available.bug-guix@HIDDEN
:bug#77135
; Package guix
.
Full text available.
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997 nCipher Corporation Ltd,
1994-97 Ian Jackson.