public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* [patch] move machvec_noop from inline to c file
@ 2006-03-12 18:23 Chen, Kenneth W
  0 siblings, 0 replies; only message in thread
From: Chen, Kenneth W @ 2006-03-12 18:23 UTC (permalink / raw)
  To: linux-ia64

There are 9 copy of these thing when compile with CONFIG_IA64_GENERIC
because it is declared as inline function but called through function
pointer.  gcc makes 9 copy of these empty function around.  Move it
into machvec.c file.


Signed-off-by: Ken Chen <kenneth.w.chen@intel.com>

--- ./arch/ia64/kernel/machvec.c.orig	2006-01-02 19:21:10.000000000 -0800
+++ ./arch/ia64/kernel/machvec.c	2006-03-12 10:54:23.311711322 -0800
@@ -41,6 +41,13 @@ machvec_init (const char *name)
 	printk(KERN_INFO "booting generic kernel on platform %s\n", name);
 }
 
+void machvec_noop (void)
+{
+}
+
+void machvec_noop_mm (struct mm_struct *mm)
+{
+}
 #endif /* CONFIG_IA64_GENERIC */
 
 void
--- ./include/asm-ia64/machvec.h.orig	2006-01-02 19:21:10.000000000 -0800
+++ ./include/asm-ia64/machvec.h	2006-03-12 11:07:24.618342376 -0800
@@ -75,6 +75,10 @@ typedef unsigned short ia64_mv_readw_rel
 typedef unsigned int ia64_mv_readl_relaxed_t (const volatile void __iomem *);
 typedef unsigned long ia64_mv_readq_relaxed_t (const volatile void __iomem *);
 
+#if defined (CONFIG_IA64_GENERIC)
+extern void machvec_noop (void);
+extern void machvec_noop_mm (struct mm_struct *mm);
+#else
 static inline void
 machvec_noop (void)
 {
@@ -84,6 +88,7 @@ static inline void
 machvec_noop_mm (struct mm_struct *mm)
 {
 }
+#endif
 
 extern void machvec_setup (char **);
 extern void machvec_timer_interrupt (int, void *, struct pt_regs *);


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2006-03-12 18:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-03-12 18:23 [patch] move machvec_noop from inline to c file Chen, Kenneth W

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