/titanic_41/usr/src/uts/common/sys/nxge/ |
H A D | nxge_flow.h | 41 uint8_t tos; member 49 uint8_t tos; member 57 uint8_t tos; member 65 uint8_t tos; member 72 uint8_t tos; member 79 uint8_t tos; member 112 uint8_t tos; member 121 uint8_t tos; member
|
H A D | nxge_fflp_hw.h | 155 uint32_t tos:8; member 157 uint32_t tos:8; 1156 uint32_t tos : 8; /* 111 : 104 */ member 1166 uint32_t tos : 8; /* 111 : 104 */ 1222 uint32_t tos : 8; /* 175 : 168 */ member 1230 uint32_t tos : 8; /* 175 : 168 */ 1277 #define ip4_tos_key key.ipv4_e.tos 1286 #define ip4_tos_mask mask.ipv4_e.tos 1295 #define ip6_tos_key key.ipv6_e.tos 1304 #define ip6_tos_mask mask.ipv6_e.tos
|
/titanic_41/usr/src/cmd/mdb/intel/kmdb/ |
H A D | kvm_cpu_p4.c | 126 kmt_p4_branches_unified(const kmt_p4_flavor_t *p4f, uint_t tos, intptr_t cpuid, in kmt_p4_branches_unified() argument 132 for (cur = tos, i = 0; i < p4f->p4f_lbrstk_num; in kmt_p4_branches_unified() 145 kmt_p4_branches_split(const kmt_p4_flavor_t *p4f, uint_t tos, intptr_t cpuid, in kmt_p4_branches_split() argument 151 for (cur = tos, i = 0; i < p4f->p4f_lbrstk_num; in kmt_p4_branches_split() 320 uint_t tos; in kmt_p4_branches() local 337 tos = (uintptr_t)kmdb_dpi_msr_get_by_cpu(cpuid, p4f->p4f_msr_tos); in kmt_p4_branches() 338 tos &= p4f->p4f_lbrstk_num - 1; in kmt_p4_branches() 342 return (p4f->p4f_branches(p4f, tos, cpuid, verbose)); in kmt_p4_branches()
|
/titanic_41/usr/src/uts/common/sys/ |
H A D | xti_inet.h | 228 #define SET_TOS(prec, tos) ((0x7 & (prec)) << 5 | (0x1e & (tos))) argument
|
/titanic_41/usr/src/uts/sparc/v9/os/ |
H A D | v9dep.c | 909 caddr_t tos; in sendsig() local 973 tos = (caddr_t)rp->r_sp + STACK_BIAS; in sendsig() 979 tos = (caddr_t)((uintptr_t)tos & ~(STACK_ALIGN - 1ul)); in sendsig() 996 fp = (struct sigframe *)(tos - SA(minstacksz)); in sendsig() 1134 watched2 = watch_disable_addr(tos, sizeof (struct rwindow), in sendsig() 1136 ucopy(tos, &fp->frwin, sizeof (struct rwindow)); in sendsig() 1154 watch_enable_addr(tos, sizeof (struct rwindow), S_READ); in sendsig() 1180 watch_enable_addr(tos, sizeof (struct rwindow), S_READ); in sendsig() 1240 caddr_t tos; in sendsig32() local 1302 tos = (void *)(uintptr_t)(uint32_t)rp->r_sp; in sendsig32() [all …]
|
/titanic_41/usr/src/uts/common/io/nxge/ |
H A D | nxge_fflp.c | 928 tcam_ptr->ip4_tos_key = fspec_key->tos; in nxge_fill_tcam_entry_udp() 929 tcam_ptr->ip4_tos_mask = fspec_mask->tos; in nxge_fill_tcam_entry_udp() 960 tcam_ptr->ip6_tos_key = fspec_key->tos; in nxge_fill_tcam_entry_udp_ipv6() 961 tcam_ptr->ip6_tos_mask = fspec_mask->tos; in nxge_fill_tcam_entry_udp_ipv6() 987 tcam_ptr->ip4_tos_key = fspec_key->tos; in nxge_fill_tcam_entry_tcp() 988 tcam_ptr->ip4_tos_mask = fspec_mask->tos; in nxge_fill_tcam_entry_tcp() 1014 tcam_ptr->ip4_tos_key = fspec_key->tos; in nxge_fill_tcam_entry_sctp() 1015 tcam_ptr->ip4_tos_mask = fspec_mask->tos; in nxge_fill_tcam_entry_sctp() 1047 tcam_ptr->ip6_tos_key = fspec_key->tos; in nxge_fill_tcam_entry_tcp_ipv6() 1048 tcam_ptr->ip6_tos_mask = fspec_mask->tos; in nxge_fill_tcam_entry_tcp_ipv6() [all …]
|
/titanic_41/usr/src/cmd/cmd-inet/usr.bin/nc/ |
H A D | netcat.c | 893 int tos = -1; in parse_iptos() local 902 if (sscanf(s, "0x%x", (unsigned int *) &tos) != 1 || in parse_iptos() 903 tos < 0 || tos > 0xff) in parse_iptos() 905 return (tos); in parse_iptos()
|
/titanic_41/usr/src/cmd/cmd-inet/usr.sbin/ |
H A D | in.rlogind.c | 190 int tos = -1; in main() local 229 if (optarg == NULL || (tos = atoi(optarg)) < 0 || in main() 230 tos > 255) { in main() 234 if (tos < 0) in main() 235 tos = DEFAULT_TOS; in main() 335 if (tos != -1 && in main() 337 setsockopt(fd, IPPROTO_IP, IP_TOS, (char *)&tos, in main() 338 sizeof (tos)) < 0 && in main() 340 syslog(LOG_ERR, "setsockopt(IP_TOS %d): %m", tos); in main()
|
H A D | in.rshd.c | 189 int tos = -1; in main() local 249 if (optarg == NULL || ((tos = atoi(optarg)) < 0) || in main() 250 (tos > 255)) { in main() 369 if ((tos != -1) && (setsockopt(fd, IPPROTO_IP, IP_TOS, (char *)&tos, in main() 370 sizeof (tos)) < 0) && in main()
|
H A D | in.telnetd.c | 2201 int tos = -1; in main() local 2267 if (optarg == NULL || (tos = atoi(optarg)) < 0 || in main() 2268 tos > 255) { in main() 2272 if (tos < 0) in main() 2273 tos = 020; in main() 2386 if (tos != -1 && in main() 2388 (char *)&tos, sizeof (tos)) < 0 && in main() 2390 syslog(LOG_ERR, "setsockopt (IP_TOS %d): %m", tos); in main()
|
/titanic_41/usr/src/cmd/cmd-inet/usr.sbin/traceroute/ |
H A D | traceroute.h | 92 extern unsigned char tos; /* value of tos to set */
|
H A D | traceroute_aux.c | 107 outip->ip_tos = tos; in set_buffers()
|
H A D | traceroute.c | 181 uchar_t tos = 0; /* IPv4 type-of-service */ variable 450 tos = (uchar_t)str2int(optarg, "tos", 0, MAX_TOS); in main() 1358 int_op = tos; in setup_socket()
|
/titanic_41/usr/src/cmd/cmd-inet/usr.sbin/snoop/ |
H A D | snoop_ospf.c | 336 int tos, metric; in interpret_ospf_lsa() local 481 tos = (tm & SLA_MASK_TOS) >> SLA_SHIFT_TOS; in interpret_ospf_lsa() 485 " tos %d metric %d", tos, metric); in interpret_ospf_lsa() 502 tos = (tm & ASLA_MASK_TOS) >> ASLA_SHIFT_TOS; in interpret_ospf_lsa() 508 tos, metric); in interpret_ospf_lsa()
|
/titanic_41/usr/src/uts/common/sys/ib/clients/of/rdma/ |
H A D | rdma_cm.h | 336 void rdma_set_service_type(struct rdma_cm_id *id, int tos);
|
/titanic_41/usr/src/uts/common/io/cxgbe/t4nex/ |
H A D | offload.h | 146 __u8 tos; member
|
/titanic_41/usr/src/uts/common/io/hxge/ |
H A D | hxge_flow.h | 106 uint8_t tos; member
|
/titanic_41/usr/src/cmd/cmd-inet/usr.bin/telnet/ |
H A D | commands.c | 105 int tos = -1; variable 3258 if (tos < 0) 3259 tos = 020; /* Low Delay bit */ 3260 if (tos && 3262 &tos, sizeof (int)) < 0) &&
|
/titanic_41/usr/src/cmd/cmd-inet/usr.sbin/ping/ |
H A D | ping.c | 160 static ushort_t tos; /* type-of-service value */ variable 373 tos = (ushort_t)i; in main() 1559 int_op = tos; in setup_socket()
|
/titanic_41/usr/src/uts/common/io/nxge/npi/ |
H A D | npi_fflp.c | 1947 uint8_t tos, uint8_t tos_mask, in npi_fflp_cfg_ip_usr_cls_set() argument 1966 ip_cls_cfg.bits.ldw.tos = tos; in npi_fflp_cfg_ip_usr_cls_set()
|
/titanic_41/usr/src/uts/common/io/xge/hal/include/ |
H A D | xgehal-device.h | 228 u8 tos; member
|
/titanic_41/usr/src/cmd/fs.d/ufs/fsdb/ |
H A D | fsdb.c | 2455 struct filenames *tos, *bos, *fn, *fnn, *fnnn; in follow_path() local 2459 tos = top + 1; in follow_path() 2601 for (fn = tos; fn <= bos; fn++) { in follow_path() 2647 if (fn == tos) in follow_path()
|
/titanic_41/usr/src/cmd/ipf/tools/ |
H A D | ipf_y.y | 269 tos ttl proto ip 432 tos: | settos YY_NUMBER { DOALL(fr->fr_tos = $2; fr->fr_mtos = 0xff;) }
|
/titanic_41/usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/fw/ |
H A D | 5710_hsi.h | 6962 u8_t tos /* Type Of Service, used in PBF Header Builder Command */; member 6966 u8_t tos /* Type Of Service, used in PBF Header Builder Command */; member 9840 u8_t tos; member
|
/titanic_41/usr/src/uts/common/inet/tcp/ |
H A D | tcp_input.c | 3208 uchar_t tos = ((ipha_t *)rptr)->ipha_type_of_service; in tcp_input_data() local 3210 if ((tos & IPH_ECN_CE) == IPH_ECN_CE) { in tcp_input_data()
|