Lines Matching full:clip
52 * Code to deal with the Compressed Local IPv6 (CLIP) table in the ASIC.
54 * The driver maintains a global CLIP database (clip_db) of IPv6 addresses and a
55 * per-adapter CLIP table (sc->clip_table) with entries that point to an IPv6 in
57 * The correct lock order is clip lock before synchronized op.
63 * have that address in their CLIP table. If both are 0 then the entry is
64 * evicted from the db. Consumers of the CLIP table entry (filters, TOE tids)
66 * addresses from the CLIP table.
74 u_int adp_ref; /* # of adapters with this IP6 in their CLIP */
110 "CLIP database");
115 "Add local IPs to CLIP db automatically (0 = no, 1 = yes)");
153 * Look up the IP6 address in the CLIP db. If add is set then an entry for the
180 * Look up the IP6 address in the CLIP db. If add is set then an entry for the
391 * Don't bother forcing an update of the clip table when the in t4_init_clip_table()
399 * Returns true if any additions or deletions were made to the CLIP DB.
464 * Update the CLIP db and then update the CLIP tables on all the adapters.
474 * Refresh the sw CLIP table for this adapter from the global CLIP db. Entries
475 * that need to be added or deleted from the hardware CLIP table are placed on a
497 * Walk the sw CLIP table first. We want to reset every entry's pending in update_sw_clip_table()
506 * Entry should stay in the CLIP. in update_sw_clip_table()
521 * Entry should be removed from the CLIP. in update_sw_clip_table()
589 * Entry was queued for addition to the HW CLIP. in update_hw_clip_table()
593 /* No need to add to HW CLIP. */ in update_hw_clip_table()
602 /* Add to the HW CLIP. */ in update_hw_clip_table()
605 /* CLIP full, no point in retrying. */ in update_hw_clip_table()
622 * Entry was queued for deletion from the HW CLIP. in update_hw_clip_table()
627 * Delete from the HW CLIP. Delete should never in update_hw_clip_table()
630 * CLIP then we carry on as if it was deleted. in update_hw_clip_table()
649 /* No need to delete from HW CLIP. */ in update_hw_clip_table()
681 * Update the CLIP table of the specified adapter.
697 goto done; /* CLIP was never initialized. */ in t4_destroy_clip_table()