Change explicit use of the queue fields into use of the definitions

in queue.h.

Change the name of two variables for consistency.

Reviewed-By:	peter
This commit is contained in:
Nick Hibma 1999-09-26 18:48:53 +00:00
parent 18e2e348fb
commit 879eff8ee6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=51684

View File

@ -66,15 +66,16 @@ static void
run_interrupt_driven_config_hooks(dummy)
void *dummy;
{
struct intr_config_hook *hook, *next;
struct intr_config_hook *hook_entry, *next_entry;
for (hook = intr_config_hook_list.tqh_first; hook != NULL;
hook = next) {
next = hook->ich_links.tqe_next;
(*hook->ich_func)(hook->ich_arg);
for (hook_entry = TAILQ_FIRST(&intr_config_hook_list);
hook_entry != NULL;
hook_entry = next_entry) {
next_entry = TAILQ_NEXT(hook_entry, ich_links);
(*hook_entry->ich_func)(hook_entry->ich_arg);
}
while (intr_config_hook_list.tqh_first != NULL) {
while (!TAILQ_EMPTY(&intr_config_hook_list)) {
tsleep(&intr_config_hook_list, PCONFIG, "conifhk", 0);
}
}
@ -92,8 +93,9 @@ config_intrhook_establish(hook)
{
struct intr_config_hook *hook_entry;
for (hook_entry = intr_config_hook_list.tqh_first; hook_entry != NULL;
hook_entry = hook_entry->ich_links.tqe_next)
for (hook_entry = TAILQ_FIRST(&intr_config_hook_list);
hook_entry != NULL;
hook_entry = TAILQ_NEXT(hook_entry, ich_links))
if (hook_entry == hook)
break;
if (hook_entry != NULL) {
@ -114,8 +116,9 @@ config_intrhook_disestablish(hook)
{
struct intr_config_hook *hook_entry;
for (hook_entry = intr_config_hook_list.tqh_first; hook_entry != NULL;
hook_entry = hook_entry->ich_links.tqe_next)
for (hook_entry = TAILQ_FIRST(&intr_config_hook_list);
hook_entry != NULL;
hook_entry = TAILQ_NEXT(hook_entry, ich_links))
if (hook_entry == hook)
break;
if (hook_entry == NULL)