Searched refs:cte (Results 1 – 1 of 1) sorted by relevance
/drivers/net/ethernet/chelsio/cxgb4/ |
D | clip_tbl.c | 78 struct clip_entry *ce, *cte; in cxgb4_clip_get() local 89 list_for_each_entry(cte, &ctbl->hash_list[hash], list) { in cxgb4_clip_get() 90 if (cte->addr6.sin6_family == AF_INET6 && v6) in cxgb4_clip_get() 91 ret = memcmp(lip, cte->addr6.sin6_addr.s6_addr, in cxgb4_clip_get() 93 else if (cte->addr.sin_family == AF_INET && !v6) in cxgb4_clip_get() 94 ret = memcmp(lip, (char *)(&cte->addr.sin_addr), in cxgb4_clip_get() 97 ce = cte; in cxgb4_clip_get() 152 struct clip_entry *ce, *cte; in cxgb4_clip_release() local 163 list_for_each_entry(cte, &ctbl->hash_list[hash], list) { in cxgb4_clip_release() 164 if (cte->addr6.sin6_family == AF_INET6 && v6) in cxgb4_clip_release() [all …]
|