Commit e6770ceb authored by Jeff Dike's avatar Jeff Dike

Merge uml.karaya.com:/home/jdike/linux/2.5/linus-2.5

into uml.karaya.com:/home/jdike/linux/2.5/updates-2.5
parents c9e54010 433553bd
...@@ -128,6 +128,7 @@ source "net/Kconfig" ...@@ -128,6 +128,7 @@ source "net/Kconfig"
source "fs/Kconfig" source "fs/Kconfig"
source "lib/Kconfig"
menu "SCSI support" menu "SCSI support"
......
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
#include "line.h" #include "line.h"
#include "kern.h" #include "kern.h"
#include "user_util.h" #include "user_util.h"
#include "kern_util.h"
#include "os.h" #include "os.h"
#define LINE_BUFSIZE 4096 #define LINE_BUFSIZE 4096
......
...@@ -190,7 +190,7 @@ int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags) ...@@ -190,7 +190,7 @@ int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
current->thread.request.u.thread.proc = fn; current->thread.request.u.thread.proc = fn;
current->thread.request.u.thread.arg = arg; current->thread.request.u.thread.arg = arg;
p = do_fork(CLONE_VM | flags, 0, NULL, 0, NULL); p = do_fork(CLONE_VM | flags, 0, NULL, 0, NULL, NULL);
if(IS_ERR(p)) panic("do_fork failed in kernel_thread"); if(IS_ERR(p)) panic("do_fork failed in kernel_thread");
return(p->pid); return(p->pid);
} }
......
...@@ -125,10 +125,8 @@ extern syscall_handler_t sys_ni_syscall; ...@@ -125,10 +125,8 @@ extern syscall_handler_t sys_ni_syscall;
extern syscall_handler_t sys_adjtimex; extern syscall_handler_t sys_adjtimex;
extern syscall_handler_t sys_mprotect; extern syscall_handler_t sys_mprotect;
extern syscall_handler_t sys_sigprocmask; extern syscall_handler_t sys_sigprocmask;
extern syscall_handler_t sys_create_module;
extern syscall_handler_t sys_init_module; extern syscall_handler_t sys_init_module;
extern syscall_handler_t sys_delete_module; extern syscall_handler_t sys_delete_module;
extern syscall_handler_t sys_get_kernel_syms;
extern syscall_handler_t sys_quotactl; extern syscall_handler_t sys_quotactl;
extern syscall_handler_t sys_getpgid; extern syscall_handler_t sys_getpgid;
extern syscall_handler_t sys_fchdir; extern syscall_handler_t sys_fchdir;
...@@ -162,7 +160,6 @@ extern syscall_handler_t sys_mremap; ...@@ -162,7 +160,6 @@ extern syscall_handler_t sys_mremap;
extern syscall_handler_t sys_setresuid16; extern syscall_handler_t sys_setresuid16;
extern syscall_handler_t sys_getresuid16; extern syscall_handler_t sys_getresuid16;
extern syscall_handler_t sys_ni_syscall; extern syscall_handler_t sys_ni_syscall;
extern syscall_handler_t sys_query_module;
extern syscall_handler_t sys_poll; extern syscall_handler_t sys_poll;
extern syscall_handler_t sys_nfsservctl; extern syscall_handler_t sys_nfsservctl;
extern syscall_handler_t sys_setresgid16; extern syscall_handler_t sys_setresgid16;
...@@ -235,9 +232,10 @@ extern syscall_handler_t sys_epoll_create; ...@@ -235,9 +232,10 @@ extern syscall_handler_t sys_epoll_create;
extern syscall_handler_t sys_epoll_ctl; extern syscall_handler_t sys_epoll_ctl;
extern syscall_handler_t sys_epoll_wait; extern syscall_handler_t sys_epoll_wait;
extern syscall_handler_t sys_remap_file_pages; extern syscall_handler_t sys_remap_file_pages;
extern syscall_handler_t sys_set_tid_address;
#if CONFIG_NFSD #if CONFIG_NFSD
#define NFSSERVCTL sys_nfsserctl #define NFSSERVCTL sys_nfsservctl
#else #else
#define NFSSERVCTL sys_ni_syscall #define NFSSERVCTL sys_ni_syscall
#endif #endif
...@@ -246,7 +244,7 @@ extern syscall_handler_t um_mount; ...@@ -246,7 +244,7 @@ extern syscall_handler_t um_mount;
extern syscall_handler_t um_time; extern syscall_handler_t um_time;
extern syscall_handler_t um_stime; extern syscall_handler_t um_stime;
#define LAST_GENERIC_SYSCALL __NR_remap_file_pages #define LAST_GENERIC_SYSCALL __NR_set_tid_address
#if LAST_GENERIC_SYSCALL > LAST_ARCH_SYSCALL #if LAST_GENERIC_SYSCALL > LAST_ARCH_SYSCALL
#define LAST_SYSCALL LAST_GENERIC_SYSCALL #define LAST_SYSCALL LAST_GENERIC_SYSCALL
...@@ -384,10 +382,10 @@ syscall_handler_t *sys_call_table[] = { ...@@ -384,10 +382,10 @@ syscall_handler_t *sys_call_table[] = {
[ __NR_adjtimex ] = sys_adjtimex, [ __NR_adjtimex ] = sys_adjtimex,
[ __NR_mprotect ] = sys_mprotect, [ __NR_mprotect ] = sys_mprotect,
[ __NR_sigprocmask ] = sys_sigprocmask, [ __NR_sigprocmask ] = sys_sigprocmask,
[ __NR_create_module ] = sys_create_module, [ __NR_create_module ] = sys_ni_syscall,
[ __NR_init_module ] = sys_init_module, [ __NR_init_module ] = sys_init_module,
[ __NR_delete_module ] = sys_delete_module, [ __NR_delete_module ] = sys_delete_module,
[ __NR_get_kernel_syms ] = sys_get_kernel_syms, [ __NR_get_kernel_syms ] = sys_ni_syscall,
[ __NR_quotactl ] = sys_quotactl, [ __NR_quotactl ] = sys_quotactl,
[ __NR_getpgid ] = sys_getpgid, [ __NR_getpgid ] = sys_getpgid,
[ __NR_fchdir ] = sys_fchdir, [ __NR_fchdir ] = sys_fchdir,
...@@ -424,7 +422,7 @@ syscall_handler_t *sys_call_table[] = { ...@@ -424,7 +422,7 @@ syscall_handler_t *sys_call_table[] = {
[ __NR_setresuid ] = sys_setresuid16, [ __NR_setresuid ] = sys_setresuid16,
[ __NR_getresuid ] = sys_getresuid16, [ __NR_getresuid ] = sys_getresuid16,
[ __NR_vm86 ] = sys_ni_syscall, [ __NR_vm86 ] = sys_ni_syscall,
[ __NR_query_module ] = sys_query_module, [ __NR_query_module ] = sys_ni_syscall,
[ __NR_poll ] = sys_poll, [ __NR_poll ] = sys_poll,
[ __NR_nfsservctl ] = NFSSERVCTL, [ __NR_nfsservctl ] = NFSSERVCTL,
[ __NR_setresgid ] = sys_setresgid16, [ __NR_setresgid ] = sys_setresgid16,
...@@ -489,6 +487,7 @@ syscall_handler_t *sys_call_table[] = { ...@@ -489,6 +487,7 @@ syscall_handler_t *sys_call_table[] = {
[ __NR_sys_epoll_ctl ] = sys_epoll_ctl, [ __NR_sys_epoll_ctl ] = sys_epoll_ctl,
[ __NR_sys_epoll_wait ] = sys_epoll_wait, [ __NR_sys_epoll_wait ] = sys_epoll_wait,
[ __NR_remap_file_pages ] = sys_remap_file_pages, [ __NR_remap_file_pages ] = sys_remap_file_pages,
[ __NR_set_tid_address ] = sys_set_tid_address,
ARCH_SYSCALLS ARCH_SYSCALLS
[ LAST_SYSCALL + 1 ... NR_syscalls ] = [ LAST_SYSCALL + 1 ... NR_syscalls ] =
......
...@@ -33,7 +33,7 @@ long sys_fork(void) ...@@ -33,7 +33,7 @@ long sys_fork(void)
struct task_struct *p; struct task_struct *p;
current->thread.forking = 1; current->thread.forking = 1;
p = do_fork(SIGCHLD, 0, NULL, 0, NULL); p = do_fork(SIGCHLD, 0, NULL, 0, NULL, NULL);
current->thread.forking = 0; current->thread.forking = 0;
return(IS_ERR(p) ? PTR_ERR(p) : p->pid); return(IS_ERR(p) ? PTR_ERR(p) : p->pid);
} }
...@@ -43,7 +43,7 @@ long sys_clone(unsigned long clone_flags, unsigned long newsp) ...@@ -43,7 +43,7 @@ long sys_clone(unsigned long clone_flags, unsigned long newsp)
struct task_struct *p; struct task_struct *p;
current->thread.forking = 1; current->thread.forking = 1;
p = do_fork(clone_flags, newsp, NULL, 0, NULL); p = do_fork(clone_flags, newsp, NULL, 0, NULL, NULL);
current->thread.forking = 0; current->thread.forking = 0;
return(IS_ERR(p) ? PTR_ERR(p) : p->pid); return(IS_ERR(p) ? PTR_ERR(p) : p->pid);
} }
...@@ -53,7 +53,7 @@ long sys_vfork(void) ...@@ -53,7 +53,7 @@ long sys_vfork(void)
struct task_struct *p; struct task_struct *p;
current->thread.forking = 1; current->thread.forking = 1;
p = do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, 0, NULL, 0, NULL); p = do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, 0, NULL, 0, NULL, NULL);
current->thread.forking = 0; current->thread.forking = 0;
return(IS_ERR(p) ? PTR_ERR(p) : p->pid); return(IS_ERR(p) ? PTR_ERR(p) : p->pid);
} }
......
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
#ifdef CONFIG_MODULES #ifdef CONFIG_MODULES
extern struct module *module_list; /* FIXME: Accessed without a lock --RR */
extern struct module kernel_module; extern struct list_head modules;
static inline int kernel_text_address(unsigned long addr) static inline int kernel_text_address(unsigned long addr)
{ {
...@@ -31,11 +31,11 @@ static inline int kernel_text_address(unsigned long addr) ...@@ -31,11 +31,11 @@ static inline int kernel_text_address(unsigned long addr)
addr <= (unsigned long) &_etext) addr <= (unsigned long) &_etext)
return 1; return 1;
for (mod = module_list; mod != &kernel_module; mod = mod->next) { list_for_each_entry(mod, &modules, list) {
/* mod_bound tests for addr being inside the vmalloc'ed /* mod_bound tests for addr being inside the vmalloc'ed
* module area. Of course it'd be better to test only * module area. Of course it'd be better to test only
* for the .text subset... */ * for the .text subset... */
if (mod_bound(addr, 0, mod)) { if (mod_bound((void *) addr, 0, mod)) {
retval = 1; retval = 1;
break; break;
} }
......
obj-y = bugs.o checksum.o extable.o fault.o ksyms.o ldt.o \ obj-y = bugs.o checksum.o extable.o fault.o ksyms.o ldt.o module.o \
ptrace.o ptrace_user.o semaphore.o sigcontext.o syscalls.o sysrq.o ptrace.o ptrace_user.o semaphore.o sigcontext.o syscalls.o sysrq.o
obj-$(CONFIG_HIGHMEM) += highmem.o obj-$(CONFIG_HIGHMEM) += highmem.o
...@@ -6,30 +6,28 @@ obj-$(CONFIG_HIGHMEM) += highmem.o ...@@ -6,30 +6,28 @@ obj-$(CONFIG_HIGHMEM) += highmem.o
export-objs = ksyms.o export-objs = ksyms.o
USER_OBJS := bugs.o ptrace_user.o sigcontext.o fault.o USER_OBJS := bugs.o ptrace_user.o sigcontext.o fault.o
USER_OBJS := $(foreach file,$(USER_OBJS),arch/um/sys-i386/$(file)) USER_OBJS := $(foreach file,$(USER_OBJS),$(obj)/$(file))
SYMLINKS = semaphore.c checksum.S extable.c highmem.c SYMLINKS = semaphore.c extable.c highmem.c module.c
include $(TOPDIR)/Rules.make semaphore.c-dir = kernel
extable.c-dir = mm
highmem.c-dir = mm
module.c-dir = kernel
$(USER_OBJS) : %.o: %.c define make_link
$(CC) $(CFLAGS_$@) $(USER_CFLAGS) -c -o $@ $< -rm -f $1
ln -sf $(TOPDIR)/arch/i386/$($(notdir $1)-dir)/$(notdir $1) $1
endef
arch/um/sys-i386/checksum.S: include $(TOPDIR)/Rules.make
-rm -f $@
-ln -s $(TOPDIR)/arch/i386/lib/$(notdir $@) $@
arch/um/sys-i386/semaphore.c: $(USER_OBJS) : %.o: %.c
-rm -f $@ $(CC) $(CFLAGS_$(notdir $@)) $(USER_CFLAGS) -c -o $@ $<
-ln -s $(TOPDIR)/arch/i386/kernel/$(notdir $@) $@
arch/um/sys-i386/extable.c: $(foreach f,$(SYMLINKS),$(src)/$f):
-rm -f $@ $(call make_link,$@)
-ln -s $(TOPDIR)/arch/i386/mm/$(notdir $@) $@
arch/um/sys-i386/highmem.c:
-rm -f $@
-ln -s $(TOPDIR)/arch/i386/mm/$(notdir $@) $@
clean: clean:
$(MAKE) -C util clean $(MAKE) -C util clean
......
...@@ -38,6 +38,7 @@ SECTIONS ...@@ -38,6 +38,7 @@ SECTIONS
__ex_table : { *(__ex_table) } __ex_table : { *(__ex_table) }
__stop___ex_table = .; __stop___ex_table = .;
. = ALIGN(64);
__start___ksymtab = .; /* Kernel symbol table */ __start___ksymtab = .; /* Kernel symbol table */
__ksymtab : { *(__ksymtab) } __ksymtab : { *(__ksymtab) }
__stop___ksymtab = .; __stop___ksymtab = .;
......
...@@ -164,7 +164,7 @@ static inline int clear_user(void *mem, int len) ...@@ -164,7 +164,7 @@ static inline int clear_user(void *mem, int len)
extern int __do_strnlen_user(const char *str, unsigned long n, extern int __do_strnlen_user(const char *str, unsigned long n,
void **fault_addr, void **fault_catcher); void **fault_addr, void **fault_catcher);
static inline int strnlen_user(void *str, int len) static inline int strnlen_user(const void *str, int len)
{ {
return(__do_strnlen_user(str, len, return(__do_strnlen_user(str, len,
&current->thread.fault_addr, &current->thread.fault_addr,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment