Lines Matching refs:hash_entry
797 struct eth_hash_entry *hash_entry;
811 hash_entry = kmalloc(sizeof(*hash_entry), GFP_ATOMIC);
812 if (!hash_entry)
814 hash_entry->addr = addr;
815 INIT_LIST_HEAD(&hash_entry->node);
817 list_add_tail(&hash_entry->node,
853 struct eth_hash_entry *hash_entry = NULL;
863 hash_entry = ETH_HASH_ENTRY_OBJ(pos);
864 if (hash_entry && hash_entry->addr == addr) {
865 list_del_init(&hash_entry->node);
866 kfree(hash_entry);