summaryrefslogtreecommitdiffstats
path: root/fs/exec.c
diff options
context:
space:
mode:
authorWANG Cong2009-01-06 23:42:48 +0100
committerLinus Torvalds2009-01-07 00:59:29 +0100
commit8cd3ac3aca3f2afe8570708066d64d893da468e8 (patch)
treeff8d828f3da57880e5d679f32485b5d77d5d3679 /fs/exec.c
parentcoredump_filter: permit changing of the default filter (diff)
downloadkernel-qcow2-linux-8cd3ac3aca3f2afe8570708066d64d893da468e8.tar.gz
kernel-qcow2-linux-8cd3ac3aca3f2afe8570708066d64d893da468e8.tar.xz
kernel-qcow2-linux-8cd3ac3aca3f2afe8570708066d64d893da468e8.zip
fs/exec.c: make do_coredump() void
No one cares do_coredump()'s return value, and also it seems that it is also not necessary. So make it void. [akpm@linux-foundation.org: coding-style fixes] Signed-off-by: WANG Cong <wangcong@zeuux.org> Cc: Alexander Viro <viro@zeniv.linux.org.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/exec.c')
-rw-r--r--fs/exec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/exec.c b/fs/exec.c
index 6b09d6fa4f7e..71a6efe5d8bd 100644
--- a/fs/exec.c
+++ b/fs/exec.c
@@ -1686,7 +1686,7 @@ int get_dumpable(struct mm_struct *mm)
return (ret >= 2) ? 2 : ret;
}
-int do_coredump(long signr, int exit_code, struct pt_regs * regs)
+void do_coredump(long signr, int exit_code, struct pt_regs *regs)
{
struct core_state core_state;
char corename[CORENAME_MAX_SIZE + 1];
@@ -1842,5 +1842,5 @@ fail_unlock:
put_cred(cred);
coredump_finish(mm);
fail:
- return retval;
+ return;
}