public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH] Shut up about the damn modules already...
@ 2004-02-13 17:38 Samium Gromoff
  2004-02-13 19:41 ` Russell King
  0 siblings, 1 reply; 7+ messages in thread
From: Samium Gromoff @ 2004-02-13 17:38 UTC (permalink / raw)
  To: ml; +Cc: linux-kernel

> Rusty Russell wrote:                                                                   
>                                                                                         
>  > Please apply before 2.6.3.                                                           
>  >                                                                                      
>  > In almost all distributions, the kernel asks for modules which don't                 
>  > exist, such as "net-pf-10" or whatever.  Changing "modprobe -q" to                   
>  > "succeed" in this case is hacky and breaks some setups, and also we                  
>  > want to know if it failed for the fallback code for old aliases in                   
>  > fs/char_dev.c, for example.                                                          
>  >                                                                                      
>  > Just remove the debugging message which fill people's logs:                          
>                                                                                         
>  Yup, those messages are really annoying.                                               
>                                                                                         
>  I'm wondering why it is that the kernel is asking for non-existing                     
>  modules so often. Is it that userspace applications try to access all                  
>  kinds of devices too often (autoprobing) or it this (wanted) kernel                    
>  behaviour?                                                                             
>                                                                                         
>  If it is the former, I think that applications should be fixed in the                  
>  first place. Maybe userspace and kernel should share knowledge about                   
>  what devices are there and supported by the kernel(modules).                           
>                                                                                         
>  In the meantime, your patch needs to go in though because fixing this in               
>  userspace is not something that will happen on short term.                             
Wouldn`t this remove the last reason to fix the broken software?

>  Regards,            
> 
>  Bas.                                                                  

regards, Samium Gromoff



^ permalink raw reply	[flat|nested] 7+ messages in thread
* [PATCH] Shut up about the damn modules already...
@ 2004-02-12  3:13 Rusty Russell
  2004-02-12 15:13 ` Rik van Riel
  2004-02-13 16:51 ` Bas Mevissen
  0 siblings, 2 replies; 7+ messages in thread
From: Rusty Russell @ 2004-02-12  3:13 UTC (permalink / raw)
  To: torvalds, akpm; +Cc: linux-kernel

Please apply before 2.6.3.

In almost all distributions, the kernel asks for modules which don't
exist, such as "net-pf-10" or whatever.  Changing "modprobe -q" to
"succeed" in this case is hacky and breaks some setups, and also we
want to know if it failed for the fallback code for old aliases in
fs/char_dev.c, for example.

Just remove the debugging message which fill people's logs: the
correct way of debugging module problems is something like this:

echo '#! /bin/sh' > /tmp/modprobe
echo 'echo "$@" >> /tmp/modprobe.log' >> /tmp/modprobe
echo 'exec /sbin/modprobe "$@"' >> /tmp/modprobe
chmod a+x /tmp/modprobe
echo /tmp/modprobe > /proc/sys/kernel/modprobe

Thanks!
Rusty.

diff -urpN --exclude TAGS -X /home/rusty/devel/kernel/kernel-patches/current-dontdiff --minimal linux-2.6.3-rc2-bk1/kernel/kmod.c tmp/kernel/kmod.c
--- linux-2.6.3-rc2-bk1/kernel/kmod.c	2004-01-10 13:59:39.000000000 +1100
+++ tmp/kernel/kmod.c	2004-02-12 14:07:33.000000000 +1100
@@ -105,16 +105,6 @@ int request_module(const char *fmt, ...)
 	}
 
 	ret = call_usermodehelper(modprobe_path, argv, envp, 1);
-	if (ret != 0) {
-		static unsigned long last;
-		unsigned long now = jiffies;
-		if (now - last > HZ) {
-			last = now;
-			printk(KERN_DEBUG
-			       "request_module: failed %s -- %s. error = %d\n",
-			       modprobe_path, module_name, ret);
-		}
-	}
 	atomic_dec(&kmod_concurrent);
 	return ret;
 }

--
  Anyone who quotes me in their sig is an idiot. -- Rusty Russell.

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

end of thread, other threads:[~2004-02-13 19:41 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-02-13 17:38 [PATCH] Shut up about the damn modules already Samium Gromoff
2004-02-13 19:41 ` Russell King
  -- strict thread matches above, loose matches on Subject: below --
2004-02-12  3:13 Rusty Russell
2004-02-12 15:13 ` Rik van Riel
2004-02-13 16:51 ` Bas Mevissen
2004-02-13 18:55   ` Chris Wright
2004-02-13 19:38   ` Russell King

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox