summaryrefslogtreecommitdiffstats
path: root/sys/kern/subr_autoconf.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2003-07-22 10:24:41 +0000
committerphk <phk@FreeBSD.org>2003-07-22 10:24:41 +0000
commitc4a9334fa698660a5dd1a0c4fddb61ed0893fc58 (patch)
tree822136a990d18001b2db563f705887b258e810ce /sys/kern/subr_autoconf.c
parentb5408a3e8f054d75ddbda2e0f17add2667916d6d (diff)
downloadFreeBSD-src-c4a9334fa698660a5dd1a0c4fddb61ed0893fc58.zip
FreeBSD-src-c4a9334fa698660a5dd1a0c4fddb61ed0893fc58.tar.gz
Don't attempt to inline large functions mb_alloc() and mb_free(),
it more than doubles the text size of this file. GCC has wisely ignored us on this previously
Diffstat (limited to 'sys/kern/subr_autoconf.c')
-rw-r--r--sys/kern/subr_autoconf.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/kern/subr_autoconf.c b/sys/kern/subr_autoconf.c
index 34c60bc..23c7dc4 100644
--- a/sys/kern/subr_autoconf.c
+++ b/sys/kern/subr_autoconf.c
@@ -73,6 +73,9 @@ run_interrupt_driven_config_hooks(dummy)
hook_entry != NULL;
hook_entry = next_entry) {
next_entry = TAILQ_NEXT(hook_entry, ich_links);
+ printf("IDCH: %p(%p)\n",
+ hook_entry->ich_func,
+ hook_entry->ich_arg);
(*hook_entry->ich_func)(hook_entry->ich_arg);
}
OpenPOWER on IntegriCloud