public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] no need to align .modinfo strings
@ 2010-09-02 12:24 Jan Beulich
  2010-09-06  8:19 ` Rusty Russell
  0 siblings, 1 reply; 3+ messages in thread
From: Jan Beulich @ 2010-09-02 12:24 UTC (permalink / raw)
  To: rusty; +Cc: Michal Marek, linux-kernel

Their use is not performance critical, and hence it seems better to
save some space.

Signed-off-by: Jan Beulich <jbeulich@novell.com>

---
 include/linux/moduleparam.h |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--- linux-2.6.36-rc3/include/linux/moduleparam.h
+++ 2.6.36-rc3-modinfo-align/include/linux/moduleparam.h
@@ -21,8 +21,8 @@
 #define __module_cat(a,b) ___module_cat(a,b)
 #define __MODULE_INFO(tag, name, info)					  \
 static const char __module_cat(name,__LINE__)[]				  \
-  __used								  \
-  __attribute__((section(".modinfo"),unused)) = __stringify(tag) "=" info
+  __used __attribute__((section(".modinfo"), unused, aligned(1)))	  \
+  = __stringify(tag) "=" info
 #else  /* !MODULE */
 #define __MODULE_INFO(tag, name, info)
 #endif




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

end of thread, other threads:[~2010-09-06  8:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-02 12:24 [PATCH] no need to align .modinfo strings Jan Beulich
2010-09-06  8:19 ` Rusty Russell
2010-09-06  8:34   ` Jan Beulich

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