GNU bug report logs - #69841
[PATCH] linux-modules: Ignore nonexistent module files on boot.

Previous Next

Package: guix-patches;

Reported by: Hilton Chain <hako <at> ultrarare.space>

Date: Sun, 17 Mar 2024 08:54:02 UTC

Severity: normal

Tags: patch

Done: Hilton Chain <hako <at> ultrarare.space>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Hilton Chain <hako <at> ultrarare.space>
Cc: tracker <at> debbugs.gnu.org
Subject: bug#69841: closed ([PATCH] linux-modules: Ignore nonexistent
 module files on boot.)
Date: Wed, 27 Mar 2024 14:52:01 +0000
[Message part 1 (text/plain, inline)]
Your message dated Wed, 27 Mar 2024 22:43:12 +0800
with message-id <87jzlnn3b3.wl-hako <at> ultrarare.space>
and subject line Re: bug#69841: Acknowledgement ([PATCH] linux-modules: Ignore nonexistent module files on boot.)
has caused the debbugs.gnu.org bug report #69841,
regarding [PATCH] linux-modules: Ignore nonexistent module files on boot.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)


-- 
69841: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=69841
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Hilton Chain <hako <at> ultrarare.space>
To: guix-patches <at> gnu.org
Cc: Hilton Chain <hako <at> ultrarare.space>
Subject: [PATCH] linux-modules: Ignore nonexistent module files on boot.
Date: Sun, 17 Mar 2024 16:52:06 +0800
This is a follow-up to 8f8ec56052766aa5105d672b77ad9eaca5c1ab3c, which only
covers building initrd, while the booting code still tries to load nonexistent
files for builtin modules.

* gnu/build/linux-modules.scm (load-linux-modules-from-directory): Ignore
nonexistent module files.

Change-Id: I09ef207e82397e915e671c8464b92bcf90f03dcf
---

 gnu/build/linux-modules.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/build/linux-modules.scm b/gnu/build/linux-modules.scm
index 12cb9c4ba6..68c32ff873 100644
--- a/gnu/build/linux-modules.scm
+++ b/gnu/build/linux-modules.scm
@@ -383,9 +383,10 @@ (define (load-linux-modules-from-directory modules directory)
     (module-name-lookup directory))

   (for-each (lambda (module)
-              (load-linux-module* (module-name->file-name module)
-                                  #:lookup-module module-name->file-name))
-            modules))
+              (when (file-exists? module)
+                (load-linux-module* module
+                                    #:lookup-module module-name->file-name)))
+            (map module-name->file-name modules)))

 
 ;;;

base-commit: 5267c6073c3bdc6ba7874fc776c23c928f1ee263
--
2.41.0


[Message part 3 (message/rfc822, inline)]
From: Hilton Chain <hako <at> ultrarare.space>
To: 69841-done <at> debbugs.gnu.org
Cc: Wilko Meyer <w <at> wmeyer.eu>,
 Ludovic Courtès <ludo <at> gnu.org>,
 Tobias Geerinckx-Rice <me <at> tobias.gr>, Leo Famulari <leo <at> famulari.name>
Subject: Re: bug#69841: Acknowledgement ([PATCH] linux-modules: Ignore
 nonexistent module files on boot.)
Date: Wed, 27 Mar 2024 22:43:12 +0800
Applied as 7995816ec4c38e447a2dcbeb33243180709e177d, closing.


This bug report was last modified 1 year and 55 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.