[Bug 274198] ktrace: logs only one arg for symlink() call

From: <bugzilla-noreply_at_freebsd.org>
Date: Sun, 01 Oct 2023 16:08:27 UTC
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: bugs@FreeBSD.org
          Reporter: rozhuk.im@gmail.com

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.