lkml.org 
[lkml]   [2008]   [May]   [17]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH] Remove "unused variable" warning in arch/x86/xen/setup.c on UP systems.
On UP systems cpu_data is defined as boot_cpu_data, due to which we
get the below error while compiling xen.

CC arch/x86/xen/setup.o
arch/x86/xen/setup.c: In function 'xen_enable_sysenter':
arch/x86/xen/setup.c:74: warning: unused variable 'cpu'

The below patch defines the variable only when SMP is defined.


Signed-off-by : Manish Katiyar <mkatiyar@gmail.com>

diff -Nur a/arch/x86/xen/setup.c b/arch/x86/xen/setup.c
--- a/arch/x86/xen/setup.c 2008-04-26 20:36:15.000000000 +0530
+++ b/arch/x86/xen/setup.c 2008-05-17 09:30:12.000000000 +0530
@@ -71,7 +71,9 @@

void xen_enable_sysenter(void)
{
+#ifdef CONFIG_SMP
int cpu = smp_processor_id();
+#endif
extern void xen_sysenter_target(void);
/* Mask events on entry, even though they get enabled immediately */
static struct callback_register sysenter = {

--
Thanks & Regards,
********************************************
Manish Katiyar ( http://mkatiyar.googlepages.com )
3rd Floor, Fair Winds Block
EGL Software Park
Off Intermediate Ring Road
Bangalore 560071, India
***********************************************

\
 
 \ /
  Last update: 2008-05-17 06:13    [W:0.030 / U:0.284 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site