summaryrefslogtreecommitdiff
path: root/kernel/fork.c
diff options
context:
space:
mode:
authorAndy Grover <agrover@groveronline.com>2003-02-04 19:22:39 -0800
committerAndy Grover <agrover@groveronline.com>2003-02-04 19:22:39 -0800
commit263cc27fa141984aed0e6de7474fc813449d02a3 (patch)
treeb22302cd0039b993cfba9adf39e33280912a8d9f /kernel/fork.c
parenta9b3ee51be65cde06e65cb2915adb89751511623 (diff)
parentcf5ba9c8989c8451afd1364e46168c180efee124 (diff)
Merge groveronline.com:/root/bk/linux-2.5
into groveronline.com:/root/bk/linux-acpi
Diffstat (limited to 'kernel/fork.c')
-rw-r--r--kernel/fork.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/fork.c b/kernel/fork.c
index 0ba9e64b5821..4fc3fcd5dacb 100644
--- a/kernel/fork.c
+++ b/kernel/fork.c
@@ -26,6 +26,7 @@
#include <linux/mman.h>
#include <linux/fs.h>
#include <linux/security.h>
+#include <linux/jiffies.h>
#include <linux/futex.h>
#include <linux/ptrace.h>
#include <linux/mount.h>
@@ -814,7 +815,7 @@ static struct task_struct *copy_process(unsigned long clone_flags,
p->cutime = p->cstime = 0;
p->array = NULL;
p->lock_depth = -1; /* -1 = no lock */
- p->start_time = jiffies;
+ p->start_time = get_jiffies_64();
p->security = NULL;
retval = -ENOMEM;