https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=237666
--- Comment #87 from Mike Karels <[email protected]> --- Yes, I loaded dtraceall. Derived from the command you sent, and copying/pasting the function name: pughole# dtrace -l | grep -i acpiexpci 30153 fbt kernel AcpiExPciBarSpaceHandler entry 30154 fbt kernel AcpiExPciBarSpaceHandler return 30155 fbt kernel AcpiExPciConfigSpaceHandler entry 30156 fbt kernel AcpiExPciConfigSpaceHandler return 30418 fbt kernel AcpiExPciClsToString entry 30419 fbt kernel AcpiExPciClsToString return pughole# ./dtrace.d AcpiExPciConfigSpaceHandler dtrace: failed to compile script ./dtrace.d: line 3: probe description fbt:AcpiExPciConfigSpaceHandler:filec:entry does not match any probes pughole# cat dtrace.d #!/usr/sbin/dtrace -s fbt:$1:filec:entry { @[probefunc, stack()] = count(); } pughole# -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-usb To unsubscribe, send any mail to "[email protected]"
