diff --git a/kernel/fork.c b/kernel/fork.c index 23bf757ed3211c95dcecee505e5cd0c3825e6416..b7d7a9f0bd7ad243cac307fa33a5cc5b40bcefeb 100644 --- a/kernel/fork.c +++ b/kernel/fork.c @@ -1412,6 +1412,12 @@ long do_fork(unsigned long clone_flags, if (clone_flags & CLONE_VFORK) { p->vfork_done = &vfork; init_completion(&vfork); + } else { + /* + * vfork will do an exec which will call + * set_task_comm() + */ + perf_counter_comm(p); } audit_finish_fork(p);