Lines Matching defs:dscp
53 uint8_t dscp, new_dscp;
99 dscp = ipha->ipha_type_of_service;
103 dscp = __IPV6_TCLASS_FROM_FLOW(ip6_hdr->ip6_vcf);
108 * Select the new dscp from the dscp_map after ignoring the
109 * ECN/CU from dscp (hence dscp >> 2). new_dscp will be the
112 new_dscp = dscpmk_data->dscp_map[dscp >> 2];
121 if (new_dscp == (dscp >> 2)) {
126 /* Get back the ECN/CU value from the original dscp */
127 new_dscp = (new_dscp << 2) | (dscp & 0x3);