Home
last modified time | relevance | path

Searched refs:tos (Results 1 – 25 of 27) sorted by relevance

12

/titanic_41/usr/src/uts/common/sys/nxge/
H A Dnxge_flow.h41 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 Dnxge_fflp_hw.h155 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 Dkvm_cpu_p4.c126 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 Dxti_inet.h228 #define SET_TOS(prec, tos) ((0x7 & (prec)) << 5 | (0x1e & (tos))) argument
/titanic_41/usr/src/uts/sparc/v9/os/
H A Dv9dep.c909 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 Dnxge_fflp.c928 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 Dnetcat.c893 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 Din.rlogind.c190 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 Din.rshd.c189 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 Din.telnetd.c2201 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 Dtraceroute.h92 extern unsigned char tos; /* value of tos to set */
H A Dtraceroute_aux.c107 outip->ip_tos = tos; in set_buffers()
H A Dtraceroute.c181 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 Dsnoop_ospf.c336 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 Drdma_cm.h336 void rdma_set_service_type(struct rdma_cm_id *id, int tos);
/titanic_41/usr/src/uts/common/io/cxgbe/t4nex/
H A Doffload.h146 __u8 tos; member
/titanic_41/usr/src/uts/common/io/hxge/
H A Dhxge_flow.h106 uint8_t tos; member
/titanic_41/usr/src/cmd/cmd-inet/usr.bin/telnet/
H A Dcommands.c105 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 Dping.c160 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 Dnpi_fflp.c1947 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 Dxgehal-device.h228 u8 tos; member
/titanic_41/usr/src/cmd/fs.d/ufs/fsdb/
H A Dfsdb.c2455 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 Dipf_y.y269 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 D5710_hsi.h6962 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 Dtcp_input.c3208 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()

12