Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 29 Aug 2022 12:31:18 +0000
From:      bugzilla-noreply@freebsd.org
To:        bugs@FreeBSD.org
Subject:   [Bug 266098] dtrace: error on enabled probe ID 2 (ID 79710: io:kernel:none:start): invalid address (0x20) in action #4 at DIF offset 16
Message-ID:  <bug-266098-227@https.bugs.freebsd.org/bugzilla/>

next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D266098

            Bug ID: 266098
           Summary: dtrace: error on enabled probe ID 2 (ID 79710:
                    io:kernel:none:start): invalid address (0x20) in
                    action #4 at DIF offset 16
           Product: Base System
           Version: 13.1-RELEASE
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Only Me
          Priority: ---
         Component: kern
          Assignee: bugs@FreeBSD.org
          Reporter: 0mp@FreeBSD.org

I'm executing the following DTrace program on FreeBSD 13.1-RELEASE amd64 (t=
he
classic bitesize.d ported to FreeBSD):

    dtrace:::BEGIN {
            printf("Tracing... Hit Ctrl-C to end.\n");
    }

    io:::start {
            @size[pid, execname] =3D quantize(args[0]->bio_bcount);
    }

    dtrace:::END {
            printf("\n%8s  %s\n", "PID", "CMD");
            printa("%8d  %s\n%@d\n", @size);
    }

and I'm getting a lot of the following log messages shorty after the script=
 is
started:

    dtrace: error on enabled probe ID 2 (ID 79710: io:kernel:none:start):
invalid address (0x20) in action #4 at DIF offset 16

I tested that on multiple amd64 machines on 13.1-RELEASE. The result is the
same. What could be causing that?

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-266098-227>