Browse Source

[S390] Fix compile error on 31bit without preemption

Commit b8e7a54cd06b0b0174029ef3a7f5a1415a2c28f2 introduced a compile
error if CONFIG_PREEMPT is not set:

arch/s390/kernel/built-in.o: In function `cleanup_io_leave_insn':
/space/kvm/arch/s390/kernel/entry.S:(.text+0xbfce): undefined reference to `preempt_schedule_irq'

This patch hides preempt_schedule_irq if CONFIG_PREEMPT is not set.

Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Christian Borntraeger 17 years ago
parent
commit
ab1809b4ed
1 changed files with 2 additions and 0 deletions
  1. 2 0
      arch/s390/kernel/entry.S

+ 2 - 0
arch/s390/kernel/entry.S

@@ -1079,8 +1079,10 @@ cleanup_io_leave_insn:
 .Lexecve_tail:	.long	execve_tail
 .Lexecve_tail:	.long	execve_tail
 .Ljump_table:	.long	pgm_check_table
 .Ljump_table:	.long	pgm_check_table
 .Lschedule:	.long	schedule
 .Lschedule:	.long	schedule
+#ifdef CONFIG_PREEMPT
 .Lpreempt_schedule_irq:
 .Lpreempt_schedule_irq:
 		.long	preempt_schedule_irq
 		.long	preempt_schedule_irq
+#endif
 .Ltrace:	.long	syscall_trace
 .Ltrace:	.long	syscall_trace
 .Lschedtail:	.long	schedule_tail
 .Lschedtail:	.long	schedule_tail
 .Lsysc_table:	.long	sys_call_table
 .Lsysc_table:	.long	sys_call_table