sched/headers: Prepare for new header dependencies before moving code to <linux/sched...
[platform/kernel/linux-rpi.git] / kernel / seccomp.c
index f8f88eb..e15185c 100644 (file)
@@ -643,11 +643,14 @@ static int __seccomp_filter(int this_syscall, const struct seccomp_data *sd,
        default: {
                siginfo_t info;
                audit_seccomp(this_syscall, SIGSYS, action);
-               /* Show the original registers in the dump. */
-               syscall_rollback(current, task_pt_regs(current));
-               /* Trigger a manual coredump since do_exit skips it. */
-               seccomp_init_siginfo(&info, this_syscall, data);
-               do_coredump(&info);
+               /* Dump core only if this is the last remaining thread. */
+               if (get_nr_threads(current) == 1) {
+                       /* Show the original registers in the dump. */
+                       syscall_rollback(current, task_pt_regs(current));
+                       /* Trigger a manual coredump since do_exit skips it. */
+                       seccomp_init_siginfo(&info, this_syscall, data);
+                       do_coredump(&info);
+               }
                do_exit(SIGSYS);
        }
        }