Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 105940
b: refs/heads/master
c: 9d5b327
h: refs/heads/master
v: v3
  • Loading branch information
Oleg Nesterov authored and Linus Torvalds committed Jul 25, 2008
1 parent c2ea9cc commit 0da92e8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c5f1cc8c1828486a61ab3e575da6e2c62b34d399
refs/heads/master: 9d5b327bf198d2720666de958dcc2ae219d86952
14 changes: 7 additions & 7 deletions trunk/fs/exec.c
Original file line number Diff line number Diff line change
Expand Up @@ -1595,17 +1595,16 @@ static inline int zap_threads(struct task_struct *tsk, struct mm_struct *mm,
return nr;
}

static int coredump_wait(int exit_code)
static int coredump_wait(int exit_code, struct core_state *core_state)
{
struct task_struct *tsk = current;
struct mm_struct *mm = tsk->mm;
struct core_state core_state;
struct completion *vfork_done;
int core_waiters;

init_completion(&mm->core_done);
init_completion(&core_state.startup);
core_waiters = zap_threads(tsk, mm, &core_state, exit_code);
init_completion(&core_state->startup);
core_waiters = zap_threads(tsk, mm, core_state, exit_code);
up_write(&mm->mmap_sem);

if (unlikely(core_waiters < 0))
Expand All @@ -1622,8 +1621,7 @@ static int coredump_wait(int exit_code)
}

if (core_waiters)
wait_for_completion(&core_state.startup);
mm->core_state = NULL;
wait_for_completion(&core_state->startup);
fail:
return core_waiters;
}
Expand Down Expand Up @@ -1679,6 +1677,7 @@ int get_dumpable(struct mm_struct *mm)

int do_coredump(long signr, int exit_code, struct pt_regs * regs)
{
struct core_state core_state;
char corename[CORENAME_MAX_SIZE + 1];
struct mm_struct *mm = current->mm;
struct linux_binfmt * binfmt;
Expand Down Expand Up @@ -1717,7 +1716,7 @@ int do_coredump(long signr, int exit_code, struct pt_regs * regs)
current->fsuid = 0; /* Dump root private */
}

retval = coredump_wait(exit_code);
retval = coredump_wait(exit_code, &core_state);
if (retval < 0)
goto fail;

Expand Down Expand Up @@ -1812,6 +1811,7 @@ int do_coredump(long signr, int exit_code, struct pt_regs * regs)

current->fsuid = fsuid;
complete_all(&mm->core_done);
mm->core_state = NULL;
fail:
return retval;
}

0 comments on commit 0da92e8

Please sign in to comment.