[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
- Reply: bugzilla-noreply_a_freebsd.org: "[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"
- Reply: bugzilla-noreply_a_freebsd.org: "[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"
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 29 Aug 2022 12:31:18 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=266098 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 (the classic bitesize.d ported to FreeBSD): dtrace:::BEGIN { printf("Tracing... Hit Ctrl-C to end.\n"); } io:::start { @size[pid, execname] = 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? -- You are receiving this mail because: You are the assignee for the bug.