-
Notifications
You must be signed in to change notification settings - Fork 417
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix(events): don't remove fork excess args #4167
Fix(events): don't remove fork excess args #4167
Conversation
@yanivagman , if I understood correctly from this comment (09f4685#r1660126189), the ideia is to replace the following to Lines 11175 to 11179 in 3cab205
But this way won't be confused with: Lines 11162 to 11166 in 3cab205
If it's the case, should we try something different like |
I agree that it is confusing. |
Stop removing arguments from the `sched_process_fork` event. This is removing an edge case making it easier to use the event. It also makes it easier to reproducing the process tree. The real parent process variable name 'up_parent_xxx' has been renamed to 'parent_process_xxx'. Co-authored-by: Alon Zivony <alon.zivony@aquasec.com>
3cab205
to
05ffffb
Compare
Think we can use |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Part of #3520
1. Explain what the PR does
05ffffb Fix(events): don't remove fork excess args
2. Explain how to test it
3. Other comments
Credits to @AlonZivony, who did the work.