public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [2.6 patch] MODULE_PARM_: remove the __deprecated
@ 2004-11-22 15:56 Adrian Bunk
  2004-11-22 20:18 ` Rusty Russell
  2004-11-23  5:43 ` Lee Revell
  0 siblings, 2 replies; 5+ messages in thread
From: Adrian Bunk @ 2004-11-22 15:56 UTC (permalink / raw)
  To: rusty, Andrew Morton; +Cc: linux-kernel

Hi Rusty,

I know you will not like this patch, but I consider it important since 
the current beghavior is pretty annoying.

When making patches here and there, I'm touching many different places 
in the kernel. One of the advantages of the 2.6 build system is that 
warnings are very visible - and often a new compile warning indicates 
that something with the patch is wrong.

MODULE_PARM_ might be deprecated.
But there are still over 2000 places in the kernel where it's used.
I consider it _very_ annoying if after changing the kernel, the whole 
screen is swamped with warnings that MODULE_PARM_ is deprecated as it 
still happens in several subsystems. That's quite annoying if you want 
to check whether changing a common header file has any negative effects.

This is not generally against using __deprecated, but currently 
MODULE_PARM_ generates so many warnings that it's really no fun.


Signed-off-by: Adrian Bunk <bunk@stusta.de>

--- linux-2.6.10-rc2-mm3-modular/include/linux/module.h.old	2004-11-22 15:51:17.000000000 +0100
+++ linux-2.6.10-rc2-mm3-modular/include/linux/module.h	2004-11-22 15:53:29.000000000 +0100
@@ -559,7 +559,7 @@
 	void *addr;
 };
 
-static inline void __deprecated MODULE_PARM_(void) { }
+static inline void MODULE_PARM_(void) { }
 #ifdef MODULE
 /* DEPRECATED: Do not use. */
 #define MODULE_PARM(var,type)						    \


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

end of thread, other threads:[~2004-11-23 20:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-11-22 15:56 [2.6 patch] MODULE_PARM_: remove the __deprecated Adrian Bunk
2004-11-22 20:18 ` Rusty Russell
2004-11-23  5:43 ` Lee Revell
2004-11-23 10:44   ` Jim Nelson
2004-11-23 20:03     ` Lee Revell

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