Home
last modified time | relevance | path

Searched refs:icp (Results 1 – 25 of 49) sorted by relevance

12

/freebsd-14-stable/sys/contrib/openzfs/lib/libicp/
HDMakefile.am7 module/icp/spi/kcf_spi.c \
8 module/icp/api/kcf_ctxops.c \
9 module/icp/api/kcf_cipher.c \
10 module/icp/api/kcf_mac.c \
11 module/icp/algs/aes/aes_impl_aesni.c \
12 module/icp/algs/aes/aes_impl_generic.c \
13 module/icp/algs/aes/aes_impl_x86-64.c \
14 module/icp/algs/aes/aes_impl.c \
15 module/icp/algs/aes/aes_modes.c \
16 module/icp/algs/blake3/blake3.c \
[all …]
/freebsd-14-stable/sys/netinet/
HDip_icmp.c215 struct icmp *icp; in icmp_error() local
348 icp = mtod(m, struct icmp *); in icmp_error()
350 icp->icmp_type = type; in icmp_error()
352 icp->icmp_gwaddr.s_addr = dest; in icmp_error()
354 icp->icmp_void = 0; in icmp_error()
360 icp->icmp_pptr = code; in icmp_error()
364 icp->icmp_nextmtu = htons(mtu); in icmp_error()
367 icp->icmp_code = code; in icmp_error()
373 m_copydata(n, 0, icmplen, (caddr_t)&icp->icmp_ip); in icmp_error()
374 nip = &icp->icmp_ip; in icmp_error()
[all …]
/freebsd-14-stable/sys/dev/cxgbe/cxgbei/
HDcxgbei.c200 struct icl_cxgbei_pdu *icp; in do_rx_iscsi_hdr() local
212 icp = ip_to_icp(ip); in do_rx_iscsi_hdr()
213 icp->icp_seq = ntohl(cpl->seq); in do_rx_iscsi_hdr()
214 icp->icp_flags = ICPF_RX_HDR; in do_rx_iscsi_hdr()
218 toep->ulpcb2 = icp; in do_rx_iscsi_hdr()
222 __func__, tid, len, len_ddp, icp); in do_rx_iscsi_hdr()
236 struct icl_cxgbei_pdu *icp = toep->ulpcb2; in do_rx_iscsi_data() local
242 if (icp == NULL) { in do_rx_iscsi_data()
250 icp = ip_to_icp(ip); in do_rx_iscsi_data()
253 MPASS(icp->icp_flags == ICPF_RX_HDR); in do_rx_iscsi_data()
[all …]
HDicl_cxgbei.c175 struct icl_cxgbei_pdu *icp = ip_to_icp(ip); in icl_cxgbei_conn_pdu_free() local
177 KASSERT(icp->ref_cnt != 0, ("freeing deleted PDU")); in icl_cxgbei_conn_pdu_free()
178 MPASS(icp->icp_signature == CXGBEI_PDU_SIGNATURE); in icl_cxgbei_conn_pdu_free()
185 KASSERT(ic != NULL || icp->ref_cnt == 1, in icl_cxgbei_conn_pdu_free()
188 if (atomic_fetchadd_int(&icp->ref_cnt, -1) != 1) in icl_cxgbei_conn_pdu_free()
191 free(icp, M_CXGBEI); in icl_cxgbei_conn_pdu_free()
201 struct icl_cxgbei_pdu *icp = ip_to_icp(ip); in icl_cxgbei_pdu_call_cb() local
203 MPASS(icp->icp_signature == CXGBEI_PDU_SIGNATURE); in icl_cxgbei_pdu_call_cb()
205 if (icp->cb != NULL) in icl_cxgbei_pdu_call_cb()
206 icp->cb(ip, icp->error); in icl_cxgbei_pdu_call_cb()
[all …]
/freebsd-14-stable/sys/contrib/openzfs/
HDCOPYRIGHT18 * Skein Checksum Implementation: module/icp/algs/skein/THIRDPARTYLICENSE
19 * AES Implementation: module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.gladman
20 * AES Implementation: module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.openssl
23 * GCM Implementation: module/icp/asm-x86_64/modes/THIRDPARTYLICENSE.cryptogams
24 * GCM Implementation: module/icp/asm-x86_64/modes/THIRDPARTYLICENSE.openssl
25 * GHASH Implementation: module/icp/asm-x86_64/modes/THIRDPARTYLICENSE.cryptogams
26 * GHASH Implementation: module/icp/asm-x86_64/modes/THIRDPARTYLICENSE.openssl
HDMakefile.am46 dist_noinst_DATA += module/icp/algs/skein/THIRDPARTYLICENSE
47 dist_noinst_DATA += module/icp/algs/skein/THIRDPARTYLICENSE.descrip
48 dist_noinst_DATA += module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.gladman
49 dist_noinst_DATA += module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.gladman.descrip
50 dist_noinst_DATA += module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.openssl
51 dist_noinst_DATA += module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.openssl.descrip
52 dist_noinst_DATA += module/icp/asm-x86_64/modes/THIRDPARTYLICENSE.cryptogams
53 dist_noinst_DATA += module/icp/asm-x86_64/modes/THIRDPARTYLICENSE.cryptogams.descrip
54 dist_noinst_DATA += module/icp/asm-x86_64/modes/THIRDPARTYLICENSE.openssl
55 dist_noinst_DATA += module/icp/asm-x86_64/modes/THIRDPARTYLICENSE.openssl.descrip
/freebsd-14-stable/sbin/ipf/ipsend/
HDiptests.c550 struct icmp *icp; in ip_test3() local
560 ip->ip_len = sizeof(*ip) + sizeof(*icp); in ip_test3()
561 icp = (struct icmp *)((char *)ip + (IP_HL(ip) << 2)); in ip_test3()
571 bzero((char *)icp, sizeof(*icp)); in ip_test3()
573 icp->icmp_type = i; in ip_test3()
578 icp->icmp_type = 255; in ip_test3()
589 icp->icmp_type = 3; in ip_test3()
591 icp->icmp_code = i; in ip_test3()
602 icp->icmp_type = 4; in ip_test3()
603 icp->icmp_code = 0; in ip_test3()
[all …]
/freebsd-14-stable/sbin/ping/
HDping.c1020 struct icmp icp; in pinger() local
1025 memcpy(&icp, outpack, ICMP_MINLEN + phdr_len); in pinger()
1026 icp.icmp_type = icmp_type; in pinger()
1027 icp.icmp_code = 0; in pinger()
1028 icp.icmp_cksum = 0; in pinger()
1029 icp.icmp_seq = htons(ntransmitted); in pinger()
1030 icp.icmp_id = ident; /* ID */ in pinger()
1045 icp.icmp_otime = htonl((now.tv_sec % (24*60*60)) in pinger()
1053 memcpy(outpack, &icp, ICMP_MINLEN + phdr_len); in pinger()
1058 icp.icmp_cksum = in_cksum(outpack, cc); in pinger()
[all …]
HDping6.c1306 struct icmp6_hdr *icp; in pinger() local
1315 icp = (struct icmp6_hdr *)outpack; in pinger()
1317 memset(icp, 0, sizeof(*icp)); in pinger()
1318 icp->icmp6_cksum = 0; in pinger()
1325 icp->icmp6_type = ICMP6_NI_QUERY; in pinger()
1326 icp->icmp6_code = ICMP6_NI_SUBJ_IPV6; in pinger()
1342 icp->icmp6_type = ICMP6_NI_QUERY; in pinger()
1343 icp->icmp6_code = 0; /* code field is always 0 */ in pinger()
1357 icp->icmp6_type = ICMP6_NI_QUERY; in pinger()
1358 icp->icmp6_code = ICMP6_NI_SUBJ_IPV6; in pinger()
[all …]
/freebsd-14-stable/contrib/libpcap/
HDgencode.h386 #define isMarked(icp, p) ((p)->mark == (icp)->cur_mark) argument
387 #define unMarkAll(icp) (icp)->cur_mark += 1 argument
388 #define Mark(icp, p) ((p)->mark = (icp)->cur_mark) argument
/freebsd-14-stable/stand/libsa/zfs/
HDMakefile.inc9 .PATH: ${OZFS}/module/icp/asm-aarch64/blake3
10 .PATH: ${OZFS}/module/icp/algs/blake3
80 CFLAGS.blake3_impl.c+= -I${OZFS}/module/icp/algs/blake3 -I${OZFS}/module/icp/include
/freebsd-14-stable/sys/modules/zfs/
HDMakefile10 ${SRCDIR}/icp/algs/blake3 \
11 ${SRCDIR}/icp/algs/edonr \
12 ${SRCDIR}/icp/algs/sha2 \
13 ${SRCDIR}/icp/asm-aarch64/blake3 \
14 ${SRCDIR}/icp/asm-aarch64/sha2 \
15 ${SRCDIR}/icp/asm-arm/sha2 \
16 ${SRCDIR}/icp/asm-ppc64/sha2 \
17 ${SRCDIR}/icp/asm-ppc64/blake3 \
18 ${SRCDIR}/icp/asm-x86_64/blake3 \
19 ${SRCDIR}/icp/asm-x86_64/sha2 \
[all …]
/freebsd-14-stable/sys/contrib/openzfs/module/
HDKbuild.in11 icp_include = @abs_srcdir@/icp/include
19 icp_include = $(src)/icp/include
168 zfs-objs += $(addprefix icp/,$(ICP_OBJS))
169 zfs-$(CONFIG_X86) += $(addprefix icp/,$(ICP_OBJS_X86))
170 zfs-$(CONFIG_UML_X86)+= $(addprefix icp/,$(ICP_OBJS_X86))
171 zfs-$(CONFIG_X86_64) += $(addprefix icp/,$(ICP_OBJS_X86_64))
172 zfs-$(CONFIG_ARM) += $(addprefix icp/,$(ICP_OBJS_ARM))
173 zfs-$(CONFIG_ARM64) += $(addprefix icp/,$(ICP_OBJS_ARM64))
174 zfs-$(CONFIG_PPC) += $(addprefix icp/,$(ICP_OBJS_PPC_PPC64))
175 zfs-$(CONFIG_PPC64) += $(addprefix icp/,$(ICP_OBJS_PPC_PPC64))
[all …]
HDMakefile.bsd15 ${SRCDIR}/icp/algs/blake3 \
16 ${SRCDIR}/icp/algs/edonr \
17 ${SRCDIR}/icp/algs/sha2 \
18 ${SRCDIR}/icp/asm-aarch64/blake3 \
19 ${SRCDIR}/icp/asm-aarch64/sha2 \
20 ${SRCDIR}/icp/asm-arm/sha2 \
21 ${SRCDIR}/icp/asm-ppc64/sha2 \
22 ${SRCDIR}/icp/asm-ppc64/blake3 \
23 ${SRCDIR}/icp/asm-x86_64/blake3 \
24 ${SRCDIR}/icp/asm-x86_64/sha2 \
[all …]
HDMakefile.in83 …$(RM) -r $(addprefix $(KMODDIR)/$(INSTALL_MOD_DIR)/,spl/ avl/ icp/ lua/ nvpair/ unicode/ zcommon/ …
156 avl icp lua nvpair unicode zcommon zfs zstd os/linux
/freebsd-14-stable/usr.sbin/rtsold/
HDrtsol.c170 struct icmp6_hdr *icp; in rtsol_input() local
233 icp = (struct icmp6_hdr *)iov.iov_base; in rtsol_input()
234 if (icp->icmp6_type != ND_ROUTER_ADVERT) { in rtsol_input()
240 "invalid icmp type(%d) from %s on %s", icp->icmp6_type, in rtsol_input()
247 if (icp->icmp6_code != 0) { in rtsol_input()
249 "invalid icmp code(%d) from %s on %s", icp->icmp6_code, in rtsol_input()
291 nd_ra = (struct nd_router_advert *)icp; in rtsol_input()
358 raoptp = (char *)icp + sizeof(struct nd_router_advert); in rtsol_input()
359 while (raoptp < (char *)icp + msglen) { in rtsol_input()
371 if ((char *)RA_OPT_NEXT_HDR(raoptp) > (char *)icp + msglen) { in rtsol_input()
/freebsd-14-stable/usr.sbin/traceroute6/
HDtraceroute6.c1118 struct icmp6_hdr *icp; in send_probe() local
1137 icp = (struct icmp6_hdr *)outpacket; in send_probe()
1139 icp->icmp6_type = ICMP6_ECHO_REQUEST; in send_probe()
1140 icp->icmp6_code = 0; in send_probe()
1141 icp->icmp6_cksum = 0; in send_probe()
1142 icp->icmp6_id = ident; in send_probe()
1143 icp->icmp6_seq = htons(seq); in send_probe()
1338 struct icmp6_hdr *icp; in packet_ok() local
1364 icp = (struct icmp6_hdr *)(buf + hlen); in packet_ok()
1375 icp = (struct icmp6_hdr *)buf; in packet_ok()
[all …]
/freebsd-14-stable/sys/contrib/openzfs/scripts/
HDzfs2zol-patch.sed25 s:usr/src/common/crypto:module/icp/algs:g
26 s:usr/src/uts/common/crypto/io:module/icp/io:g
/freebsd-14-stable/usr.sbin/rtadvd/
HDrtadvd.c719 struct icmp6_hdr *icp; in rtadvd_input() local
788 icp = (struct icmp6_hdr *)(ip + 1); /* XXX: ext. hdr? */ in rtadvd_input()
795 icp = (struct icmp6_hdr *)rcvmhdr.msg_iov[0].iov_base; in rtadvd_input()
798 switch (icp->icmp6_type) { in rtadvd_input()
815 if (icp->icmp6_code) { in rtadvd_input()
819 icp->icmp6_code, in rtadvd_input()
834 rs_input(i, (struct nd_router_solicit *)icp, pi, &rcvfrom); in rtadvd_input()
860 if (icp->icmp6_code) { in rtadvd_input()
864 icp->icmp6_code, in rtadvd_input()
879 ra_input(i, (struct nd_router_advert *)icp, pi, &rcvfrom); in rtadvd_input()
[all …]
/freebsd-14-stable/contrib/traceroute/
HDtraceroute.c1429 register struct icmp *icp; in packet_ok() local
1444 icp = (struct icmp *)(buf + hlen); in packet_ok()
1446 icp = (struct icmp *)buf; in packet_ok()
1448 type = icp->icmp_type; in packet_ok()
1449 code = icp->icmp_code; in packet_ok()
1455 pmtu = ntohs(icp->icmp_nextmtu); in packet_ok()
1457 pmtu = ntohs(((struct my_pmtu *)&icp->icmp_void)->ipm_nextmtu); in packet_ok()
1462 && (*proto->check)((u_char *)icp, (u_char)seq)) in packet_ok()
1468 hip = &icp->icmp_ip; in packet_ok()
1469 hiplen = ((u_char *)icp + cc) - (u_char *)hip; in packet_ok()
[all …]
/freebsd-14-stable/sys/contrib/device-tree/Bindings/mmc/
HDsdhci-am654.txt37 - ti,trm-icp: DLL trim select
60 ti,trm-icp = <0x8>;
/freebsd-14-stable/sbin/zfsbootcfg/
HDMakefile15 CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/module/icp/include
/freebsd-14-stable/lib/libprocstat/zfs/
HDMakefile22 CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/module/icp/include
/freebsd-14-stable/sbin/bectl/
HDMakefile23 CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/module/icp/include
/freebsd-14-stable/sys/conf/
HDfiles.powerpc14 contrib/openzfs/module/icp/asm-ppc64/blake3/b3_ppc64le_sse2.S optional zfs compile-with "${ZFS_S}"
15 contrib/openzfs/module/icp/asm-ppc64/blake3/b3_ppc64le_sse41.S optional zfs compile-with "${ZFS_S}"
18 contrib/openzfs/module/icp/asm-ppc64/sha2/sha256-p8.S optional zfs compile-with "${ZFS_S}"
19 contrib/openzfs/module/icp/asm-ppc64/sha2/sha512-p8.S optional zfs compile-with "${ZFS_S}"
21 dependency "$S/contrib/openzfs/module/icp/asm-ppc64/sha2/sha256-ppc.S" \
22 …compile-with "${CC} -c ${ZFS_ASM_CFLAGS} -o ${.TARGET} ${WERROR} $S/contrib/openzfs/module/icp/asm…
27 dependency "$S/contrib/openzfs/module/icp/asm-ppc64/sha2/sha512-ppc.S" \
28 …compile-with "${CC} -c ${ZFS_ASM_CFLAGS} -o ${.TARGET} ${WERROR} $S/contrib/openzfs/module/icp/asm…

12