diff options
Diffstat (limited to 'kernel/fork.c')
-rw-r--r-- | kernel/fork.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/kernel/fork.c b/kernel/fork.c index acc4cb62f32f..79de9f99a48d 100644 --- a/kernel/fork.c +++ b/kernel/fork.c | |||
@@ -352,6 +352,7 @@ static int dup_mmap(struct mm_struct *mm, struct mm_struct *oldmm) | |||
352 | unsigned long charge; | 352 | unsigned long charge; |
353 | struct mempolicy *pol; | 353 | struct mempolicy *pol; |
354 | 354 | ||
355 | uprobe_start_dup_mmap(); | ||
355 | down_write(&oldmm->mmap_sem); | 356 | down_write(&oldmm->mmap_sem); |
356 | flush_cache_dup_mm(oldmm); | 357 | flush_cache_dup_mm(oldmm); |
357 | uprobe_dup_mmap(oldmm, mm); | 358 | uprobe_dup_mmap(oldmm, mm); |
@@ -469,6 +470,7 @@ out: | |||
469 | up_write(&mm->mmap_sem); | 470 | up_write(&mm->mmap_sem); |
470 | flush_tlb_mm(oldmm); | 471 | flush_tlb_mm(oldmm); |
471 | up_write(&oldmm->mmap_sem); | 472 | up_write(&oldmm->mmap_sem); |
473 | uprobe_end_dup_mmap(); | ||
472 | return retval; | 474 | return retval; |
473 | fail_nomem_anon_vma_fork: | 475 | fail_nomem_anon_vma_fork: |
474 | mpol_put(pol); | 476 | mpol_put(pol); |
@@ -1221,7 +1223,7 @@ static struct task_struct *copy_process(unsigned long clone_flags, | |||
1221 | p->utime = p->stime = p->gtime = 0; | 1223 | p->utime = p->stime = p->gtime = 0; |
1222 | p->utimescaled = p->stimescaled = 0; | 1224 | p->utimescaled = p->stimescaled = 0; |
1223 | #ifndef CONFIG_VIRT_CPU_ACCOUNTING | 1225 | #ifndef CONFIG_VIRT_CPU_ACCOUNTING |
1224 | p->prev_utime = p->prev_stime = 0; | 1226 | p->prev_cputime.utime = p->prev_cputime.stime = 0; |
1225 | #endif | 1227 | #endif |
1226 | #if defined(SPLIT_RSS_COUNTING) | 1228 | #if defined(SPLIT_RSS_COUNTING) |
1227 | memset(&p->rss_stat, 0, sizeof(p->rss_stat)); | 1229 | memset(&p->rss_stat, 0, sizeof(p->rss_stat)); |