linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] iucv: Fix compilation with !CONFIG_SMP
@ 2008-02-29 22:30 Josef 'Jeff' Sipek
  0 siblings, 0 replies; only message in thread
From: Josef 'Jeff' Sipek @ 2008-02-29 22:30 UTC (permalink / raw)
  To: linux-s390, linux-kernel; +Cc: Josef 'Jeff' Sipek, ubraun, blaschka

CC [M]  net/iucv/iucv.o
net/iucv/iucv.c: In function `iucv_cleanup_queue':
net/iucv/iucv.c:657: error: `__iucv_cleanup_queue' undeclared (first use in this function)

With !CONFIG_SMP the smp_call_function call turns into up_smp_call_function
call which is just a return 0. Unfortunately, since up_smp_call_function is
a static inline, the __iucv_cleanup_queue symbol is referenced.

Cc: ubraun@linux.vnet.ibm.com
Cc: blaschka@linux.vnet.ibm.com
Signed-off-by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
---
 net/iucv/iucv.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/net/iucv/iucv.c b/net/iucv/iucv.c
index 2753b0c..d764f4c 100644
--- a/net/iucv/iucv.c
+++ b/net/iucv/iucv.c
@@ -621,7 +621,6 @@ static int iucv_sever_pathid(u16 pathid, u8 userdata[16])
 	return iucv_call_b2f0(IUCV_SEVER, parm);
 }
 
-#ifdef CONFIG_SMP
 /**
  * __iucv_cleanup_queue
  * @dummy: unused dummy argument
@@ -632,7 +631,6 @@ static int iucv_sever_pathid(u16 pathid, u8 userdata[16])
 static void __iucv_cleanup_queue(void *dummy)
 {
 }
-#endif
 
 /**
  * iucv_cleanup_queue
-- 
1.5.4.2

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

only message in thread, other threads:[~2008-03-01 23:10 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-02-29 22:30 [PATCH 1/1] iucv: Fix compilation with !CONFIG_SMP Josef 'Jeff' Sipek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).