#!/usr/sbin/dtrace -Fs

fbt::pci_config_get16:entry
{
    printf( "%s( handle = 0x%p, offset = 0x%p", probefunc, arg0, arg1 );
}

fbt::pci_config_get16:return
{
    printf( "%s returns 0x%p", probefunc, arg1 );
    @counts[ arg1 ] = count();
}

fbt::pepb_check_slot_disabled:entry
{
    printf( "%s( 0x%p )", probefunc, arg0 );
}

fbt::pepb_check_slot_disabled:return
{
    printf( "%s returns 0x%p", probefunc, arg1 );
}
