https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=274198
Bug ID: 274198
Summary: ktrace: logs only one arg for symlink() call
Product: Base System
Version: 13.2-STABLE
Hardware: Any
OS: Any
Status: New
Severity: Affects Some People
Priority: ---
Component: kern
Assignee: [email protected]
Reporter: [email protected]
ktrace -d -i -t cnu ln -s /root /tmp/
kdump
...
48835 ln CALL symlink(0x7fffffffec46,0x7fffffffdc60)
48835 ln NAMI "/tmp//root"
48835 ln RET symlink 0
48835 ln CALL exit(0)
I do expect to see:
...
48835 ln CALL symlink(0x7fffffffec46,0x7fffffffdc60)
48835 ln NAMI "/root"
48835 ln NAMI "/tmp//root"
48835 ln RET symlink 0
48835 ln CALL exit(0)
--
You are receiving this mail because:
You are the assignee for the bug.