Lines Matching defs:location

88 nxge_tcam_dump_entry(p_nxge_t nxgep, uint32_t location)
98 status = npi_fflp_tcam_entry_read(handle, (tcam_location_t)location,
103 " tcam read failed at location %d ", location));
107 (tcam_location_t)location, &asc_ram);
109 NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL, "location %x\n"
112 " ASC RAM %llx \n", location,
125 int location;
130 location = *lptr;
132 if ((location >= nxgep->classifier.tcam_size) || (location < -1)) {
134 "nxge_tcam_dump: Invalid location %d \n", location));
137 if (location == -1) {
141 start_location = location;
142 stop_location = location + 1;
257 uint16_t location;
273 for (location = start; location < stop; location++) {
274 rs = npi_fflp_tcam_entry_invalidate(handle, location);
278 "TCAM invalidate failed at loc %d ", location));
307 uint32_t location;
342 for (location = 0; location < last_location; location += increment) {
344 location, fc.value[0]);
347 "failed write at location %x ", location));
871 * The real location determining algorithm would consider
1278 tcam_location_t location;
1290 location = (tcam_location_t)nxge_tcam_get_index(nxgep,
1291 (uint16_t)flow_res->location);
1491 " for location %d offset %d", location, offset));
1494 rs = npi_fflp_tcam_entry_write(handle, location, &tcam_ptr);
1499 " failed for location %d", location));
1511 location, tcam_ptr.match_action.value);
1515 " failed for ASC RAM location %d", location));
1519 (void *) &nxgep->classifier.tcam_entries[location].tce,
1522 nxgep->classifier.tcam_entries[location].valid = 1;
1537 tcam_location_t location;
1550 location = nxgep->function_num;
1551 nxgep->classifier.fragment_bug_location = location;
1561 location, &tcam_ptr);
1568 " failed for location %d", location));
1576 location, tcam_ptr.match_action.value);
1584 " failed for ASC RAM location %d", location));
1588 (void *) &nxgep->classifier.tcam_entries[location].tce,
1591 nxgep->classifier.tcam_entries[location].valid = 1;
2314 nxge_del_tcam_entry(nxgep, cfg_info->fs.location);
2446 index = nxge_tcam_get_index(nxgep, (uint16_t)fs->location);
2450 "Entry [%d] invalid for index [%d]", fs->location, index));
2518 nxge_del_tcam_entry(p_nxge_t nxgep, uint32_t location)
2527 index = nxge_tcam_get_index(nxgep, (uint16_t)location);
2531 "Entry [%d] invalid for index [%d]", location, index));
2576 "at loc %d ", location));