mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
5fd861b682
s390 has fast read access to realtime clock (nanosecond resolution). So it makes sense to have an arch-specific implementation not only of __delay, but __udelay also. Signed-off-by: Bodo Stroesser <bstroesser@fujitsu-siemens.com> Signed-off-by: Jeff Dike <jdike@addtoit.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
135 lines
3.4 KiB
C
135 lines
3.4 KiB
C
/*
|
|
* Copyright (C) 2001 - 2004 Jeff Dike (jdike@addtoit.com)
|
|
* Licensed under the GPL
|
|
*/
|
|
|
|
#include "linux/config.h"
|
|
#include "linux/module.h"
|
|
#include "linux/string.h"
|
|
#include "linux/smp_lock.h"
|
|
#include "linux/spinlock.h"
|
|
#include "linux/highmem.h"
|
|
#include "asm/current.h"
|
|
#include "asm/processor.h"
|
|
#include "asm/unistd.h"
|
|
#include "asm/pgalloc.h"
|
|
#include "asm/pgtable.h"
|
|
#include "asm/page.h"
|
|
#include "asm/tlbflush.h"
|
|
#include "kern_util.h"
|
|
#include "user_util.h"
|
|
#include "mem_user.h"
|
|
#include "os.h"
|
|
#include "helper.h"
|
|
|
|
EXPORT_SYMBOL(stop);
|
|
EXPORT_SYMBOL(uml_physmem);
|
|
EXPORT_SYMBOL(set_signals);
|
|
EXPORT_SYMBOL(get_signals);
|
|
EXPORT_SYMBOL(kernel_thread);
|
|
EXPORT_SYMBOL(sys_waitpid);
|
|
EXPORT_SYMBOL(task_size);
|
|
EXPORT_SYMBOL(flush_tlb_range);
|
|
EXPORT_SYMBOL(host_task_size);
|
|
EXPORT_SYMBOL(arch_validate);
|
|
EXPORT_SYMBOL(get_kmem_end);
|
|
|
|
EXPORT_SYMBOL(page_to_phys);
|
|
EXPORT_SYMBOL(phys_to_page);
|
|
EXPORT_SYMBOL(high_physmem);
|
|
EXPORT_SYMBOL(empty_zero_page);
|
|
EXPORT_SYMBOL(um_virt_to_phys);
|
|
EXPORT_SYMBOL(__virt_to_page);
|
|
EXPORT_SYMBOL(to_phys);
|
|
EXPORT_SYMBOL(to_virt);
|
|
EXPORT_SYMBOL(mode_tt);
|
|
EXPORT_SYMBOL(handle_page_fault);
|
|
EXPORT_SYMBOL(find_iomem);
|
|
EXPORT_SYMBOL(end_iomem);
|
|
|
|
#ifdef CONFIG_MODE_TT
|
|
EXPORT_SYMBOL(strncpy_from_user_tt);
|
|
EXPORT_SYMBOL(copy_from_user_tt);
|
|
EXPORT_SYMBOL(copy_to_user_tt);
|
|
#endif
|
|
|
|
#ifdef CONFIG_MODE_SKAS
|
|
EXPORT_SYMBOL(strncpy_from_user_skas);
|
|
EXPORT_SYMBOL(copy_to_user_skas);
|
|
EXPORT_SYMBOL(copy_from_user_skas);
|
|
#endif
|
|
EXPORT_SYMBOL(uml_strdup);
|
|
|
|
EXPORT_SYMBOL(os_stat_fd);
|
|
EXPORT_SYMBOL(os_stat_file);
|
|
EXPORT_SYMBOL(os_access);
|
|
EXPORT_SYMBOL(os_print_error);
|
|
EXPORT_SYMBOL(os_get_exec_close);
|
|
EXPORT_SYMBOL(os_set_exec_close);
|
|
EXPORT_SYMBOL(os_getpid);
|
|
EXPORT_SYMBOL(os_open_file);
|
|
EXPORT_SYMBOL(os_read_file);
|
|
EXPORT_SYMBOL(os_write_file);
|
|
EXPORT_SYMBOL(os_seek_file);
|
|
EXPORT_SYMBOL(os_lock_file);
|
|
EXPORT_SYMBOL(os_ioctl_generic);
|
|
EXPORT_SYMBOL(os_pipe);
|
|
EXPORT_SYMBOL(os_file_type);
|
|
EXPORT_SYMBOL(os_file_mode);
|
|
EXPORT_SYMBOL(os_file_size);
|
|
EXPORT_SYMBOL(os_flush_stdout);
|
|
EXPORT_SYMBOL(os_close_file);
|
|
EXPORT_SYMBOL(os_set_fd_async);
|
|
EXPORT_SYMBOL(os_set_fd_block);
|
|
EXPORT_SYMBOL(helper_wait);
|
|
EXPORT_SYMBOL(os_shutdown_socket);
|
|
EXPORT_SYMBOL(os_create_unix_socket);
|
|
EXPORT_SYMBOL(os_connect_socket);
|
|
EXPORT_SYMBOL(os_accept_connection);
|
|
EXPORT_SYMBOL(os_rcv_fd);
|
|
EXPORT_SYMBOL(run_helper);
|
|
EXPORT_SYMBOL(start_thread);
|
|
EXPORT_SYMBOL(dump_thread);
|
|
|
|
EXPORT_SYMBOL(do_gettimeofday);
|
|
EXPORT_SYMBOL(do_settimeofday);
|
|
|
|
/* This is here because UML expands open to sys_open, not to a system
|
|
* call instruction.
|
|
*/
|
|
EXPORT_SYMBOL(sys_open);
|
|
EXPORT_SYMBOL(sys_lseek);
|
|
EXPORT_SYMBOL(sys_read);
|
|
EXPORT_SYMBOL(sys_wait4);
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
/* required for SMP */
|
|
|
|
extern void FASTCALL( __write_lock_failed(rwlock_t *rw));
|
|
EXPORT_SYMBOL(__write_lock_failed);
|
|
|
|
extern void FASTCALL( __read_lock_failed(rwlock_t *rw));
|
|
EXPORT_SYMBOL(__read_lock_failed);
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_HIGHMEM
|
|
EXPORT_SYMBOL(kmap);
|
|
EXPORT_SYMBOL(kunmap);
|
|
EXPORT_SYMBOL(kmap_atomic);
|
|
EXPORT_SYMBOL(kunmap_atomic);
|
|
EXPORT_SYMBOL(kmap_atomic_to_page);
|
|
#endif
|
|
|
|
/*
|
|
* Overrides for Emacs so that we follow Linus's tabbing style.
|
|
* Emacs will notice this stuff at the end of the file and automatically
|
|
* adjust the settings for this buffer only. This must remain at the end
|
|
* of the file.
|
|
* ---------------------------------------------------------------------------
|
|
* Local variables:
|
|
* c-file-style: "linux"
|
|
* End:
|
|
*/
|