https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=274274
Bug ID: 274274
Summary: nmount logs to_path twice via ktrace()
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]
Also order is wrong.
...
6130 mount_nullfs CALL nmount(0x80181f000,0x12,0<><invalid>0)
6130 mount_nullfs NAMI
"/tmp/fbsd-12ce57e-b34e658-51d1890/rootfs/var/cache/ccache"
6130 mount_nullfs NAMI
"/tmp/fbsd-12ce57e-b34e658-51d1890/rootfs/var/cache/ccache"
6130 mount_nullfs NAMI "/var/cache/ccache"
6130 mount_nullfs RET nmount 0
...
It should be:
...
6130 mount_nullfs CALL nmount(0x80181f000,0x12,0<><invalid>0)
6130 mount_nullfs NAMI "/var/cache/ccache"
6130 mount_nullfs NAMI
"/tmp/fbsd-12ce57e-b34e658-51d1890/rootfs/var/cache/ccache"
6130 mount_nullfs RET nmount 0
...
--
You are receiving this mail because:
You are the assignee for the bug.