[Bug 274274] nmount logs to_path twice via ktrace()

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

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.