Lines Matching defs:hash
350 /* Expire all entries in a hash chain */
362 /* Cleanup all hash chains -- module unloading */
413 int hash = sa->s_node % (AARP_HASH_SIZE - 1);
418 a = __aarp_find_entry(proxies[hash], dev, sa);
429 int hash = sa->s_node % (AARP_HASH_SIZE - 1);
430 struct aarp_entry *a = __aarp_find_entry(proxies[hash], dev, sa);
483 int hash, retval = -EPROTONOSUPPORT;
512 hash = sa->s_node % (AARP_HASH_SIZE - 1);
513 entry->next = proxies[hash];
514 proxies[hash] = entry;
547 int hash;
603 hash = sa->s_node % (AARP_HASH_SIZE - 1);
613 a = __aarp_find_entry(resolved[hash], dev, sa);
623 a = __aarp_find_entry(unresolved[hash], dev, sa);
641 a->next = unresolved[hash];
644 unresolved[hash] = a;
686 int hash)
696 a->next = resolved[hash];
697 resolved[hash] = a;
717 int hash, ret = 0;
743 hash = ea->pa_src_node % (AARP_HASH_SIZE - 1);
766 a = __aarp_find_entry(proxies[hash], dev, &da);
783 a = __aarp_find_entry(unresolved[hash], dev, &sa);
789 __aarp_resolved(&unresolved[hash], a, hash);