Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6261d720da40c51af96881ed210fe80f10138a7b
Commit:     6261d720da40c51af96881ed210fe80f10138a7b
Parent:     6321dd60c76b2e12383bc06046288b15397ed3a0
Author:     Andrew Morton <[EMAIL PROTECTED]>
AuthorDate: Tue Mar 6 01:41:58 2007 -0800
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Tue Mar 6 09:30:24 2007 -0800

    [PATCH] fix build with CONFIG_NO_IDLE_HZ=n
    
    arch/i386/kernel/vmi.c: In function 'vmi_safe_halt':
    arch/i386/kernel/vmi.c:262: warning: implicit declaration of function 
'vmi_stop_hz_timer'
    arch/i386/kernel/vmi.c:266: warning: implicit declaration of function 
'vmi_account_time_restart_hz_timer'
    
    Acked-by: Ingo Molnar <[EMAIL PROTECTED]>
    Cc: Thomas Gleixner <[EMAIL PROTECTED]>
    Cc: Zachary Amsden <[EMAIL PROTECTED]>
    Cc: Andi Kleen <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 include/asm-i386/vmi_time.h |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/include/asm-i386/vmi_time.h b/include/asm-i386/vmi_time.h
index 1f971eb..94d0a12 100644
--- a/include/asm-i386/vmi_time.h
+++ b/include/asm-i386/vmi_time.h
@@ -61,6 +61,14 @@ extern void apic_vmi_timer_interrupt(void);
 #ifdef CONFIG_NO_IDLE_HZ
 extern int vmi_stop_hz_timer(void);
 extern void vmi_account_time_restart_hz_timer(void);
+#else
+static inline int vmi_stop_hz_timer(void)
+{
+       return 0;
+}
+static inline void vmi_account_time_restart_hz_timer(void)
+{
+}
 #endif
 
 /*
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to