···244244 * tracehook_finish_clone - new child created and being attached245245 * @child: new child task246246 * @clone_flags: %CLONE_* flags from clone/fork/vfork system call247247- * @trace: return value from tracehook_clone_prepare()247247+ * @trace: return value from tracehook_prepare_clone()248248 *249249 * This is called immediately after adding @child to its parent's children list.250250 * The @trace value is that returned by tracehook_prepare_clone().···259259260260/**261261 * tracehook_report_clone - in parent, new child is about to start running262262- * @trace: return value from tracehook_clone_prepare()262262+ * @trace: return value from tracehook_prepare_clone()263263 * @regs: parent's user register state264264 * @clone_flags: flags from parent's system call265265 * @pid: new child's PID in the parent's namespace266266 * @child: new child task267267 *268268- * Called after a child is set up, but before it has been started running.269269- * The @trace value is that returned by tracehook_clone_prepare().270270- * This is not a good place to block, because the child has not started yet.271271- * Suspend the child here if desired, and block in tracehook_clone_complete().272272- * This must prevent the child from self-reaping if tracehook_clone_complete()273273- * uses the @child pointer; otherwise it might have died and been released by274274- * the time tracehook_report_clone_complete() is called.268268+ * Called after a child is set up, but before it has been started269269+ * running. @trace is the value returned by tracehook_prepare_clone().270270+ * This is not a good place to block, because the child has not started271271+ * yet. Suspend the child here if desired, and then block in272272+ * tracehook_report_clone_complete(). This must prevent the child from273273+ * self-reaping if tracehook_report_clone_complete() uses the @child274274+ * pointer; otherwise it might have died and been released by the time275275+ * tracehook_report_report_clone_complete() is called.275276 *276277 * Called with no locks held, but the child cannot run until this returns.277278 */···291290292291/**293292 * tracehook_report_clone_complete - new child is running294294- * @trace: return value from tracehook_clone_prepare()293293+ * @trace: return value from tracehook_prepare_clone()295294 * @regs: parent's user register state296295 * @clone_flags: flags from parent's system call297296 * @pid: new child's PID in the parent's namespace···348347}349348350349/**351351- * tracehook_finish_release_task - task is being reaped, clean up tracing350350+ * tracehook_finish_release_task - final tracing clean-up352351 * @task: task in %EXIT_DEAD state353352 *354353 * This is called in release_task() when @task is being in the middle of