Lines Matching defs:hash_entry
800 struct eth_hash_entry *hash_entry;
814 hash_entry = kmalloc(sizeof(*hash_entry), GFP_ATOMIC);
815 if (!hash_entry)
817 hash_entry->addr = addr;
818 INIT_LIST_HEAD(&hash_entry->node);
820 list_add_tail(&hash_entry->node,
856 struct eth_hash_entry *hash_entry = NULL;
866 hash_entry = ETH_HASH_ENTRY_OBJ(pos);
867 if (hash_entry && hash_entry->addr == addr) {
868 list_del_init(&hash_entry->node);
869 kfree(hash_entry);