Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 28 Mar 2018 09:05:03 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-usb@FreeBSD.org
Subject:   [Bug 226968] IRQ storm on cpu0 timer when holding down key on USB keyboard
Message-ID:  <bug-226968-17-V35gbNN4NF@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-226968-17@https.bugs.freebsd.org/bugzilla/>
References:  <bug-226968-17@https.bugs.freebsd.org/bugzilla/>

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

--- Comment #9 from Hans Petter Selasky <hselasky@FreeBSD.org> ---
When you make a hook for a function "$1", then you can print arg0, arg1, ar=
g2
and so on. We're interested in arg1 I guess.

int     callout_reset_sbt_on(struct callout *, sbintime_t, sbintime_t,
            void (*)(void *), void *, int, int);

Try this:

#!/usr/sbin/dtrace -s

fbt::$1:entry
{
        printf("callout_reset_sbt_on(%d,%d)\n", arg0, arg1);
        @[probefunc, stack()] =3D count();
}

--=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-226968-17-V35gbNN4NF>