]> nv-tegra.nvidia Code Review - linux-2.6.git/blobdiff - arch/um/os-Linux/tt.c
uml: remove page_size()
[linux-2.6.git] / arch / um / os-Linux / tt.c
index 00e14f446f16417237f83ad541863f7ae91c7ed5..bcf9359c4e9f4cf87f89bfbea66d62768d70beda 100644 (file)
@@ -31,6 +31,7 @@
 #include "choose-mode.h"
 #include "mode.h"
 #include "tempfile.h"
+#include "kern_constants.h"
 
 int protect_memory(unsigned long addr, unsigned long len, int r, int w, int x,
                   int must_succeed)
@@ -142,7 +143,7 @@ int outer_tramp(void *arg)
        int sig = sigkill;
 
        t = arg;
-       t->pid = clone(t->tramp, (void *) t->temp_stack + page_size()/2,
+       t->pid = clone(t->tramp, (void *) t->temp_stack + UM_KERN_PAGE_SIZE/2,
                       t->flags, t->tramp_data);
        if(t->pid > 0) wait_for_stop(t->pid, SIGSTOP, PTRACE_CONT, NULL);
        kill(os_getpid(), sig);