Lines Matching refs:old
283 struct efx_tc_ct_entry *conn, *old;
298 old = rhashtable_lookup_get_insert_fast(&efx->tc->ct_ht,
301 if (IS_ERR(old)) {
302 rc = PTR_ERR(old);
304 } else if (old) {
361 if (!old)
475 struct efx_tc_ct_zone *ct_zone, *old;
482 old = rhashtable_lookup_get_insert_fast(&efx->tc->ct_zone_ht,
485 if (old) {
488 if (IS_ERR(old)) /* oh dear, it's actually an error */
489 return ERR_CAST(old);
490 if (!refcount_inc_not_zero(&old->ref))
493 WARN_ON_ONCE(old->nf_ft != ct_ft);
496 return old;