64ac24e738
Semaphores are no longer performance-critical, so a generic C implementation is better for maintainability, debuggability and extensibility. Thanks to Peter Zijlstra for fixing the lockdep warning. Thanks to Harvey Harrison for pointing out that the unlikely() was unnecessary. Signed-off-by: Matthew Wilcox <willy@linux.intel.com> Acked-by: Ingo Molnar <mingo@elte.hu>
45 lines
899 B
C
45 lines
899 B
C
/*
|
|
* arch/s390/kernel/s390_ksyms.c
|
|
*
|
|
* S390 version
|
|
*/
|
|
#include <linux/highuid.h>
|
|
#include <linux/module.h>
|
|
#include <linux/mm.h>
|
|
#include <linux/smp.h>
|
|
#include <linux/syscalls.h>
|
|
#include <linux/interrupt.h>
|
|
#include <asm/checksum.h>
|
|
#include <asm/cpcmd.h>
|
|
#include <asm/delay.h>
|
|
#include <asm/pgalloc.h>
|
|
#include <asm/setup.h>
|
|
#ifdef CONFIG_IP_MULTICAST
|
|
#include <net/arp.h>
|
|
#endif
|
|
|
|
/*
|
|
* memory management
|
|
*/
|
|
EXPORT_SYMBOL(_oi_bitmap);
|
|
EXPORT_SYMBOL(_ni_bitmap);
|
|
EXPORT_SYMBOL(_zb_findmap);
|
|
EXPORT_SYMBOL(_sb_findmap);
|
|
|
|
/*
|
|
* binfmt_elf loader
|
|
*/
|
|
extern int dump_fpu (struct pt_regs * regs, s390_fp_regs *fpregs);
|
|
EXPORT_SYMBOL(dump_fpu);
|
|
EXPORT_SYMBOL(empty_zero_page);
|
|
|
|
/*
|
|
* misc.
|
|
*/
|
|
EXPORT_SYMBOL(machine_flags);
|
|
EXPORT_SYMBOL(__udelay);
|
|
EXPORT_SYMBOL(kernel_thread);
|
|
EXPORT_SYMBOL(csum_fold);
|
|
EXPORT_SYMBOL(console_mode);
|
|
EXPORT_SYMBOL(console_devno);
|
|
EXPORT_SYMBOL(console_irq);
|