mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git/
synced 2026-04-18 06:33:43 -04:00
tracing/user_events: Track fork/exec/exit for mm lifetime
During tracefs discussions it was decided instead of requiring a mapping within a user-process to track the lifetime of memory descriptors we should hook the appropriate calls. Do this by adding the minimal stubs required for task fork, exec, and exit. Currently this is just a NOP. Future patches will implement these calls fully. Link: https://lkml.kernel.org/r/20230328235219.203-3-beaub@linux.microsoft.com Suggested-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> Signed-off-by: Beau Belgrave <beaub@linux.microsoft.com> Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
This commit is contained in:
committed by
Steven Rostedt (Google)
parent
e5a26a4048
commit
fd593511cd
@@ -11,4 +11,22 @@
|
||||
|
||||
#include <uapi/linux/user_events.h>
|
||||
|
||||
#ifdef CONFIG_USER_EVENTS
|
||||
struct user_event_mm {
|
||||
};
|
||||
#endif
|
||||
|
||||
static inline void user_events_fork(struct task_struct *t,
|
||||
unsigned long clone_flags)
|
||||
{
|
||||
}
|
||||
|
||||
static inline void user_events_execve(struct task_struct *t)
|
||||
{
|
||||
}
|
||||
|
||||
static inline void user_events_exit(struct task_struct *t)
|
||||
{
|
||||
}
|
||||
|
||||
#endif /* _LINUX_USER_EVENTS_H */
|
||||
|
||||
Reference in New Issue
Block a user